The Cramer's Rule Calculator computes the solution and determinants for two simultaneous linear equations and three simultaneous linear equations.
The Two Equation Solution uses the following form:
The solution utilizes the determinant of the 2x2 matrix.
The Three Equations Solution uses the following form:
The solution utilizes the determinant of the 3x3 matrix.
Given a system of two 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
Given a system of three simultaneous equations:
a1⋅x+b1⋅y+c1⋅z=d1
a2⋅x+b2⋅y+c2⋅z=d2
a3⋅x+b3⋅y+c3⋅z=d3
we can represent these three equation in matrix form using a coefficient matrix, as [a1b1c1a2b2c2a3b3c3][xyz]=[d1d2d3], where we refer to [a1b1c1a2b2c2a3b3c3] as the coefficient matrix.
Using Cramer's rule we compute the determinant of the coefficient matrix: D=|a1b1c1a2b2c2a3b3c3|
We also form the D_x, D_y, and D_z determinants as:
D_x = |[d_1,b_1,c_1],[d_2,b_2,c_2],[d_3,b_3,c_3]|
D_y = |[a_1,d_1,c_1],[a_2,d_2,c_2],[a_3,d_3,c_3]|
D_z = |[a_1,b_1,d_1],[a_2,b_2,d_2],[a_3,b_3,d_3]|
Continuing with Cramer's Rule, we compute the values of x, y, and z as:
x = D_x/D
y = D_y/D
z = D_z/D