Directions That Only Stretch
Most vectors change direction under a linear transformation. But some special vectors are only scaled: the transformation stretches or shrinks them without rotating them. Such a vector is an eigenvector, and its scale factor is the eigenvalue .
The defining equation is:
Applying matrix to eigenvector gives back scaled by . Along an eigenvector, complex matrix action becomes simple multiplication by a number.
| Magnitude / Sign | Effect on Direction | Behavior |
|---|---|---|
| Same or flipped | Stretched | |
| Same or flipped | Shrunk | |
| Flipped | Opposite direction |
Repeatedly applying is governed by its eigenvalues; the largest-magnitude eigenvalue eventually dominates systems like Markov chains.
Finding and Using Eigenvalues
To find eigenvalues, solve the characteristic equation:
This reuses the determinant's singular test because means has a nonzero solution, requiring to be singular.
Eigenvalues drive major algorithms: PageRank ranks web pages via the dominant eigenvector of a link matrix, and principal component analysis compresses data along top eigenvectors.
Common pitfall: Forgetting that an eigenvector must be nonzero () and must keep its direction. The zero vector trivially satisfies the equation for any , so it is excluded. An eigenvector must map to a scalar multiple of itself, not merely change in size while rotating.