IM
Apr 3, 2026
What is the difference between eigenvalue and eigenvector in intuitive terms?
I am studying linear algebra and I understand the formal definition:
For a square matrix , if for some scalar and non-zero vector , then is an eigenvalue and is the corresponding eigenvector.
But I don't have geometric intuition. What do eigenvalues and eigenvectors really mean? Why are they so important in applications like PCA, quantum mechanics, and Google's PageRank?
1 answers96 views
Loading comments...
1 Answer
EW
Emma WhitfieldApr 3, 2026 AcceptedHere is the geometric intuition.
**Geometric Interpretation:**
A matrix $A$ represents a linear transformation (stretching, rotating, shearing) of space. An eigenvector $\mathbf{v}$ is a **special direction** that is preserved by the transformation — the vector may be stretched or compressed, but it stays on the same line through the origin. The eigenvalue $\lambda$ tells you **how much** it stretches:
- $|\lambda| > 1$: stretch
- $|\lambda| < 1$: compress
- $\lambda = 0$: collapse (singular)
- $\lambda < 0$: flip direction
**Why They Matter:**
1. **PCA (Principal Component Analysis):** Eigenvectors of the covariance matrix point in the directions of maximum variance. The largest eigenvalue corresponds to the \"most important\" direction.
2. **Quantum Mechanics:** Observable quantities are represented by operators (matrices). Their eigenvalues are the only possible measurement outcomes. The eigenvectors are the corresponding states.
3. **PageRank:** Google models the web as a matrix where eigenvector centrality determines page importance. The PageRank vector is the eigenvector corresponding to the largest eigenvalue.
4. **Differential Equations:** The exponential $e^{At}$ is computed by diagonalising $A$ into eigenvectors and eigenvalues. Each mode evolves independently as $e^{\lambda_i t}$.
In short: **eigenvalues tell you what a matrix does; eigenvectors tell you where it does it.**
Loading comments...