Given $x_1 = a$ and $x_2 = b$ find the values of $a, b \in \Bbb R, n\in\Bbb N$ for which the following recurrences converge (diverge): $$ \begin{align*} x_{n+2} &= 2x_{n+1} - x_n \tag1\\ x_{n+2} &= 4x_{n+1} - 3x_n\tag2\\ x_{n+2} &= -2x_{n+1} - x_n\tag3\\ x_{n+2} &= x_{n+1} + 2x_n\tag4\\ \end{align*} $$
$(1)$: $$ \begin{align} x_{n+2} &= 2x_{n+1} - x_n \iff \\ x_{n+2} - x_{n+1} &= x_{n+1} - x_n = \\ &= x_{n+1} - x_{n}\\ &= x_{n} - x_{n-1}\\ &\cdots\\ &= x_{2} - x_{1}\\ &= b - a \end{align} $$ Now taking the limit: $$ \lim_{n\to\infty}(x_{n+1} - x_{n}) = \lim_{n\to\infty}(a-b)=a-b $$ For this recurrence to be convergent $a$ must be equal to $b$, otherwise it doesn't satisfy Cauchy criteria, thus: $$ a = b \implies \exists \lim_{n\to\infty}x_n \\ a \ne b \implies \exists! \lim_{n\to\infty}x_n $$
$(2)$: $$ \begin{align} x_{n+2} &= 4x_{n+1} - 3x_n \iff\\ x_{n+2} - x_{n+1} &= 3(x_{n+1} - x_n) \\ &= 3^2(x_{n} - x_{n-1})\\ &\cdots \\ &= 3^{n-1}(x_{2} - x_{1})\\ &= 3^{n-1}(b - a) \end{align} $$
This case is similar to $(1)$: $$ b = a \implies \exists \lim_{n\to\infty}x_n\\ b \ne a \implies \exists! \lim_{n\to\infty}x_n $$
$(3)$: $$ \begin{align} x_{n+2} &= -2x_{n+1} - x_n \iff \\ x_{n+2} + x_{n+1} &= -(x_{n+1} + x_n) \\ &= (x_{n} + x_{n-1}) \\ &= -(x_{n-1} + x_{n-2}) \\ &\cdots\\ &= (-1)^{n-1}(x_2 + x_1) \\ &= (-1)^{n-1}(b + a) \\ \end{align} $$
In this case convergence is only possible if: $$ a + b = 0 \implies \exists \lim_{n\to\infty}x_n\\ a + b \ne 0 \implies \exists! \lim_{n\to\infty}x_n $$
$(4)$. I'm stuck with this one, not sure what transformations to apply. I could probably use generating functions or solve through a characteristic polynomial, but that is heavy machinery for such a simple case. I would also like to not apply any solutions involving matrices since i'm not very familiar with linear algebra yet.
Could you please verify the first three cases and either suggest a solution or give a hint for the last one? Thank you!