Matrix exponential of a simple bidiagonal matrix

648 Views Asked by At

I am interested in finding an expression (closed form or recursive) for the matrix exponential of this banded matrix:

$$ \begin{pmatrix} 0 & 1 & 0 & 0 & \cdots & 0 & 0 \\ 0 & a_1 & 1 & 0 & \cdots & 0 & 0 \\ 0 & 0 & a_2 & 1 & \cdots & 0 & 0 \\ 0 & 0 & 0 & a_3 & \cdots & 0 & 0 \\ \vdots & \vdots & \vdots & \vdots &\ddots&\vdots&\vdots \\ 0 & 0 & 0 & 0 & \cdots & a_{n-1} & 1 \\ 0 & 0 & 0 & 0 & \cdots & 0 & a_n \end{pmatrix} $$

For simplicity, assume that $a_k>0~\forall k$. I am quite certain one must exist having played around with it for a while, and looking at the solution for small values of $n$.

Has anyone seen this structure before? Does it have a name? Do you know if there is a solution published somewhere?

If you go ahead and compute the answer for small values of $n$, you get:

$$ \exp\left( \begin{array}{cc} 0 & 1 \\ 0 & a_1 \\ \end{array} \right) = \left( \begin{array}{cc} 1 & \frac{-1+e^{a_1}}{a_1} \\ 0 & e^{a_1} \\ \end{array} \right) $$

$$ \exp \left( \begin{array}{ccc} 0 & 1 & 0 \\ 0 & a_1 & 1 \\ 0 & 0 & a_2 \\ \end{array} \right) = \left( \begin{array}{ccc} 1 & \frac{-1+e^{a_1}}{a_1} & \frac{-e^{a_2} a_1+a_1+e^{a_1} a_2-a_2}{a_1 \left(a_1-a_2\right) a_2} \\ 0 & e^{a_1} & \frac{e^{a_1}-e^{a_2}}{a_1-a_2} \\ 0 & 0 & e^{a_2} \\ \end{array} \right) $$

Unfortunately, $n=3$ is to large to print here, but a pattern remains.

1

There are 1 best solutions below

4
On BEST ANSWER

It suffices to diagonalize $A$ (if the $(a_i)$ are pairwise distinct). I change slightly the notation $A=D+J_n$ where $D=diag(a_1,\cdots,a_n)$ and $J_n$ is the nilpotent Jordan block of dimension $n$. $A=PDP^{-1}$ where the first row of $P$ is

$1,-\dfrac{1}{a_1-a_2},\dfrac{1}{(a_1-a_3)(a_2-a_3)},-\dfrac{1}{(a_1-a_4)(a_2-a_4)(a_3-a_4)},\cdots$

We obtain the other rows of $P$ by circular permutation along the diagonals. Finally $e^A=Pdiag(e^{a_1},\cdots,e^{a_n})P^{-1}$ where the first row of $P^{-1}$ is

$1,\dfrac{1}{a_1-a_2},\dfrac{1}{(a_1-a_2)(a_1-a_3)},\dfrac{1}{(a_1-a_2)(a_1-a_3)(a_1-a_4)},\cdots$

We obtain the other rows of $P^{-1}$ by circular permutation along the diagonals.