The Cramer's Rule Calculator for Two Equations solves a two formula system of simultaneous linear equations in two variables using Cramer's Rule. The two equations solved for here are of the form:
INSTRUCTIONS: Enter the following:
The calculator returns the values for x and y (e.g. [1,-1] respectively).
Given a system of simultaneous equations:
a1 • x + b1 • y = c1
a2 • x + b2 • y = c2
We can represent these two equation in matrix form using a coefficient matrix, as [a1b1a2b2][xy]=[c1c2], where we refer to [a1b1a2b2] as the coefficient matrix.
Using Cramer's rule we compute the determinants of the coefficient matrix: D=|a1b1a2b2|=a1⋅b2-b1⋅a2
We also form the Dx and Dy determinants as:
Dx=|c1b1c2b2| and
Dy=|a1c1a2c2|
Continuing with Cramer's Rule, we compute the values of x and y as:
x=DxD
y=DyD
Cramer's Rule (two equations, solved for x)