Question
State the Cayley-Hamilton theorem. Verify it for the matrix A=(1324). Use it to find A−1.
(JEE Main 2022, similar pattern)
Solution — Step by Step
Cayley-Hamilton Theorem: Every square matrix satisfies its own characteristic equation. If p(λ)=det(A−λI)=0 is the characteristic equation, then p(A)=O (the zero matrix).
det(A−λI)=det(1−λ324−λ)=(1−λ)(4−λ)−6
=λ2−5λ+4−6=λ2−5λ−2=0
By Cayley-Hamilton: A2−5A−2I=O.
First, compute A2:
A2=(1324)(1324)=(7151022)
Now compute A2−5A−2I:
=(7151022)−(5151020)−(2002)=(0000)
We get the zero matrix. Cayley-Hamilton is verified.
From A2−5A−2I=O, multiply both sides by A−1:
A−5I−2A−1=O
A−1=21(A−5I)=21(−432−1)=(−23/21−1/2)
Why This Works
The characteristic equation captures the fundamental algebraic properties of a matrix through its eigenvalues. The Cayley-Hamilton theorem says the matrix itself, when plugged into this polynomial, gives zero. This is a powerful result because it lets us express higher powers of A in terms of lower powers.
For a 2×2 matrix, the characteristic polynomial is always λ2−tr(A)λ+det(A), where tr(A)=a11+a22 is the trace and det(A) is the determinant.
Alternative Method
You can find A−1 directly using the formula A−1=detA1adj(A). Here detA=4−6=−2 and adj(A)=(4−3−21). This gives A−1=(−23/21−1/2) — same answer. Cayley-Hamilton provides an elegant alternative route.
For JEE, the Cayley-Hamilton approach is especially useful for finding A3, A4, or higher powers. From A2=5A+2I, we get A3=5A2+2A=5(5A+2I)+2A=27A+10I, and so on. This avoids messy matrix multiplication.
Common Mistake
When finding A−1 from Cayley-Hamilton, students forget that multiplying the equation by A−1 requires A to be invertible (detA=0). If detA=0, then A−1 does not exist and you cannot use this trick. Always check that the constant term in the characteristic equation (which equals detA) is non-zero.