Processing math: 100%

Diagonalization and Powers of A

June 9, 2019

A=SΛS1

Diagonalize a matrix is

A=SΛS1

Suppose 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ΛS1

Still, 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=λ2x

This 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ΛS1SΛS1=SΛ2S1

This 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=Aku0

If we can, somehow, write u0 into a combinations of A’s eigenvectors, then

u0=c1x1+c2x2+...+cnxn

And:

uk=Aku0=c1λk1x1+c2λk2x2+...+cnλknxn=SΛkc

In 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+Fk

If we manually add another equations:

Fk+2=Fk+1+FkFk+1=Fk+1

We can rewrite this into matrix form:

[Fk+2Fk+1]=[Fk+1FkFk+10]

By letting uk=[Fk+1Fk], we can:

uk+1=[1110]uk

Thus A=[1110]. The eigenvalue of the matrix is λ1=12(1+5),λ2=12(15). 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)

Diagonalization and Powers of A - June 9, 2019 - Ruizhen Mai