Given a square matrix A, an eigenvector v is a nonzero vector such that Av = λv, where λ is a scalar called the eigenvalue. In plain language: when you multiply the matrix by its eigenvector, the vector just gets scaled, not rotated. The eigenvalue tells you the scaling factor.
To find eigenvalues, solve det(A - λI) = 0. For a 2x2 matrix, this gives a quadratic equation in λ. For larger matrices, it gives higher-degree polynomials. The eigenvalues of the characteristic polynomial tell you the fundamental behavior of the matrix.
Eigenvalues and eigenvectors are used in principal component analysis (dimensionality reduction in data science), vibration analysis in engineering, stability analysis in differential equations, and Google’s PageRank algorithm. They transform complicated matrix problems into simpler scalar problems.
Try our Eigenvalue Finder to compute 2x2 eigenvalues and see the process in action.