Eigenvalues and eigenvectors look mysterious the first time you see them, but the underlying idea is intuitive: when a matrix transforms a vector, most vectors get rotated and stretched. Eigenvectors are the special directions that only get stretched, never rotated. That stretch factor is the eigenvalue.
The definition
Given an matrix , a non-zero vector is an eigenvector with eigenvalue when:
Geometrically: acting on produces times — same direction, just scaled.
How to find them — characteristic polynomial
Rearranging gives . For a non-trivial to exist, the matrix must be singular, i.e.:
This expands into a polynomial in called the characteristic polynomial, of degree . Its roots are the eigenvalues.
Worked example
- .
- .
- Solve : or .
For : solve , i.e. , giving eigenvector .
For : similar process gives .
Why eigenvectors matter
- Principal Component Analysis (PCA): eigenvectors of the covariance matrix are the principal directions of variation in your data.
- Google PageRank: the rank vector is the dominant eigenvector of the web's link matrix.
- Quantum mechanics: observables are operators; their eigenvalues are the only outcomes you can measure.
- Differential equations: eigenvalues of the system matrix tell you whether solutions decay or blow up.
Geometric meaning recap
For a 2D matrix, eigenvectors are special axes. If you align the coordinate system with them, becomes diagonal — pure scaling along each axis with no rotation. That is diagonalisation, and it is the foundation of dozens of algorithms.
Common mistakes
- Forgetting eigenvectors are defined up to scaling — any non-zero multiple of an eigenvector is also an eigenvector.
- Skipping the characteristic equation and trying to guess.
- Treating as — it isn't.
Try with the AI Matrix Solver
Drop your matrix into the Matrix Calculator and request eigenvalues — every step shown.
Related references:
- Determinant Calculator — needed for the characteristic polynomial
- Quadratic Solver — for the characteristic case
- Vector Calculator — eigenvectors are vectors at heart