$ A^n = AAA..A$
Here I simply do the Power Operation of a Matrix A.
Is there any general form to express ij-th component of this n-th powered Matrix?
$ (A^n)_{ij} = A_{i?}+...+A_{?j}?$
$ A^n = AAA..A$
Here I simply do the Power Operation of a Matrix A.
Is there any general form to express ij-th component of this n-th powered Matrix?
$ (A^n)_{ij} = A_{i?}+...+A_{?j}?$
Suppose $A$ has size $m\times m$. Without further structure, the direct formula is: $$ (A^n)_{i,j} = \sum_{l_1=1}^m\sum_{l_2=1}^m\cdots\sum_{l_{n-1}=1}^m A_{i,l_1}A_{l_2,l_3}\cdot\ldots\cdot A_{l_{n-2},l_{n-1}}A_{l_{n-1},j}= \sum_{l_1,\ldots,l_{n-1}=1}^m A_{i,l_1}A_{l_2,l_3}\cdot\ldots\cdot A_{l_{n-2},l_{n-1}}A_{l_{n-1},j}.$$ This can easily be proved by induction over $n\geq 1$. For $n=1$, it is clear. Suppose it is true for $n$, then \begin{align*} (A^{n+1})_{i,j} &= \sum_{l_n=1}^m (A^n)_{i,l_n}A_{l_n,j}\\ &= \sum_{l_n=1}^m \bigg(\sum_{l_1,\ldots,l_{n-1}=1}^m A_{i,l_1}A_{l_2,l_3}\cdot\ldots\cdot A_{l_{n-2},l_{n-1}}A_{l_{n-1},l_n}\bigg)A_{l_n,j}\\ &= \sum_{l_1,\ldots,l_{n}=1}^m A_{i,l_1}A_{l_2,l_3}\cdot\ldots\cdot A_{l_{n-1},l_{n}}A_{l_{n},j}. \end{align*}
Consider the diagonalization of $A=PVP^{-1}$ where $V$ contains the eigenvalues of $A$ and $P$ the eigenvectors. Then, $A^n=PV^nP^{-1}$. From this, you can read the $ij$th component of $A^n$.