Changing to the Eigenbasis
If a matrix has independent eigenvectors, pack them as the columns of and their eigenvalues into the diagonal of : then . Reading right to left: translates a vector into eigen-coordinates, stretches each coordinate by its eigenvalue (the easy part), and translates back.
The matrix was never complicated — we were looking at it in the wrong basis. Consequences cascade: (powers act on eigenvalues only), , and functions of matrices (, ) are defined by applying them to the diagonal. Computing costs a diagonalization, not a hundred multiplications.
A repeated eigenvalue may come with too few eigenvectors: the shear has the double eigenvalue but only ONE eigenvector direction — it is DEFECTIVE, and no basis makes it diagonal. The fix (Jordan form) adds an off-diagonal and, in differential equations, produces exactly the solutions you met with repeated characteristic roots. The two "repeated root" phenomena are one phenomenon.
Fibonacci's is the matrix iteration , so lives inside .
Diagonalizing (eigenvalues and ) yields BINET'S FORMULA — a closed form for a recursive sequence, and since , the growth rate of Fibonacci is exactly the golden ratio. Every linear recurrence yields to the same treatment: its characteristic equation is the characteristic polynomial of its companion matrix.
Compute for . Work: eigenvalues from trace , det : . Then . No matrix was multiplied. (For contrast, try computing by hand — five multiplications, sixteen entries each — then take the trace and confirm.)
Proofs & Why It Matters
— the inner pair cancels; induction extends to all . For the trace, use : .
SIGNIFICANCE: this identity is how one counts closed walks in graphs (adjacency-matrix powers), computes partition functions in physics, and analyzes mixing of Markov chains — three fields, one cancellation.
Define , i.e. exponentiate each eigenvalue. Then solves — the systems topic of Differential Equations is literally this formula. Diagonalization is the load-bearing wall between the two courses.
Going Deeper: Worked Problems
Diagonalize and use it to find a formula for .
Step 1 — eigenvalues: trace , det : .
Step 2 — eigenvectors: for , gives ; for , gives .
Step 3 — , , and .
Step 4 — .
Step 5 — check : ✓. Every entry is now a formula in ; the terms dominate, along the eigenvector .
A sequence satisfies with , . Find a closed form.
Step 1 — companion matrix: .
Step 2 — its characteristic polynomial is — exactly the recurrence with in place of the shift.
Step 3 — so ; the data give and , hence , : .
Step 4 — verify : recurrence gives ; formula gives ✓. Diagonalizing the companion matrix IS the "characteristic equation" method — now you know why it works.