Eigenvalues (concept)
Characteristic equation of a matrix.
This public page keeps the free explanation visible and leaves premium worked solving, advanced walkthroughs, and saved study tools inside the app.
Core idea
Overview
An eigenvalue is a scalar factor that represents how a corresponding eigenvector is scaled during a linear transformation. In the fundamental relationship A v = λ v, the eigenvalue λ determines whether the vector v is stretched, compressed, or flipped without changing its span or orientation in space.
When to use: Use eigenvalues when diagonalizing a matrix to simplify computation, analyzing the stability of a linear system of differential equations, or identifying the principal components in a large dataset. They are essential for understanding systems where a transformation preserves the direction of certain input vectors.
Why it matters: Eigenvalues define the natural frequencies of vibration in structural engineering, preventing mechanical failure due to resonance. They also underpin the PageRank algorithm used by search engines to rank the importance of web pages and are used in quantum mechanics to represent observable physical quantities like energy levels.
Symbols
Variables
Top-left element of the 2x2 matrix. = Matrix Element (1,1), Top-right element of the 2x2 matrix. = Matrix Element (1,2), Bottom-left element of the 2x2 matrix. = Matrix Element (2,1), Bottom-right element of the 2x2 matrix. = Matrix Element (2,2), Specifies the type of eigenvalue-related calculation to perform. = Calculation Type
Walkthrough
Derivation
Derivation of Eigenvalues
Eigenvalues are scalars for which a non-zero vector exists such that A is a scaled version of .
- A is a square matrix.
- .
Start with the Eigenvalue Definition:
Applying the linear transformation A to changes only its scale (not its direction).
Rearrange to a Homogeneous System:
Move to the left. The identity matrix I allows subtracting a scalar from a matrix.
Require a Non-Trivial Solution:
A non-zero solution exists only if (A- I) is singular, which happens exactly when its determinant is zero.
Result
Source: Standard curriculum — Linear Algebra
Free formulas
Rearrangements
Solve for
Make det(A-lambda I) the subject
To derive the characteristic equation for eigenvalues, start with the definition , rearrange the terms, factor out the eigenvector , and then set the determinant of the resulting matrix to zero to find non-trivial solutions.
Difficulty: 2/5
The static page shows the finished rearrangements. The app keeps the full worked algebra walkthrough.
Visual intuition
Graph
Graph unavailable for this formula.
The plot represents the roots of the characteristic polynomial, typically depicted as discrete points or a set of curves defined by the characteristic equation det(A - λI) = 0. Depending on the matrix structure, these eigenvalues can appear as constants or shift along the real or complex plane as the matrix entries vary. In this context, the shape reflects the values for which a linear transformation acts as a simple scalar scaling factor along its corresponding eigenvectors.
Graph type: polynomial
Why it behaves this way
Intuition
The equation visualizes a linear transformation A as a process where specific vectors (eigenvectors) are merely scaled by a factor (eigenvalue) without altering their fundamental direction.
Free study cues
Insight
Canonical usage
The eigenvalue λ must possess the same physical dimensions as the entries of the matrix A, assuming the matrix is uniform in units.
Common confusion
Attempting to assign the units of the vector v to the eigenvalue λ. Because v appears on both sides of the equation, its units cancel, leaving λ to inherit the units of matrix A.
Dimension note
In pure mathematics, both the matrix entries and the eigenvalues are treated as dimensionless scalars. In applied contexts, the eigenvector is almost always treated as dimensionless through normalization.
Unit systems
One free problem
Practice Problem
Find the larger eigenvalue λ for a 2×2 matrix where the first row is [6, 2] and the second row is [2, 3].
Solve for:
Hint: Solve the characteristic equation det(A - λI) = 0, which results in (6-λ)(3-λ) - 4 = 0.
The full worked solution stays in the interactive walkthrough.
Where it shows up
Real-World Context
Resonance frequencies of a bridge.
Study smarter
Tips
- The sum of all eigenvalues of a matrix is equal to its trace (the sum of the main diagonal elements).
- The product of all eigenvalues of a matrix is equal to its determinant.
- A square matrix is non-invertible if and only if at least one of its eigenvalues is exactly zero.
- For diagonal or triangular matrices, the eigenvalues are simply the entries along the main diagonal.
Avoid these traps
Common Mistakes
- Arithmetic errors in determinant.
- Forgetting identity matrix I.
Common questions
Frequently Asked Questions
Eigenvalues are scalars \lambda for which a non-zero vector \mathbf{v} exists such that A\mathbf{v} is a scaled version of \mathbf{v}.
Use eigenvalues when diagonalizing a matrix to simplify computation, analyzing the stability of a linear system of differential equations, or identifying the principal components in a large dataset. They are essential for understanding systems where a transformation preserves the direction of certain input vectors.
Eigenvalues define the natural frequencies of vibration in structural engineering, preventing mechanical failure due to resonance. They also underpin the PageRank algorithm used by search engines to rank the importance of web pages and are used in quantum mechanics to represent observable physical quantities like energy levels.
Arithmetic errors in determinant. Forgetting identity matrix I.
Resonance frequencies of a bridge.
The sum of all eigenvalues of a matrix is equal to its trace (the sum of the main diagonal elements). The product of all eigenvalues of a matrix is equal to its determinant. A square matrix is non-invertible if and only if at least one of its eigenvalues is exactly zero. For diagonal or triangular matrices, the eigenvalues are simply the entries along the main diagonal.
References
Sources
- Wikipedia: Eigenvalues and eigenvectors
- Introduction to Linear Algebra by Gilbert Strang
- Strang, Linear Algebra and Its Applications
- Griffiths, Introduction to Quantum Mechanics
- Lay, Linear Algebra and Its Applications
- Linear Algebra and Its Applications by Gilbert Strang
- Eigenvalues and eigenvectors (Wikipedia article)
- Standard curriculum — Linear Algebra