Question
Given matrix , find . Also state the condition under which the inverse does not exist.
Solution — Step by Step
Before anything else, we calculate the determinant. If , we stop — the inverse simply doesn’t exist.
Since , we’re good to proceed.
For a 2×2 matrix , the cofactors follow a fixed sign pattern .
Cofactor matrix
The adjoint (or adjugate) is the transpose of the cofactor matrix — rows become columns.
Always spend 20 seconds on this verification in board exams — it’s a free error check.
Why This Works
The formula comes from a deeper identity: . Dividing both sides by gives us the inverse. This is why breaks everything — we’d be dividing by zero.
For a 2×2 matrix, there’s actually a pattern worth memorising: swap the diagonal elements, negate the off-diagonal elements, then divide by the determinant. So . This bypasses the cofactor step entirely for 2×2.
The condition for non-existence — — means the matrix is singular. Geometrically, a singular matrix collapses 2D space onto a line, and you can’t “undo” that collapse.
Alternative Method
For 2×2 specifically, use the shortcut formula directly:
Pattern: swap the main diagonal (), negate the anti-diagonal (, ), divide by determinant.
In CBSE 2024, a 2×2 inverse question appeared for 3 marks. Using this shortcut saves roughly 2 minutes versus the full cofactor method. For 3×3 matrices though, there’s no shortcut — you must go through all 9 cofactors.
Common Mistake
The most frequent error: forgetting to transpose when writing the adjoint. Students compute the cofactor matrix correctly, then write it directly as the adjoint. The adjoint is the transpose of the cofactor matrix — rows and columns must be swapped. In this problem, the cofactor matrix has in position (1,2), but the adjoint has in position (2,1). Mixing these up gives a wrong inverse that won’t satisfy , which is exactly why verification matters.