The Directions That Don't Rotate
Given a square matrix , an eigenvector is a non-zero vector that merely scales — it doesn't change direction:
The scalar is the eigenvalue — the factor by which stretches (or compresses, or flips) the eigenvector.
Finding eigenvalues: rearrange as . For a non-trivial solution, the matrix must be singular:
This is the characteristic equation — a polynomial in whose roots are the eigenvalues.
For a matrix :
The sum of eigenvalues equals the trace (); the product equals the determinant (). These shortcuts are useful for quick checks.
Economic applications:
- Input-output models (Leontief): the dominant eigenvalue of the technology matrix determines whether the economy can produce a net surplus — if it exceeds 1, some sector consumes more than it produces.
- Dynamic systems: eigenvalues of the transition matrix determine stability. If all , the system converges to a steady state; if any , it explodes.
- Markov chains: the stationary distribution is the eigenvector corresponding to .
- Principal Component Analysis: eigenvectors of the covariance matrix are the principal components — the directions of greatest variation in the data.
Eigenvalues answer the most fundamental question about a linear system: does it grow, shrink, or stay the same — and in which directions?
The shortcut
| Quantity | Formula | Check |
|---|---|---|
| Characteristic equation | — | |
| Sum of eigenvalues | Fast error catch | |
| Product of eigenvalues | Fast error catch |
Tip: For any matrix, skip the determinant expansion: write directly, then verify roots against trace and determinant. Twenty seconds, self-checking.