0

I am trying to compute the matrix exponential $e^{At}$ of the nilpotent matrix

$$ A = \begin{pmatrix} 0 & 0 \\ 1 & 0 \end{pmatrix}$$

I have computed the eigenvalues, which are $\lambda=0$ with algebraic multiplicity $2$, and the generalized eigenvectors are

$$ u_1 = \begin{pmatrix} 0 \\ 1 \end{pmatrix}, \qquad u_2 = \begin{pmatrix} 1 \\ 0 \end{pmatrix}$$

How do I proceed now for computing the matrix exponential?

dcr
  • 97
  • 4

1 Answers1

3

The solution for this precise $A$ is written in the above remarks.

More general, if you know that the set of all generalized eigenvectors still spans the whole space, you can still "pseudo-diagonalize" such a matrix. Hereby, by transforming into a suitable basis, you don't get rid of all off-diagonal entries, but still you can explicitly compute the exponentials. Maybe you want to look up

https://en.wikipedia.org/wiki/Jordan_normal_form

nicrot000
  • 1,507
  • So you mean I could do somehthing like : $e^{At}=Te^{Jt}T^{-1}$ where $J$ is the Jordan canonical form? – dcr May 30 '21 at 19:26
  • Precisely. Then the exponential preserves the Block structure and you can compute the exponential of a Jordan block. – nicrot000 May 31 '21 at 07:02