How do I find the matrix exponential $e^{tA}$ with
$$A = \left(\begin{matrix} 2 & 8 \\ 0 & 2\end{matrix}\right)$$
The eigenvalue is 2 with multiplicity 2, but it yields only 1 eigenvector {${1, 0}$}, so the matrix isn't diagonalizable. I'm confused what to do. One option is to convert it into a Jordan form, but how do I do that?
Any help is appreciated. Seems like a simple problem, but it's been bugging me for a while.
This one is very simple. You have $$ A=2I+X, $$ where $$X=\begin{bmatrix}0&8\\0&0\end{bmatrix}.$$ Because the two matrix commute, we have $e^{t(2I+X)}=e^{2tI}e^{tX}$ (this fails in general for noncommuting matrices). As $X^2=0$, $$ e^{tX}=I+tX. $$ Then $$ e^{tA}=e^{2tI+tX}=e^{2tI}e^{tX}=\begin{bmatrix}e^{2t}&0\\0&e^{2t}\end{bmatrix}\,\begin{bmatrix}1&8t\\0&1\end{bmatrix} =\begin{bmatrix}e^{2t}&8te^{2t}\\0& e^{2t}\end{bmatrix}. $$