I just solved another problem but my result is different from the solution and I suspect this could be a mistake in the solution.
Can anyone confirm that this is a mistake in the solution?
The matrix $J$ is given as follows:
$$ J = \begin{pmatrix} -3 & 1 & 0\\ 0 & -3 & 0 \\ 0 & 0 & -1 \end{pmatrix} $$
and the matrix exponential is given as follows:
$$\exp(t J) = \begin{pmatrix} e^{-3t} & t e^{-3t} & 0\\ 0 & e^{-3t} & 0 \\ 0 & 0 & e^{-t} \end{pmatrix} $$
But it should be:
$$ \left( \begin{matrix} e^{-3t} & e^t & 1\\ 1 & e^{-3t} & 1\\ 1 & 1 & e^{-t} \end{matrix} \right)$$
Right? Because $e^{t 0} = 1$ and $e^{1t} = e^t$.