I have a tri-diagonal matrix with a specific structure defined by parameters $T(a,b,\alpha)$. Do you how could I calculate eigenvalues and eigenvectors? I am familiar with theoretical results when $\alpha = 0$, but unfortunately this is not the case.
$$T(a,b,\alpha) = \begin{pmatrix} a+\alpha & b & 0 & 0 & 0 & \dots & 0 \\ b & a & b & 0 & 0 & \dots & 0 \\ 0 & b & a & b & 0 & \dots & 0 \\ \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \vdots & \\ 0 & 0 & 0 & 0 & \dots & b & a + \alpha \\ \end{pmatrix} $$
I.e. the $a + \alpha$ is only in the positions $T_{11}$ and $T_{nn}$.