How to determine Eigenvalues of a Matrix?
Last Updated :
08 Aug, 2024
Eigenvalue is defined as a scalar associated with a given linear transformation of a vector space and having the property that there is some non-zero vector which when multiplied by the scalar is equal to the vector obtained by letting the transformation operate on the vector. The roots of the linear equation matrix system are also called eigenvalues.
Steps To Determine The Eigenvalues of a Matrix
Consider a square matrix A of k x k, v is vector and λ is the scalar quantity, which can be represented as,
Av = λv
Av - λv = 0 ⇢ [λ - Eigen value]
A - λI = 0 ⇢ [I - Identity matrix]
|A - λI| = 0
|A - λI| = 0, this equation is also known as "Characteristic equation".
Solving the characteristic equation above for the value of \lambda will give you the eigenvalues.
Properties of Eigenvalue
Consider a square matrix A with eigenvalues λ1, λ2 ... λn
- The determination of A is a product of all its eigenvalue. [det(A) = λ1 × λ2....λn]
- Matrix A is invertible if and only if every eigenvalue is non-zero.
- Eigenvalue of real symmetric and Hermitian matrices are equal.
- Eigenvalue of real skew-symmetric and skew Hermitian matrices are either pure or zero.
- Eigenvalue of unitary and orthogonal matrices are of unit modulus |λ| = 1.
- Eigen value of A-1= 1/λ1,1/λ2,... 1/λn.
- Eigen value of Ak = λk1, λk2, .... λkn
- If A and B are two matrices of the same order then the eigenvalue of AB = Eigenvalue of BA.
- If a square matrix A is a lower/upper triangular matrix, then its eigenvalue will be the diagonal elements of the matrix.
Steps to find the value of a matrix
Below are the steps that are to be followed to find the value of a matrix,
Step 1: Check whether the given matrix is a square matrix or not. If "yes" then, follow step 2.
Step 2: Determine identity matrix(I)
Step 3: Estimate the matrix A - λI.
Step 4: Find the determinant of A - λI.
Step 5: Equate the determinant of A-λI to zero. {|A - λI| = 0}
Step 6: Calculate all the possible values of λ.
Related Articles:
Sample Problems - How to determine the Eigenvalues of a Matrix?
Question 1: Find the eigen value of matrix A= \begin{bmatrix} 1 & 4 \\ 3 & 2 \\ \end{bmatrix}.
Solution:
A-\lambda I= \begin{bmatrix} 1-\lambda & 4 \\ 3 & 2-\lambda \\ \end{bmatrix}
|A - λI|= 0
(1 - λ)(2 - λ) - 12 = 0
2 - λ - 2λ + λ2 - 12 = 0
λ2 - 3λ - 10 = 0
λ2 - 5λ + 2λ - 10 = 0
(λ + 2)(λ - 5) = 0
λ = -2, 5
Therefore, eigen value will be (-2, 5)
Question 2: Find the eigen value of matrix A= \begin{bmatrix} 1 & 0 & 0 \\ 0 & 1 & 2 \\ 0 & 0 & 0 \end{bmatrix}
Solution:
A-\lambda I= \begin{bmatrix} 1-\lambda & 0 & 0 \\ 0 & 1-\lambda & 2 \\ 0 & 0 & 0-\lambda \\ \end{bmatrix}
|A - λI| = 0
(1 - λ)[(1 - λ)(0 - λ) - 2] = 0
(1 - λ)(λ2 - λ - 2) = 0
-λ3 + 2λ + λ - 2 = 0
λ = 1, 0
Therefore, the eigen value will be 1, 0.
Question 3: Find the eigen value of matrix A= \begin{bmatrix} 4 & 1 \\ 1 & 4 \\ \end{bmatrix}
Solution:
A-\lambda I = \begin{bmatrix} 4-\lambda & 1 \\ 1 & 4-\lambda \\ \end{bmatrix}
[(4 - λ)(4 - λ)] - 1 = 0
16 - 4λ - 4λ + λ2 - 1 = 0
λ2 - 8λ + 15 = 0
λ2 - 3λ - 5λ + 15 = 0
λ(λ - 3) - 5(λ - 3) = 0
(λ - 5)(λ - 3) = 0
λ = 5, 3
Therefore, the eigenvalue will be 5, 3
Question 4: Find the eigen value of the given matrix A= \begin{bmatrix} 1 & 4 & 3 \\ 0 & 3 & 8 \\ 0 & 0 & 2 \end{bmatrix}
Solution:
As mentioned above in the properties of eigen value i.e If a square matrix A is lower/upper triangular matrix, then its eigenvalue will be the diagonal elements of the matrix.
As the given matrix A is a lower triangular matrix so, its eigenvalue will be 1, 3, 2.
Question 5: Find the eigen value of the matrix A= \begin{bmatrix} 2 & 2 \\ 5 & -1 \\ \end{bmatrix}
Solution:
A-\lambda I= \begin{bmatrix} 2-\lambda & 2 \\ 5 & -1-\lambda\\ \end{bmatrix}
[(2 - λ)(-1 - λ)] - 10 = 0
-2 - 2λ + λ + λ2 - 10 = 0
λ2 - λ - 12 = 0
λ2 - 4λ + 3λ - 12 = 0
λ(λ - 4) + 3(λ - 4) = 0
(λ - 4)(λ + 3) = 0
λ = 4, -3
Therefore, the eigenvalue will be 4, -3
Question 6: Find the eigenvalue of matrix A= \begin{bmatrix} -1& 8 \\ 0 & -1\\ \end{bmatrix}
Solution:
A-\lambda I= \begin{bmatrix} 2-\lambda & 2 \\ 5 & -1-\lambda\\ \end{bmatrix}
|A - λI| = 0
(-1 - λ)2 - 0 = 0
(λ + 1)2 = 0
λ = -1
Therefore, the eigenvalue will be -1
Similar Reads
How to find the Determinant of a Matrix?
Answer: The following steps are to be followed to find the Determinant of a Matrix Select any row or column. To find the determinant, we normally start with the first row.Determine the co-factors of each of the row/column items that we picked in Step 1.Multiply the row/column items from Step 1 by th
6 min read
Determinant of 4x4 Matrix | Examples and How to Find
Determinant of 4x4 Matrix: Determinant of a Matrix is a fundamental concept in linear algebra, essential for deriving a single scalar value from the matrix. 4x4 is a square matrix with 4 rows and 4 columns whose determinant can be found by a formula which we will discuss. This article will explore t
15+ min read
How to find the Diagonal of a Matrix?
British Mathematician Arthur Cayley was the first person to develop the algebraic aspect of the matrix. After that, Psychiat Heisenberg used matrices as a tool to explain his famous Quantum principle. The study of matrices originated while solving different types of simple and complex linear problem
6 min read
Eigen Decomposition of a Matrix
Eigen decomposition is a method used in linear algebra to break down a square matrix into simpler components called eigenvalues and eigenvectors. This process helps us understand how a matrix behaves and how it transforms data. For Example - Eigen decomposition is particularly useful in fields like
4 min read
How to Calculate Determinant of a Matrix in PHP?
Given a Matrix of size M*N, where N and M is an Integer, we need to Calculate calculate of a Matrix in PHP. Example: Input: [[1, 2],[2, 3]]Output: 6Explanation: (1*3)-(2*2)= 6-4= 2 There are several ways to find the determinant of the matrix in PHP which are as follows: Table of Content Using Recurs
4 min read
Determinant of Matrix with Solved Examples
The determinant of a matrix is a scalar value that can be calculated for a square matrix (a matrix with the same number of rows and columns). It serves as a scaling factor that is used for the transformation of a matrix.It is a single numerical value that plays a key role in various matrix operation
15+ min read
How to Find Column Space of a Matrix
The concept of the column space of any specific matrix may well be considered one of the simplest ideas in linear algebra and is, without doubt, one of the crucial ideas in the study of the solutions to linear systems and in the manner that promotes understanding of the effects of linear transformat
10 min read
Determinant of a Square Matrix
Determinant of a square matrix is the scalar value or number calculated using the square matrix. The determinant of square matrix X is represented as |X| or det(X). In this article we will explore the determinant of square matrix in detail along with the determinant definition, determinant represent
6 min read
Determinant of 2x2 Matrix
Determinant of a 2x2 Matrix A = [Tex]\begin{bmatrix} a&b \\ c&d \\ \end{bmatrix} [/Tex] is denoted as |A| and is calculated as |A| = [ad - bc]. It is used in solving various problems related to a matrix and is used in finding the Inverse, and Rank of 2Ã2 Matrix. In this article, we will lear
7 min read
Determinant of 3Ã3 Matrix
A 3 Ã 3 matrix is a square matrix with three rows and three columns, often used to organize numbers in math and related fields. It plays a key role in linear algebra, mainly when calculating the determinantâa single value that provides essential information about the matrix. This article will explai
12 min read