5

Let $\alpha$ be a (strictly) positive real number. Consider the following tridiagonal Toeplitz matrix $$ A=\alpha\begin{bmatrix} 0 & 1 & 0 &\cdots & 0\\ 1 & 0 & 1 &\ddots & \vdots \\ 0 & 1 & 0 & \ddots & 0\\ \vdots & \ddots & \ddots & \ddots & 1 \\ 0 & \cdots & 0 & 1 & 0 \end{bmatrix}. $$

My question. Does there exist a closed-form expression for $\exp(A)$?

I played around a little bit with the truncated series $\sum_{k=0}^N \frac{A^k}{k!}$ but I didn't manage to provide an answer to my question. Pointers to the literature are also welcome!

Ludwig
  • 2,269

1 Answers1

7

Hint (too long for a comment): tridiagonal Toeplitz matrices are known to have distinct eigenvalues, which can be explicitly calculated (see e.g. here and here). For the matrix in question, for example, the eigenvalues are $\lambda_k=2 \alpha \cos\left(\cfrac{k \pi}{n+1}\right)\,$, $k=1,2,\cdots,n$.

The matrix is therefore diagonalizable, and since the eigenvectors can also be explicitly calculated, it is possible to determine the invertible matrix $P$ and diagonal matrix $D$ such that $A=P\,D\,P^{-1}$.

Given that $\,A^n=P\,D^n\,P^{-1}\,$ it follows that $\,e^A=P\,e^D\,P^{-1}\,$ where $e^D$ is the diagonal matrix with $e^{\lambda_k}$ on the diagonal.

dxiv
  • 76,497
  • [+1} Good answer. I thought I had a shorter exact answer. This was not the case. – Jean Marie Jan 30 '17 at 20:03
  • @JeanMarie Thanks. Your idea could still work out for small matrices, since there would be only a few $N^i \cdot {N^\intercal}^j$ to pre-calculate, but it becomes more tedious for large $n$. – dxiv Jan 30 '17 at 20:21
  • @dxiv In fact, I had a bigger problem: $N$ and $N^T$ are not commuting matrices, $C:=NN^T-NN^T$ is almost a null matrix but for $C_{11}=1$ and $C_{nn}=-1...$ – Jean Marie Jan 30 '17 at 20:27
  • @JeanMarie You are right. Too bad, I'd have hoped there could be a simpler way. – dxiv Jan 30 '17 at 20:33