I'm kinda new to recursive sequences and I'm struggling with an excercise. I apologize in advance for the long question and my lack of knowledge on how to approach such problems.
Let $x_n$ be defined such that $x_1 = 1$, $x_{n+1} = \frac{x_n^2+1}5$
And there there are 4 things I have to prove/show,
(1) Show that $x_n$ $\leq$ $1$ for all $n$.
I'm not sure if I can prove this directly or by induction? What would be best for this? I don't know how to approach this when it's defined recursively.
(2) Show that $\lvert x_{n+1} - x_n \rvert$ $\leq (\frac{2}{5})^{n-1}$
I'm not sure but could I use $\lvert\frac{x_{n+1}^2+1}{5}$ $-$ $\frac{x_n^2+1}{5}\rvert$$\leq (\frac{2}{5})^{n-1}$ and then try to solve this. How do i deal with the $x_n$?
(3) Show that $x_n$ is a Cauchy-sequence.
I know that a Cauchy sequence is defined as : For every positive real number $\varepsilon$, there is a positive integer $N$ such that for all natural numbers $m, n \gt N$: $\lvert x_m - x_n \rvert \lt \varepsilon$. Can I apply this definition directly in this sequence and the go on from there?
(4) Calculate the limit of $x_n$.
This should be straightforward if it weren't a recursively defined sequence.
If I however, calculate the first few elements of the sequence I get:
$x_1 = 1$, $x_2 = \frac{2}{5}$, $x_3 = \frac{29}{125}$, $x_4 = \frac{841}{15625}$ $\ldots$
This approaches $0$ (I'm guessing) since the second term is smaller than $1$. And since a square of a number less than $1$ is always smaller than the original number, $\lim \limits_{n \to \infty}$ $= 0$.
How can I prove this correctly without just trying different numbers?
Thank you in advance!