Cayley-Hamilton Theorem

1 min read Last updated Sat Jun 27 2026 08:46:52 GMT+0000 (Coordinated Universal Time)

If p(λ)p(\lambda) is the characteristic polynomial of An×nA_{n\times n}, then p(A)=Op(A)=O.

Every matrix satisfies its own characteristic equation.

Uses

  • Compute the inverse of a matrix without row reduction.
  • Express higher powers of a matrix in terms of lower powers.

Example

Let A=(1102)A = \begin{pmatrix}1 & 1 \\ 0 & 2\end{pmatrix}.

Characteristic polynomial: p(λ)=λ23λ+2p(\lambda) = \lambda^2 - 3\lambda + 2.

By Cayley-Hamilton: A23A+2I=OA^2 - 3A + 2I = O.

Computing A1A^{-1}: multiply through by A1A^{-1}:

A3I+2A1=O    A1=3IA2A - 3I + 2A^{-1} = O \implies A^{-1} = \frac{3I - A}{2}

Computing A3A^3: from A2=3A2IA^2 = 3A - 2I, multiply by AA:

A3=3A22A=3(3A2I)2A=7A6IA^3 = 3A^2 - 2A = 3(3A-2I) - 2A = 7A - 6I

Each higher power reduces to a linear combination of AA and II.

Was this helpful?