Please do check if my solution is correct. Consider the sequence $\{a_n\}$ defined recursively by $a_1 = \frac{3}{2}$ and $a_{n+1} = a_n^2 -2a_n +2, \quad n\ge 1.$
Show that the sequence is decreasing. Here is my attempt.
It suffices to show that $a_n- a_{n+1} > 0, n\ge 1$.
$$a_n- a_{n+1}=a_n-[a_n^2 -2a_n +2]= -a_n^2+3a_n-2$$ $$=-[a_n^2-3a_n+2]=-[a_n-2][a_n-1]$$
Observe that $a_n-2 <0$ for $n\ge 1$ and $a_n-1 > 0$ for $n>1$, then the product $[a_n-2][a_n-1] <0$ which implies that $-[a_n-2][a_n-1]$ is positive.
Hence $$a_n- a_{n+1}=-[a_n^2-3a_n+2]=-[a_n-2][a_n-1]>0.$$ Do I make any sense? Thanks for helping me.