By Z.H. Fu
https://fuzihaofzh.github.io/blog/
Jordan Canonical Form is an important form of matrix, because not all matrices have the eigen decomposition. But it is guaranteed that all real matrices have Jordan canonical form decomposition.
This article gives an example to show that when a matrix cannot be diagonalized, it is still similar to some approximate diagonal form. We can construct varieties of approximate diagonal form, but the Jordan canonical form is the simplest.
We have
A=⎣⎢⎡4−11301−420⎦⎥⎤
We solve the equation AV=λv to get the eigen value and the eigenvectors. We get:
λ1=2, v1=(2,0,1)Tλ2=1, v2=(−1,1,0)T
We find that the number of eigenvectors is 2. It is less than the dimension of the matrix A, which means that the eigen vector space cannot span the whole space of A. Thus, we should add more vectors into the eigenvectors to span the whole space. So the prerequisite for the selection of complementary vectors is that it should not in the space spanned by existing vectors.
We select v3=(1,2,2)T. It is not in the space spanned by v1 and v2. So the decomposition of A can be written as A=PDP−1, where
P=(v1,v2,v3)=⎣⎢⎡201−110122⎦⎥⎤,P−1=⎣⎢⎡22−123−1−3−42⎦⎥⎤
Since A=PDP−1⇒AP=PD⇒
A[v1v2v3]=[v1v2v3]⎣⎢⎢⎢⎡21⋮a3⋮⎦⎥⎥⎥⎤
∵Av3=⎣⎢⎡233⎦⎥⎤=v1+v2+v3
∴a3=(1,1,1)T
∴ we have a decomposition of A as:
A=⎣⎢⎡201−110122⎦⎥⎤⎣⎢⎡21111⎦⎥⎤⎣⎢⎡22−123−1−3−42⎦⎥⎤
Note that the Jordan canonical form is
A=⎣⎢⎡−110101201⎦⎥⎤⎣⎢⎡1112⎦⎥⎤⎣⎢⎡0−111−1102−1⎦⎥⎤
Compare our decomposition and the Jordan canonical form, we can get the following conclusion:
- A matrix can be decomposed even though it have not enough eigenvectors;
- Among the varieties of decompositions, Jordan is the simplest.