What kind of matrix is it?
Suppose that I want to compute $$\begin{bmatrix}a & 2 \\ 0 & 1\end{bmatrix}^n \vec v$$ or solve a (inhomogenous) recurrence, $v^2 = av+2$. I must eigendecompose everything.
The determinant $$\begin{vmatrix}a-\lambda & 2 \\ 0 & 1-\lambda\end{vmatrix} = 0$$ yeilds characteristic equation $(a-\lambda)(1-\lambda) = 0$ with roots $\lambda_1=a$ and $\lambda_2=1$.
The eigenvalues are distinct and everything should be ok. However, when I plug into
$$\begin{bmatrix}a & 2 \\ 0 & 1\end{bmatrix} \begin{bmatrix}e_1 \\ e_2\end{bmatrix} = \lambda\begin{bmatrix}e_1 \\ e_2\end{bmatrix},$$ that is,
$$ \begin{cases} a e_1 + 2e_2 &= \lambda e_1 \\ e_2 = \lambda e_2 \end{cases}$$
implies that only $\lambda = 1$ is a valid eigenvalue. Otherwise, second equality breaks down. What happens to the first eigenvalue, $a$?
Now, all eigenvectors are identical up to the constant factor. This means that we can choose one component(or coordinate?) of eigenvector arbitrarily. Let's assign $e_2 = 1$. This yeilds $a e_1 + 2 = 1 \cdot e_1$ or, $e_1 = 2/(1-a)$ and the eigendecomposition is
$$\begin{bmatrix}a & 2 \\ 0 & 1\end{bmatrix} \begin{bmatrix} 2/(1-a)\\ 1\end{bmatrix} = 1 \begin{bmatrix}2/(1-a) \\ 1\end{bmatrix}.$$
However, because there is only one eigencouple, I have a difficulty decomposing arbitrary 2-dimensional vector $\vec v$ into basis $\begin{bmatrix}e_1 & e_2\end{bmatrix}^T = \begin{bmatrix}2/(a-1) & 1\end{bmatrix}^T$ because there is only one vector in the basis.
So, I conclude the matrix of this kind is special, despite it has two distinct eigenvalues. Therefore, I ask, what kind of matrix is it? Might be you can say why eigendecomposition cannot be used to solve nonhomogenous recurrences?