I encounter the following problem: Given nonlinear recurrence relation : $b_n=(\frac{1}{2}b_{n-1}+\frac{1}{2})^2$ with $b_0=\frac{1}{2}$, we want to evaluate the $\lim_{n\to\infty} (b_n)^{2n}$.
Firstly, I use MATLAB to verify this numerically, and the result should be $e^{-8}$.
I know it is not easy to find a close form of a nonlinear recurrence relation(here it is a quadratic map) in general. Here, we can see that $\lim_{n\to\infty}b_n=1$. Indeed, assume $\lim_{n\to\infty}b_n=L$, and substitute it into the recurrence relation. We will get:$L=(\frac{1}{2}L+\frac{1}{2})^2$, and the solution is $L=1$. Although maybe we cannot find the exact form of $b_n$, is it possible for us to find how fast it converges to $1$?
Thanks for any hint.