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 beautifully simple: Applying the matrix to its eigenvector gives back scaled by — same direction, new length.
Eigenvalues reveal the "natural axes" of a transformation. Along an eigenvector, the complicated matrix action becomes simple multiplication by a number. This is why they matter:
- An eigenvalue of magnitude means that direction is stretched; magnitude means shrunk; a negative eigenvalue also flips the direction.
- Repeatedly applying (as in a dynamical system or a Markov chain) is governed by the eigenvalues — the largest-magnitude one eventually dominates.
To find eigenvalues you solve the characteristic equation — reusing the determinant's "singular" test, because means has a nonzero solution, which requires to be singular.
Eigenvalues are among computing's most applied ideas: PageRank ranks web pages via the dominant eigenvector of a link matrix; principal component analysis compresses data along top eigenvectors; and stability of systems, vibration modes, and quantum states are all eigenvalue problems.
Common pitfall: forgetting that an eigenvector must be nonzero and that it keeps its direction (only the length changes). The zero vector trivially satisfies for any , so it is excluded by definition. And an eigenvector is not just any vector the matrix scales the length of — it must map to a scalar multiple of itself (same or exactly opposite direction), not merely change in size while rotating.