$A =\left [ \begin{matrix} 0 & 0 & 0 & 1 \\ 0 & 1 & 0 & 0 \\ 0 & 2 & 1 & 0 \\ 1 & 0 & 0 & 0 \\ \end{matrix} \right ] $
I have to find $e^{xA}$ by definition.
$A^1 =\left [ \begin{matrix} 0 & 0 & 0 & 1 \\ 0 & 1 & 0 & 0 \\ 0 & 2 & 1 & 0 \\ 1 & 0 & 0 & 0 \\ \end{matrix} \right ] $,$A^2 =\left [ \begin{matrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 4 & 1 & 0 \\ 0 & 0 & 0 & 1 \\ \end{matrix} \right ] $,$A^3 =\left [ \begin{matrix} 0 & 0 & 0 & 1 \\ 0 & 1 & 0 & 0 \\ 0 & 6 & 1 & 0 \\ 1 & 0 & 0 & 0 \\ \end{matrix} \right ] $...
Then, $A^n =\left [ \begin{matrix} 0 & 0 & 0 & 1 \\ 0 & 1 & 0 & 0 \\ 0 & 2n & 1 & 0 \\ 1 & 0 & 0 & 0 \\ \end{matrix} \right ]$ for odd $n$
, $A^n =\left [ \begin{matrix} 1 & 0 & 0 & 0 \\ 0 & 1 & 0 & 0 \\ 0 & 2n & 1 & 0 \\ 0 & 0 & 0 & 1 \\ \end{matrix} \right ] $ for even $n$
For odd $n$:
$e^{xA}=\left [ \begin{matrix} 0 & 0 & 0 & e^x \\ 0 & e^x & 0 & 0 \\ 0 & 2xe^x & e^x & 0 \\ e^x & 0 & 0 & 0 \\ \end{matrix} \right ]$
For even $n$:
$e^{xA}=\left [ \begin{matrix} e^x & 0 & 0 & 0 \\ 0 & e^x & 0 & 0 \\ 0 & 2xe^x & e^x & 0 \\ 0 & 0 & 0 & e^x \\ \end{matrix} \right ]$
Is it correct ?
How can I find the general $e^{xA}$? Is it the sum of both ?
Thanks !
You've done well, but you stumbled a little at the last hurdle. Consider the following:
$$\begin{eqnarray}e^{xA} & = & \sum_{n = 0}^\infty \frac{x^n A^n}{n!} \\ & = & \sum_{n \text{ even}} \frac{x^n A^n}{n!} + \sum_{n \text{ odd}} \frac{x^n A^n}{n!} \\ & = & \sum_{k = 0}^\infty \frac{x^{2k} A^{2k}}{(2k)!} + \sum_{k = 0}^\infty \frac{x^{2k+1} A^{2k+1}}{(2k+1)!} \end{eqnarray}$$
What you did was nearer to $\sum_{k=0}^\infty \frac{x^k A^{2k}}{k!}$ for the even terms and similarly for the odd terms, but notice that this doesn't line up at all.
I won't give the final answer, but as mentioned in the comments the sum of the even terms of the expansion of $e^x$ gives you $\cosh x$ and the sum of the odd terms gives you $\sinh x$, which should be enough for you to get a final answer.