I'm following a study guide for an exam and the very first question is:
Show that the sequence defined by $a_{n+1} = \sqrt{2+\sqrt{a_n}}$ with $a_0 = \sqrt{2}$ is increasing, bounded and calculate it's limit as $n \to \infty$.
The first parts are easy enough, and the proof for boundedness shows that, since $a_n < 2$ for all $n$, then: $$a_k < 2$$ $$2 + \sqrt{a_k} < 2 + \sqrt{2}$$ $$a_{k+1} = \sqrt{2+\sqrt{a_n}} < \sqrt{2+\sqrt{2}}$$
This appears to be a pretty good bound for the sequence, but the limit should also be a fixed point for the sequence. Using this and performing some polynomial division, we get: $$ P(x) = (x^2 - 2)^2 - x = (x-1)(x^3 + x^2 - 3x - 4)$$
Performing the recursion on the computer ( and checking with Wolfram) we get a limit $L \approx 1.831177207208337$. However, $\sqrt{2+\sqrt{2}} \approx 1.8477590650225735$. How am I supposed to get a closed form solution for this thing during a timed exam? Am I missing something?