The Characteristic Polynomial
When you expand for an matrix, you get a polynomial of degree in . This is called the characteristic polynomial of . The eigenvalues are exactly its roots. For a matrix , the characteristic polynomial simplifies to a familiar quadratic: , where is the trace (sum of diagonal entries).
The quadratic formula gives where the discriminant is . Three cases: means two distinct real eigenvalues; means one repeated real eigenvalue; means two complex conjugate eigenvalues (no real eigenvectors — the transformation rotates every direction).
Use the interactive diagram to build intuition. Set the matrix entries and watch how the characteristic polynomial and its roots change. Try to find a matrix with one positive and one negative eigenvalue, or push the discriminant negative to create a rotation. Notice how the trace equals and the determinant equals .
Formal View
These trace-determinant relations hold for any matrix: the trace equals the sum of all eigenvalues and the determinant equals their product.
Interactive Visualization
Characteristic Polynomial
Why This Matters
The characteristic polynomial encodes all eigenvalue information in a single algebraic object.
- The Cayley–Hamilton theorem says every matrix satisfies its own characteristic equation:
- The trace and determinant identities let engineers quickly estimate eigenvalue behavior without full computation
- Checking whether a matrix is positive definite (all eigenvalues positive) is often done via its characteristic polynomial
- Spectral analysis in signal processing uses characteristic polynomials of filter coefficient matrices
Learning Resources
Quiz
What is the characteristic polynomial of ?
The eigenvalues of are:
Every real matrix has two real eigenvalues.
Common Mistakes
- Computing instead of — you must subtract a matrix, not a scalar.
- Forgetting the minus sign: the characteristic polynomial is , not .
- Assuming the characteristic polynomial factors into real linear factors — complex roots are possible and common for rotation-like matrices.