Matrices: Exam-Pattern Drill (6)

hard 2 min read

Question

If A=(2314)A = \begin{pmatrix} 2 & 3 \\ 1 & 4 \end{pmatrix}, find A1A^{-1}.

Solution — Step by Step

For a 2×22\times 2 matrix (abcd)\begin{pmatrix} a & b \\ c & d \end{pmatrix}, det=adbc\det = ad - bc.

det(A)=2×43×1=83=5\det(A) = 2 \times 4 - 3 \times 1 = 8 - 3 = 5

Since det(A)0\det(A) \neq 0, AA is invertible.

For an invertible 2×22\times 2 matrix:

A1=1det(A)(dbca)A^{-1} = \frac{1}{\det(A)} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix}
A1=15(4312)=(4/53/51/52/5)A^{-1} = \frac{1}{5}\begin{pmatrix} 4 & -3 \\ -1 & 2 \end{pmatrix} = \begin{pmatrix} 4/5 & -3/5 \\ -1/5 & 2/5 \end{pmatrix}

Multiply AA1A \cdot A^{-1}:

(2314)15(4312)=15(5005)=I\begin{pmatrix} 2 & 3 \\ 1 & 4 \end{pmatrix} \cdot \frac{1}{5}\begin{pmatrix} 4 & -3 \\ -1 & 2 \end{pmatrix} = \frac{1}{5}\begin{pmatrix} 5 & 0 \\ 0 & 5 \end{pmatrix} = I

Check passed.

Final answer: A1=15(4312)A^{-1} = \tfrac{1}{5}\begin{pmatrix} 4 & -3 \\ -1 & 2 \end{pmatrix}.

Why This Works

For 2×22\times 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×22 \times 2 inversion under exam pressure.

Alternative Method

Use row reduction: [AI][IA1][A \mid I] \to [I \mid A^{-1}]. Slower for 2×22\times 2 but essential for 3×33\times 3 matrices in CBSE 5-mark questions.

In JEE Advanced, often A26A+5I=0A^2 - 6A + 5I = 0 is given, leading to A1=15(6IA)A^{-1} = \tfrac{1}{5}(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 aa and dd, negate bb and cc. Many students swap all four — wrong sign on the diagonal, wrong answer.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next