The Cayley-Hamilton theorem states that every square matrix satisfies its own characteristic equation. For a 2x2 matrix A with characteristic equation - (trace)lambda + det = 0, we get:
- (tr A)A + (det A)I = 0
Applications:
-
Finding A^(-1): From - (tr A)A + (det A)I = 0, multiply by A^(-1): A - (tr A)I + (det A)A^(-1) = 0, giving A^(-1) = [(tr A)I - A] / det(A)
-
Finding : Reduce higher powers using the characteristic equation. E.g., = (tr A)A - (det A)I. Then = A * = A[(tr A)A - (det A)I] and substitute again.
-
Finding polynomial expressions: For f(A) where f is any polynomial, divide f(lambda) by the characteristic polynomial. The remainder (degree < n) gives f(A).
This is the fastest method for "Find " type problems in JEE.