Minimal & Characteristic Polynomials

Cayley-Hamilton theorem

Here is one of the great surprises of linear algebra. Take an operator T, write down its characteristic polynomial chi(x) = det(xI - T), and then — instead of plugging in a number for x — plug in the operator T itself. The Cayley-Hamilton theorem says you always get zero: chi(T) = 0. Every operator satisfies its own characteristic equation.

There is a famous WRONG proof: 'just substitute T into chi(x) = det(xI - T) to get det(TI - T) = det(0) = 0.' That is nonsense, because det(xI - T) is a scalar-valued function of the number x, while chi(T) is an operator; you cannot substitute a matrix into the slot where a scalar lived. The real proof uses the adjugate identity (xI - T) adj(xI - T) = chi(x) I and matches polynomial coefficients on both sides, or invokes the dense set of diagonalizable matrices.

The single most useful corollary: the minimal polynomial DIVIDES the characteristic polynomial. Cayley-Hamilton hands you one explicit annihilating polynomial of degree n, namely chi; since the minimal polynomial divides every annihilator, it divides chi. Together with the fact that they share roots, this squeezes the minimal polynomial into a small, computable set of candidates.

Practically, Cayley-Hamilton lets you reduce any high power of T to a polynomial of degree below n: rewrite T^n in terms of lower powers using chi(T) = 0, and recurse. It is the engine behind computing T^k, the matrix exponential, and — when T is invertible — even T^-1 as a polynomial in T.

A = [1, 1; 0, 1], chi(x) = (x-1)^2 = x^2 - 2x + 1 Check: A^2 - 2A + I = [1, 2; 0, 1] - [2, 2; 0, 2] + [1, 0; 0, 1] = [0, 0; 0, 0]

Plugging A into its own characteristic polynomial gives the zero matrix, exactly as Cayley-Hamilton promises.

Cayley-Hamilton holds over any commutative ring, not just fields, and the slick adjugate proof works there too. It does NOT say chi is the minimal polynomial — only that chi annihilates T, so the minimal polynomial divides it.

Also called
Cayley-Hamilton凯莱-哈密尔顿定理