AS=SΛ
because S has independent columns so S−1 exists, so
danger
Λ=S−1AS
This is Diagonalization.
We can also get a factorization of A
danger
A=SΛS−1
Power of a matrix
Now let's see how A=SΛS−1 helps us in calculating Ak for k={1,2,3,⋯}
We know that,
Axi=λixi;{xi is eigenvectorλi is eigenvalue
Now let's calculate eigenvectors and eigenvalues of A2. AAxi=λi(Axi) ⇒A2xi=λi2xi
So eigenvectors of A2 remains same.
But eigenvalues of A2 becomes λ2.
So eigenvectors of Ak remains same as the eigenvectors of A.
But eigenvalues of Ak becomes λk.
So now we can find power of matrices quickly, if we have the eigenvectors (independent) of that matrix.
When we call a matrix Astable?
info
A matrix A is stable if Ak→0 as k→∞.
And Ak→0 as k→∞if, ∣λi∣<1;∀i∈{1,2,⋯n}
When a matrix A is Diagonalizable?
info
Diagonalizable matrix has nindependent eigenvectors.
So A is diagonalizable if, all λ's are different. λi=λj;∀i=j
info
If all the eigenvalues are different then all the eigenvectors are independent.
info
But reverse is not true, independence of eigenvectors does not
implies that all eigenvalues are different.
note
Example
Say A=I3×3=⎣⎡100010001⎦⎤
So when we apply transformation of I nothing changes so every vector is an eigenvector for I.
But there is only one eigenvalue and that is 1.
uk+1=Auk
Say we have a vector u0 and a matrix(non-singular) A, with nindependent eigenvectors.
We iteratively apply transformation A on u0.
u lives in the column space of A, and A has nindependent eigenvectors
so we can say that u lives in the vector space spanned by these eigenvectors.
so u is the linear combination of these eigenvectors.
say the eigenvectors of A are x1,x2,⋯,xn
and eigenvalues of A are λ1,λ2,⋯,λn
So we can say that, u0=c1x1+c2x2+⋯+cnxn ⇒Au0=c1Ax1+c2Ax2+⋯+cnAxn ⇒Au0=c1λx1+c2λx2+⋯+cnλxn ⇒Aku0=c1λkx1+c2λkx2+⋯+cnλkxn ⇒Aku0=ΛkSc
Fibonacci sequence: 0,1,1,2,3,5,⋯
How can we find Fk for an arbitrary large k. Fk+2=Fk+1+Fk
Now let's write it in form of uk+1=Auk
say uk=[Fk+1Fk]
and uk+1=Auk
⇒uk+1=A[Fk+1Fk]
⇒A=[1110]
What are it's eigenvalues and eigenvectors.
note
det(A−λI)=∣∣1−λ11−λ∣∣
det(A−λI)=λ2−λ−1
for det(A−λI)=0 we get,
λ1=21+5
λ2=21−5
We get our eigenvaluesλ1,λ2. (A−λI)x=0
[1−λ11−λ]x=0
by solving it we get, x=[λ1]
So our eigenvectors are x1=[λ11],x2=[λ21]
Now we get our eigenvectors and eigenvalues. u lives in the vector space spanned by these eigenvectors.
so u is the linear combination of these eigenvectors.
we found the eigenvectors of Ax1,x2
and eigenvalues of A are λ1,λ2
So we can say that, u0=c1x1+c2x2 ⇒Au0=c1Ax1+c2Ax2 ⇒Au0=c1λ1x1+c2λ2x2
So,
info
uk=Aku0=c1(21+5)kx1+c2(21−5)kx2
Now let's find c1,c2.
we know u0=[F1F0]
⇒u0=[10]
And we know that u0=c1x1+c2x2 so,
u0=c1[λ11]+c2[λ21]
⇒c1[λ11]+c2[λ21]=[10]
Now we got system of equations,
c1λ1+c2λ2=1
c1+c2=0
by solving we get, c1=λ1−λ21 and c2=λ1−λ2−1