An eigenvalue is a scalar that scales the eigenvector when multiplied by the matrix. The eigenvector is the non-zero vector that does not change direction under the transformation.
Yes. If the matrix has complex entries or if the characteristic polynomial has no real roots, the eigenvalues may be complex.
Yes, if a matrix is symmetric (i.e., A^(T) = A ), all its eigenvalues are real.
Join ALLEN!
(Session 2026 - 27)
Choose class
Choose your goal
Preferred Mode
Choose State
Eigenvalues of a Matrix
In linear algebra, eigenvalues are special numbers associated with a square matrix. They reveal important characteristics like stability, direction, and scaling of vector transformations. Widely used in mathematics, physics, and data science, eigenvalues simplify complex matrix operations. Understanding eigen values is key for solving systems of equations, quantum mechanics, and even in machine learning techniques like PCA (Principal Component Analysis).
1.0Definition of Eigenvalues
An eigenvalue of a square matrix A is a scalar λ such that:
Ax=λx
Here, A is an n × n matrix, x is a non-zero vector (called the eigenvector), and λ is the eigenvalue. This equation means that multiplying a matrix A by a vector x results in a scaled version of x, not a rotated or otherwise transformed one.
2.0Eigenvalue Formula
To find the eigenvalues of a matrix, use the characteristic equation:
det(A−λl)=0
Where:
A is a square matrix,
I is the identity matrix of the same size,
λ represents eigenvalues,
det stands for determinant.
This results in a polynomial equation in λ. The roots of this polynomial are the eigenvalues of the matrix.
3.0Eigenvalue of a 2×2 Matrix
For a 2×2 matrix: A=[acbd]
The characteristic equation becomes:
det([a−λbcd−λ])=0
⇒(a−λ)(d−λ)−bc=0
⇒λ2−(a+d)λ+(ad−bc)=0
The roots of this quadratic equation give the eigenvalues of the 2×2 matrix.
4.0Properties of Eigen Values
Here are some key properties of eigen values for square matrices:
Only Square Matrices Have Eigenvalues: Non-square matrices do not have eigenvalues.