If p(λ) is the characteristic polynomial of An×n, then p(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=(1012).
Characteristic polynomial: p(λ)=λ2−3λ+2.
By Cayley-Hamilton: A2−3A+2I=O.
Computing A−1: multiply through by A−1:
A−3I+2A−1=O⟹A−1=23I−A
Computing A3: from A2=3A−2I, multiply by A:
A3=3A2−2A=3(3A−2I)−2A=7A−6I
Each higher power reduces to a linear combination of A and I.