Powers of a matrix using eigen-vectors

42 Views Asked by At

Represent a vector as linear combination of eigen-vectors: $$u_0=c_1x_1+....c_nx_n$$ Now, $$Au_0=c_1\lambda_1x_1+....c_n\lambda_nx_n$$ where $\lambda$ is eigen-value. $Ax_i=\lambda_ix_i$ since $\lambda_i$ and $x_i$ are eigen-value and vector.

Why is this true? $$A^{100}u_0=c_1\lambda_1^{100}x_1+....c_n\lambda_n^{100}x_n$$

2

There are 2 best solutions below

0
On

The way you're working the easiest way to go is by induction:

$$A^2u_0=A(c_1\lambda_1x_1+...+c_n\lambda_nx_n)=\sum_{k=1}^nc_k\lambda_k Ax_k=\sum_{k=1}^nc_k\lambda_k^2x_k$$

and etc.

Using similarity we could show the above with diagonal matrices and stuff.

0
On

You have: $$Au_0=c_1\lambda_1x_1+....c_n\lambda_nx_n,$$

then $$A^2u_0=A(Au_0)=c_1\lambda_1A(x_1)+....c_n\lambda_nA(x_n)=c_1\lambda_1^2x_1+....c_n\lambda_n^2x_n.$$

Now repeat the same argument other $98$ times.