i wanted to know if it was possible to raise a matrix to a matrix and i wanted to confirm if i have it. i tested it out with numbers and notation and i want to know if i'm right. $$ x =\left [ \begin{matrix} 1 & 1 \\ 0 & 1 \\ \end{matrix} \right ] $$
$$ \left [ \begin{matrix} 2 & 1 \\ 1 & 2 \\ \end{matrix} \right ] ^ x $$
now, i use e^ln(x) = x, and i diagonalize my matrix to take an easy ln.
$$ e^(ln( \left [ \begin{matrix} 2 & 1 \\ 1 & 2 \\ \end{matrix} \right ] ^ x )) $$ $$ e ^ (x*ln(diag(\left [ \begin{matrix} 2 & 1 \\ 1 & 2 \\ \end{matrix} \right ])) $$ my diag of my matrix is as follows: $$ \left[\begin{matrix} 1 & 0\\ 0 & 1\\ \end{matrix}\right] $$ natural log of a diag matrix is as follows $$ \left[\begin{matrix} ln(1)=0 & 0\\ 0 & ln(1)=0\\ \end{matrix}\right] $$ $$ x * \left[\begin{matrix} 0 & 0\\ 0 & 0\\ \end{matrix}\right] = \left[\begin{matrix} 0 & 0\\ 0 & 0\\ \end{matrix}\right] $$ than i have $$ e^\left[\begin{matrix} 0 & 0\\ 0 & 0\\ \end{matrix}\right] $$ and if that wasn't a zero matrix id apply the Taylor series. did i do that right? would my next step be correct. i'd love to know. thank in advance!!