Computing the matrix exponential for a Jordan matrix

84 Views Asked by At

How can I compute $e^{At}$ where $A = J_{3}(5)$? That is,

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

Using this, how can I write down a basis for the space of solutions to the differential system $dx/dt = Ax$?

I computed the characteristic polynomial $(-\lambda + 5)^3$, which has roots at $\lambda = 5$ with multiplicity $3$. Hence, we can write

$$e^{At} = \sum_{k=0}^{n - 1}c_{k}A^{k},$$

where the $c_{k}'s$ are determined by

$$e^{\lambda_{i}t} = \sum_{k=0}^{n-1}c_{k} \lambda_{k}.$$

So,

$$e^{5t} = c_{0}5 + c_{1}5 + c_{2}5$$

I got stuck from here. I wrote the first sum explicitly as

$$e^{At} = c_0A^{0} + c_1A^{1} + c_{2}A^{2},$$

but I got nowhere. I would really appreciate some help.

2

There are 2 best solutions below

5
On

Since$$A=\begin{bmatrix}5&0&0\\0&5&0\\0&0&5\end{bmatrix}+\begin{bmatrix}0&1&0\\0&0&1\\0&0&0\end{bmatrix}$$and since these two matrices commute,$$e^A=\exp\left(\begin{bmatrix}5&0&0\\0&5&0\\0&0&5\end{bmatrix}\right)\exp\left(\begin{bmatrix}0&1&0\\0&0&1\\0&0&0\end{bmatrix}\right).$$Can you take it from here?

1
On

Write $A$ as

$$A=S+N= \begin{pmatrix} 5&0&0\\ 0&5&0\\ 0&0&5 \end{pmatrix}+ \begin{pmatrix} 0&1&0\\ 0&0&1\\ 0&0&0 \end{pmatrix} $$

namely write $A=S+N$, where $S$ is the semisimple part of $A$ and $N$ is the nilpotent part of $A$. It easy to check that $[S,N]=0.$

Now: $$e^A=\sum_\Bbb N\frac{1}{n!}A^n$$

hence

$$e^{A}=e^{S+N}=\sum_{\Bbb N}\frac{1}{n!}(S+N)^n=\sum_{\Bbb N}\sum_{k=1}^n\frac{1}{n!}{{n}\choose{k}}S^kN^{n-k}=\sum_{\Bbb N}\sum_{k=1}^n\frac{1}{k!(n-k)!}S^kN^{n-k}=e^Se^N$$

Since $N^2=0$, you have

$$e^{S}=\begin{pmatrix} e^5&0&0\\ 0&e^5&0\\ 0&0&e^5 \end{pmatrix}$$

and

$$e^N=\begin{pmatrix} 1&1&\frac12\\ 0&1&1\\ 0&0&1 \end{pmatrix}$$

then $$e^{A}=e^{S+N}=e^Se^N= \begin{pmatrix} e^5&e^5&\frac{e^5}{2}\\ 0&e^5&e^5\\ 0&0&e^5 \end{pmatrix}$$