Explore for convergence the following recurrence: $$ x_{n+1} = (1-x_n)^2\\ x_1 = {1\over 2}\\ n\in\Bbb N $$
To show a sequence is convergent it suffices to show it is bounded and monotonic. Obviously the the sequence is bounded by $1$ and $0$: $$ 0 \le x_n \le 1 $$
Check whether the sequence is monotonic: $$ {1\over 2} = x_1 > x_2 = {1\over 4} $$
Put $P(n): x_n > x_{n+1}\forall n\in\Bbb N$. $P(1)$ is true. Assume $P(n)$ is true. Then: $$ x_{n+1} < x_n\\ -x_{n+1} > -x_n \\ 1 - x_{n+1} > 1 - x_n \\ (1 - x_{n+1})^2 > (1 - x_n)^2 \\ x_{n+2} > x_{n+1} $$
showing the induction hypotheses doesn't hold. However if we put it the following way: $$ x_{n+1} < x_n \\ x_{k+1} - 1 < x_n - 1 \\ (x_{k+1} - 1)^2 < (x_n - 1)^2 \\ (1 - x_{k+1})^2 < (1 - x_n)^2 \\ x_{n+2} < x_{n+1} $$
which completes the induction.
Clearly that is impossible. I believe the mistake is in the squaring step. Apparently there is a veil before my eyes preventing me from spotting it. What went wrong with the two cases?
You can not do $x_{n+1} - 1 < x_n - 1 \\ \implies (x_{n+1} - 1)^2 < (x_n - 1)^2 $
because both LHS and RHS of inequalities is negative.
For eg. $-1 > -2$ but $1^2 < 2^2$