The characteristic equation of a matrix is an important tool to study a matrix. Using this equation, we can find the eigenvalue with its corresponding eigenvectors to analyse a matrix. In this post, we will learn about the characteristic equation of a matrix.
Definition
Let A be an n×n matrix over a field F. The the equation
det(A-xIn) = 0
is called the characteristic equation of A where In denotes the n×n identity matrix.
Note:
The polynomial det(A-xIn) is called the characteristic polynomial of A, and it is usually denoted by ΨA(x).
If ΨA(x) = c0xn + c1xn-1 + …+cn-1x +cn is the characteristic polynomial of an n×n matrix A = (aij), then we have
ΨA(x) = det(A-xIn)
⇒ c0xn + c1xn-1 + …+cn-1x +cn = $\begin{vmatrix} a_{11}-x & a_{12} & \cdots & a_{1n}\\ a_{21} & a_{22}-x & \cdots & a_{2n}\\ \cdots & \cdots & \cdots & \cdots \\ a_{n1} & a_{n2} & \cdots & a_{nn}-x \end{vmatrix}$.
From this equality, we obtain that
c0 = (-1)n cr = (-1)n-r × sum of the principal minors of A of order r. |
In particular, the coefficients c1 and cn are given as follows:
c1 = (-1)n-1 (a11 + a22 + … +ann) = (-1)n-1 trace(A).
cn = det(A).
Example
The characteristic polynomial of I2 = $\begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}$ is given by
det(I2 – xI2) = 0
⇒ det $\begin{pmatrix} 1-x & 0 \\ 0 & 1-x \end{pmatrix}$ = 0
⇒ (1-x)2 = 0
⇒ 1-2x+x2 = 0
So 1-2x+x2 = 0 is the characteristic equation of the 2×2 identity matrix I2.
Also Study:
Engineering Mathematics HomePage
This article is written by Dr. Tathagata Mandal, Ph.D in Mathematics from IISER Pune (Algebraic Number Theory). Thank you for visiting the website.