Given $x_0 = 1, y_0 = 2, z_0 = 2$ solve the following recurrence relation for $x_n, y_n, z_n, n \in \Bbb{N}$:
\begin{cases} x_{n+1} = \frac{1}{2}x_n + y_n + 3z_n, \\ y_{n+1} = y_n + \frac{3}{2}z_n, \\ z_{n+1} = -\frac{1}{2}y_n - z_n. \\ \end{cases}
What do I approach this case with? I believe I have to transform it into simple linear case where each $x_n, y_n, z_n$ is given by the previous value in order to be able to apply eigendecomposition.
Are my thoughts correct? If not, what is the preferred method here?
Thanks in advance.