Eigenvectors
Method
For each eigenvalue λ, solve (A−λI)v=0. The null space of (A−λI) is the eigenspace.
Examples
Example 1. Eigenvector of [[2,1],[0,3]] for λ=2.
Solution. (A−2I)v=0: [[0,1],[0,1]]v=0 → v=(1,0).
In Depth
An eigenvector of a matrix \(A\) is a nonzero vector \(\mathbf{v}\) satisfying \(A\mathbf{v}=\lambda\mathbf{v}\) for some scalar \(\lambda\) (the eigenvalue). Eigenvectors point in directions that are only scaled, not rotated, by \(A\). They reveal the intrinsic geometry of the linear transformation.
Eigenvalues are roots of the characteristic polynomial \(\det(A-\lambda I)=0\). An \(n\times n\) matrix has \(n\) eigenvalues (counting multiplicity) over \(\mathbb{C}\). The trace equals the sum of eigenvalues; the determinant equals their product.
The eigenspace for eigenvalue \(\lambda\) is \(\ker(A-\lambda I)\), the null space of \(A-\lambda I\). Its dimension (geometric multiplicity) may be less than the algebraic multiplicity (multiplicity as a root of the characteristic polynomial). When they are equal for all eigenvalues, \(A\) is diagonalizable.
Symmetric matrices (\(A=A^T\)) have real eigenvalues and orthogonal eigenvectors (spectral theorem). This makes them especially well-behaved: they are always diagonalizable as \(A=Q\Lambda Q^T\) with orthogonal \(Q\). Positive definite matrices have all positive eigenvalues.
Power iteration finds the dominant eigenvector by repeatedly multiplying by \(A\) and normalizing. The QR algorithm computes all eigenvalues efficiently. In data science, PCA finds the eigenvectors of the covariance matrix; Google's PageRank is the dominant eigenvector of the web's link matrix.
Key Properties & Applications
The spectral theorem for symmetric matrices: every real symmetric matrix \(A\) has an orthonormal eigenbasis and real eigenvalues. This means \(A=Q\Lambda Q^T\) with orthogonal \(Q\) and diagonal \(\Lambda\). Symmetric matrices represent self-adjoint operators in quantum mechanics (observables).
Perron–Frobenius theorem: a matrix with all positive entries has a unique largest real eigenvalue (the Perron root) with a corresponding eigenvector of all positive entries. This is the basis of Google's PageRank algorithm and Markov chain analysis.
Eigenvalue perturbation theory (Weyl's inequalities, Bauer–Fike theorem) bounds how much eigenvalues change when a matrix is perturbed. This is crucial for numerical stability analysis and for understanding the sensitivity of physical systems to parameter changes.
Further Reading & Context
The study of eigenvector connects to many areas of mathematics and its applications. Understanding the foundational definitions and theorems provides the basis for advanced work in analysis, algebra, and applied mathematics.
Historical development: most mathematical concepts evolved over centuries, with contributions from mathematicians across many cultures. The modern axiomatic treatment provides rigor, while computational tools enable practical application.
In modern mathematics, this topic appears in graduate courses and research across pure and applied mathematics. Connections to computer science, physics, and engineering make it a versatile and important area of study. Mastery of the core results and techniques opens doors to research in number theory, analysis, geometry, and beyond.
Recommended next steps: work through the standard theorems with full proofs, explore the connections to related topics listed above, and practice with a variety of problems ranging from computational exercises to theoretical proofs. The interplay between different areas of mathematics is one of the subject's greatest rewards.
Deep Dive: Eigenvector
This lesson extends core ideas for eigenvector with rigorous reasoning, edge-case checks, and application framing in linear algebra.
Practice Set
Practice. Derive one main result on this page and validate with a numeric or geometric check.
Goal. Confirm assumptions, transformation steps, and final interpretation.
References & Editorial Notes
- Stewart, Calculus.
- Strang, Introduction to Linear Algebra.
- Apostol, Mathematical Analysis.
Last editorial review: 2026-04-14.