Diagonalization and Powers of A
June 9, 2019
A=SΛS−1
Diagonalize a matrix is
A=SΛS−1Suppose we have n independent eigenvectors, and we put them into the columns matrix S. So let’s just call this matrix the eigenvector matrix. What happen we do AS? (λ is the eigenvalue)
AS=A[x1x2...]=[λ1x1λ2x2...]=[x1x2...]⏟S[λ10...0λ2............]⏟ΛAnd we call the matrix filled with eigenvalues the eigenvalue matrix. What we have right now is
AS=SΛSince we have n independent eigenvalues, we can invert the matrix S, writing it to the right hand side
A=SΛS−1Still, it’s possible that there’re some small number of matrices that do not have independent eigenvalues, as mentioned in the end of the last note.
The sufficient and necessary condition (if and only if) for matrix A to be diagonalizable is it has n linearly independent eigenvectors (n is just A’s size).
Square eigenvalues
If Ax=λx, then
Ax=λAx=λ2xThis is saying if the matrix is squared, the eigenvalues will get squared as well but the eigenvectors remain. We can also use the factorization learned above
A2=SΛS−1SΛS−1=SΛ2S−1This is true for any kth power.
Right now we can say A is sure to be diagonalizable if it has all the λ’s different. But same λ does not mean the matrix is not diagonalizable.
Difference Equation uk+1=Auk
Let’s have a difference equation uk+1=Auk, and rewrite it into
uk=Aku0If we can, somehow, write u0 into a combinations of A’s eigenvectors, then
u0=c1x1+c2x2+...+cnxnAnd:
uk=Aku0=c1λk1x1+c2λk2x2+...+cnλknxn=SΛkcIn general, there’re two types of questions. One is solve the Markov chain matrices to find the steady state (note 24), where we need to solve π=Pπ; in this setting, the transition matrix P:=A is only to the 1st power (i.e. no exponential), we can just find the eigenvalues and then eigenvectors of A, and using the eigenvectors to find the coefficients c1,c2,…. The other type is we have Ak difference equations. This is similar, we also just need to be find the eigenvalues of A (not Ak) and then take it to the kth power.
Fibonacci Sequence
Fibonacci sequence is
Fk+2=Fk+1+FkIf we manually add another equations:
Fk+2=Fk+1+FkFk+1=Fk+1We can rewrite this into matrix form:
[Fk+2Fk+1]=[Fk+1FkFk+10]By letting uk=[Fk+1Fk], we can:
uk+1=[1110]ukThus A=[1110]. The eigenvalue of the matrix is λ1=12(1+√5),λ2=12(1−√5). And the eigenvectors are x1=[λ11],x2=[λ21]. And we know u0=[10]. What’s left is to find out the right combination c1, c2. Note we only have λ1, λ2 two eigenvalues, so we only have two terms from (2).
c1x1+c2x2=[10]The important idea here is that eigenvalues are dominating the growth. (Note that because x1,x2 are independent, they span the space, we can always find such combination c1,c2)