The Cayley-Hamilton theorem states: every square matrix satisfies its own characteristic equation.
For 2x2 matrix A: Characteristic equation: - (tr A)lambda + det(A) = 0 Cayley-Hamilton: - (tr A)A + (det A)I = O
For 3x3 matrix A: Characteristic equation: - p* + q*lambda - r = 0 where p = tr(A), q = sum of 2x2 principal minors, r = det(A) Cayley-Hamilton: - + qA - rI = O
Application 1: Finding A^(-1) From - (tr A)A + (det A)I = O: A^(-1) = [(tr A)I - A] / det(A)
Application 2: Finding Express higher powers in terms of lower powers using the characteristic equation. Example: If = 5A - 6I, then = 5 - 6A = 5(5A-6I) - 6A = 19A - 30I
Application 3: Matrix polynomials To find f(A) for any polynomial f, divide f(lambda) by the characteristic polynomial. The remainder (degree < n) gives f(A) directly.
JEE Tip: Cayley-Hamilton is the fastest method for:
- "Find A^(-1)" when trace and determinant are easy to compute
- "Find " or similar high-power expressions
- "If - 5A + 6I = O, find , , or A^(-1)"