Given the following recurrence relation: $$ {a_{n+1}}={(a_{n})}^2-2 ,\\a_0=\frac{5}{2}$$ Prove that $\left \lfloor{a_{n}}\right \rfloor $ is a power of 2 for every natural number n, using recurrence equation transformations ( i.e. without induction).
2026-04-07 01:47:44.1775526464
Recurrence. Nonhomogeneous recurrence relation.
198 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Let us use the Ansatz that $\,a_n = b_n + b_n^{-1}\,$ which implies $\, a_n^2 = b_n^2 + b_n^{-2} + 2\,$ and hence $\,a_n^2 - 2 = b_n^2 + b_n^{-2}.\,$ Using the $\,a\,$ recurrence $\,a_{n+1} = a_n^2-2,\,$ we get that $\,b_{n+1} = b_n^2\,$ with $\,b_0 = 2^1.\,$ Solving this $\,b\,$ recurrence and, using the inequality $\,0 < b_n^{-1} < 1,\,$ we find that $\,b_n = 2^{2^n} = \lfloor a_n \rfloor.\,$ As a comment to the question notes, this is essentially a duplicate question.