Problem
Given the sequence where $a_1 = 3$ and $a_{n+1} = \sqrt{3a_n -2}$, show that it converges, and find the limit $\lim\limits_{n\to\infty}a_n$.
Progress
The way we are taught to solve these, is to say that if we let $x=\lim\limits_{n \to \infty} a_n $
$$\lim\limits_{n \to \infty} a_{n+1} = \sqrt{3x-2} = x$$
since $a_{n+1} = a_n$ as $n\to\infty$.
Solving this equation, we get that $x=1 \vee x=2$, but from there I have to figure out which.
A quick Python-script seems to show that it progresses asymptotically towards 2, and no lower. This is no proof, but a basis for a hypothesis at least.
Induction?
My next idea is a proof by induction, which summarizes as:
Hypothesis: $n \geq 1 \Rightarrow a_n > 2$. Holds for $n=1, 2$ by trial.
Then I want to show that $a_n > 2 \Rightarrow a_{n+1} > 2$, which is to say that if $\sqrt{3a_{n-1} - 2} > 2$ then $\sqrt{3a_n - 2} > 2$.
For the latter inequality, we can expand: $\sqrt{3a_n - 2} = \sqrt{3\sqrt{3a_{n-1}-2}-2} = \sqrt{9a_{n-1} - 8} = \sqrt{3a_{n-1}-2}\cdot \sqrt{\frac{9a_{n-1} - 8}{3a_{n-1}-2}} > 2$
Here is where I need some validation. In this final product, the first factor is greater than 2 by the initial trials, and the second factor is greater than 1 for all $a_{n-1} > 1$ (since it has a root at 8/9, and is strictly increasing).
Question
Does this proof hold? And are there other, simpler ways to conclude the same? Or was the hypothesis wrong in the first place?
$a_1=3$ and $a_2=\sqrt 7 \leq a_1$, assume if $a_{k+1} \leq a_k$ then
$$3a_{k+1} \leq 3a_k \implies 3a_{k+1} -2 \leq 3a_k -2 \implies \sqrt{(3a_{k+1} -2)} \leq \sqrt {(3a_k -2)} \implies a_{k+2} \leq a_{k+1} $$ so by induction, $a_n$ is decreasing.
if $a_1=3 \geq 2$ assume $a_k \geq 2 \implies 3a_k-2 \geq 4 \implies a_{k+1} \geq 2.$ So $a_n$ is monotonically decreasing and bounded below so by the Monotone convergent theorem it is convergent.
Let $\lim n \to \infty (a_{n+1}) = l = \lim n \to \infty (a_{n}) \implies l=2.$