The Directions a Matrix Cannot Bend
Apply a matrix to most vectors and they rotate and stretch. But some special directions only get scaled — the matrix cannot bend them off their line. These are the eigenvectors, and their scaling factors are the eigenvalues:
Finding them: rewrite as . A nonzero solution exists only if is singular — a determinant question again:
This is the characteristic polynomial; its roots are the eigenvalues. For each root, solving yields the eigenspace — the full line (or plane) of eigenvectors sharing that .
For a triangular matrix the eigenvalues sit conveniently on the diagonal. And two checksums catch errors: the eigenvalues sum to the trace and multiply to the determinant.
Why business cares — dynamics. Many systems evolve by repeated multiplication: market shares next month = shares this month; a customer-loyalty transition table applied year after year. After many steps, the state aligns with the dominant eigenvector (largest ), and the eigenvalue dictates the fate:
A Markov market-share matrix always has ; its eigenvector is the long-run market share — the split the market drifts to no matter where it starts. Google's PageRank is exactly this: the web's dominant eigenvector.
Eigenvalues are the matrix's tempo markings: they tell you not what happens in one step, but what the repetition of that step converges to.
The eigen-recipe
| Step | Equation | Yields |
|---|---|---|
| 1. Characteristic polynomial | The eigenvalues | |
| 2. Solve | For each | The eigenspace of 's |
| Check: trace | Fast error detection | |
| Check: determinant | Fast error detection |
Tip: Always run both checks — the eigenvalues must sum to the trace and multiply to the determinant. Thirty seconds of verification catches nearly every root-finding slip.