The matrix equation AX=B has a unique solution X=A−1B provided A is invertible (i.e., ∣A∣=0). For a 2×2 matrix, the inverse formula is fast and worth memorizing — flip diagonal entries, negate off-diagonal, divide by determinant.
This method is the matrix analog of solving a single equation ax=b by x=b/a. The matrix inverse plays the role of “1/a” in the matrix world.
For 2×2 matrices, the entire inverse calculation takes 30 seconds. For 3×3, you have to compute the cofactor matrix and adjugate — 3-4 minutes. Always check if the system can be solved by simpler methods (substitution, elimination) for small cases.
Alternative Method
Use Cramer’s rule directly:
x=∣A∣∣Ax∣=55634=520−18=52
y=∣A∣∣Ay∣=52156=512−5=57
Same answer in one step.
Students forget to divide by ∣A∣ at the end. Always remember: A−1=∣A∣1adj(A) — the determinant is in the denominator. If you forget, you compute the adjugate instead of the inverse.
Final answer: A−1=51(4−1−32), x=2/5, y=7/5.
Want to master this topic?
Read the complete guide with more examples and exam tips.