Cramer's Method
Solve a 2x2 linear system with determinants only: build the coefficient matrix, compute D, swap each variable's column for the constants to get Dx and Dy, then divide. Worked on 5x - 6y = 15, 3x + 4y = -29.
Solve a 2x2 linear system with determinants only: build the coefficient matrix, compute D, swap each variable's column for the constants to get Dx and Dy, then divide. Worked on 5x - 6y = 15, 3x + 4y = -29.
Substitution and elimination both make you rearrange the equations. Cramer's method does not. You write down three determinants, divide, and the answers fall out. Every step is fixed, which is why it turns into an algorithm a computer can run.
Read the coefficients straight off the system, keeping every negative sign. For and
:
A determinant is the first diagonal minus the second diagonal. Compute
first: it is the denominator for every variable, and if it comes out
the method cannot be used.
Solve and
.
⟹ x = −3, y = −5
Watch the sign in : subtracting
removes a positive product, which is what pulls the value down to
.