MethodMath

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 AA, if Av=λvA\mathbf{v} = \lambda\mathbf{v} for some scalar λ\lambda and non-zero vector v\mathbf{v}, then λ\lambda is an eigenvalue and v\mathbf{v} 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 Accepted
Here 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...
Login or Register to post an answer