I have the following recursive relation (sequence):
\begin{align} a_1 = \sqrt{2}, \quad a_{n+1} = \sqrt{2 + a_n} \end{align}
My Try:
I'm a little skeptical of my manipulations near the end but it looks like it works out.
Base Case: Let $n=1$ then \begin{align} &a_2 = \sqrt{2 + a_1} \\ &a_2 < 2 \\ &\sqrt{2 + \sqrt{2}} < 2 \end{align} The base case holds.
Induction hypothesis: Let $n=k$
$$a_1 = \sqrt{2} \quad a_{k+1} = \sqrt{2 + a_k} \quad a_{k+1} = \sqrt{2}$$
Induction Step:
Now we have to prove that $a_{k+2} < 2$. Let $n=k+1$. \begin{align} a_{k+2} &= \sqrt{2 + a_{k+1}} \\ \implies a_{k+2} &= \sqrt{2 + \sqrt{2 + a_k}} \\ \end{align}
Now we have to show that $a_{k+2} < 2$. \begin{align} a_{k+2} &< 2\\ \sqrt{2 + \sqrt{2 + a_k}} &< 2\\ 2 + \sqrt{2 + a_k} &< 4 \\ \sqrt{2 + a_k} &< 2 \\ \end{align} Q.E.D
Are my steps correct?
Thanks for your time!