Question
If A=(2134), find A−1.
Solution — Step by Step
For a 2×2 matrix (acbd), det=ad−bc.
det(A)=2×4−3×1=8−3=5
Since det(A)=0, A is invertible.
For an invertible 2×2 matrix:
A−1=det(A)1(d−c−ba)
A−1=51(4−1−32)=(4/5−1/5−3/52/5)
Multiply A⋅A−1:
(2134)⋅51(4−1−32)=51(5005)=I
Check passed.
Final answer: A−1=51(4−1−32).
Why This Works
For 2×2 matrices, “swap the diagonal, negate the off-diagonal, divide by determinant” is a memorable mantra. CBSE Class 12 boards almost always test this exact pattern in 2-mark or 4-mark questions.
For larger matrices (3×3, 4×4), use the adjugate-divided-by-determinant or Gauss-Jordan elimination — but JEE Main rarely goes beyond 2×2 inversion under exam pressure.
Alternative Method
Use row reduction: [A∣I]→[I∣A−1]. Slower for 2×2 but essential for 3×3 matrices in CBSE 5-mark questions.
In JEE Advanced, often A2−6A+5I=0 is given, leading to A−1=51(6I−A) via the matrix’s own equation. This Cayley-Hamilton trick avoids cofactors entirely.
Common Mistake
Forgetting to negate the off-diagonal entries. The pattern is: swap a and d, negate b and c. Many students swap all four — wrong sign on the diagonal, wrong answer.