3

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.

Jaynot
  • 737
  • Observe that a_n − 2 < 0 for n ≥ 1 and a_n − 1 > 0 for n > 1. Both are true, but you can't just state them, you need to prove them. Hint: the initial condition $a_1 = 3/2$ does matter. – dxiv Jan 27 '17 at 01:39

2 Answers2

2

It appears $a_{n+1}=(a_n-1)^2+1$ so that $a_{n+k} = (a_n-1)^{2^k}+1$, showing that $a_n= 1+2^{-2^{n-1}}$ which is clearly decreasing.

Adam Hughes
  • 36,777
1

I am not so sure why you wouldn't do this, but prove by induction that with $a_1=\frac32$, then

$$a_n=1+\frac1{2^{2^{n-1}}}$$

whereupon showing that it is monotone decreasing is easy.