The equation AX=B is the matrix version of ax=b. In scalars, we’d multiply both sides by a−1. Here, we premultiply both sides by A−1: left side gives A−1AX=IX=X, and right side gives A−1B. That’s the entire logic.
The determinant check at Step 2 is non-negotiable. If ∣A∣=0, the matrix is singular — no unique solution exists, and the method breaks down entirely. Board examiners specifically award 1 mark for computing ∣A∣ and stating ∣A∣=0, so never skip it even if you “can see” the answer.
The adjugate transpose is where most errors happen. The cofactor matrix rows go down; the adjugate rows go across. Write the cofactors in a grid first, then transpose mentally — that habit prevents sign errors under exam pressure.
Alternative Method — Row Reduction (Augmented Matrix)
For those who find cofactors tedious, Gauss-Jordan elimination on the augmented matrix [A∣B] reaches the same answer faster in practice (though it’s not the method CBSE asks for in “matrix inverse” questions):
231−3215−4−211−5−3
Apply R1↔R3, then eliminate to get row echelon form, then back-substitute. You’ll land at x=1,y=2,z=3 with less arithmetic. In JEE Main, where no method is mandated, this is often faster.
In CBSE boards, the question specifically says “using matrix inverse method” — use A−1B. Switching to row reduction will cost you method marks even if the answer is correct.
Common Mistake
Students write adj(A) as the cofactor matrix directly, forgetting to transpose it. This gives wrong values for A−1 and loses all 5 marks — correct method, wrong adjugate. Remember: cofactors fill the grid row by row, then you flip across the diagonal to get adj(A). The diagonal elements (C11,C22,C33) stay in place; everything else swaps. Double-check by verifying that A⋅A−1=I whenever you have time.
Want to master this topic?
Read the complete guide with more examples and exam tips.