Cayley-Hamilton theorem — verify for a 2×2 matrix

medium JEE-MAIN JEE Main 2022 3 min read

Question

State the Cayley-Hamilton theorem. Verify it for the matrix A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}. Use it to find A1A^{-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)=0p(\lambda) = \det(A - \lambda I) = 0 is the characteristic equation, then p(A)=Op(A) = O (the zero matrix).

det(AλI)=det(1λ234λ)=(1λ)(4λ)6\det(A - \lambda I) = \det \begin{pmatrix} 1-\lambda & 2 \\ 3 & 4-\lambda \end{pmatrix} = (1-\lambda)(4-\lambda) - 6 =λ25λ+46=λ25λ2=0= \lambda^2 - 5\lambda + 4 - 6 = \lambda^2 - 5\lambda - 2 = 0

By Cayley-Hamilton: A25A2I=OA^2 - 5A - 2I = O.

First, compute A2A^2:

A2=(1234)(1234)=(7101522)A^2 = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix}\begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} = \begin{pmatrix} 7 & 10 \\ 15 & 22 \end{pmatrix}

Now compute A25A2IA^2 - 5A - 2I:

=(7101522)(5101520)(2002)=(0000)= \begin{pmatrix} 7 & 10 \\ 15 & 22 \end{pmatrix} - \begin{pmatrix} 5 & 10 \\ 15 & 20 \end{pmatrix} - \begin{pmatrix} 2 & 0 \\ 0 & 2 \end{pmatrix} = \begin{pmatrix} 0 & 0 \\ 0 & 0 \end{pmatrix}

We get the zero matrix. Cayley-Hamilton is verified.

From A25A2I=OA^2 - 5A - 2I = O, multiply both sides by A1A^{-1}:

A5I2A1=OA - 5I - 2A^{-1} = O A1=12(A5I)=12(4231)=(213/21/2)A^{-1} = \frac{1}{2}(A - 5I) = \frac{1}{2}\begin{pmatrix} -4 & 2 \\ 3 & -1 \end{pmatrix} = \mathbf{\begin{pmatrix} -2 & 1 \\ 3/2 & -1/2 \end{pmatrix}}

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 AA in terms of lower powers.

For a 2×22 \times 2 matrix, the characteristic polynomial is always λ2tr(A)λ+det(A)\lambda^2 - \text{tr}(A)\lambda + \det(A), where tr(A)=a11+a22\text{tr}(A) = a_{11} + a_{22} is the trace and det(A)\det(A) is the determinant.


Alternative Method

You can find A1A^{-1} directly using the formula A1=1detAadj(A)A^{-1} = \frac{1}{\det A} \text{adj}(A). Here detA=46=2\det A = 4 - 6 = -2 and adj(A)=(4231)\text{adj}(A) = \begin{pmatrix} 4 & -2 \\ -3 & 1 \end{pmatrix}. This gives A1=(213/21/2)A^{-1} = \begin{pmatrix} -2 & 1 \\ 3/2 & -1/2 \end{pmatrix} — same answer. Cayley-Hamilton provides an elegant alternative route.

For JEE, the Cayley-Hamilton approach is especially useful for finding A3A^3, A4A^4, or higher powers. From A2=5A+2IA^2 = 5A + 2I, we get A3=5A2+2A=5(5A+2I)+2A=27A+10IA^3 = 5A^2 + 2A = 5(5A + 2I) + 2A = 27A + 10I, and so on. This avoids messy matrix multiplication.


Common Mistake

When finding A1A^{-1} from Cayley-Hamilton, students forget that multiplying the equation by A1A^{-1} requires AA to be invertible (detA0\det A \neq 0). If detA=0\det A = 0, then A1A^{-1} does not exist and you cannot use this trick. Always check that the constant term in the characteristic equation (which equals detA\det A) is non-zero.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next