Prove that infinite recursive sequence has limit and calculate it.
$x_{1}=0, x_{2}=1$
$x_{n+2}=\frac{1}{2}(x_{n}+x_{n+1})$
I've tried to separate it to even and odd partial series and it looks like one of them is increasing and another is decreasing. But I can't prove that they are increasing and decreasing, because I don't know how to express $x_{n}$ from a recurrence relation.
What should I do for example with $x_{n+1}$ when I work with the even partial series?
And that is why I can't calculate the limits too, because I need to express somehow $x_{n}$.
This is "easily" solvable if you interpret the meaning of this recurrence formula!
$x_{n+2} = \frac12(x_{n+1} + x_n)$ is the same as saying that $x_{n+2}$ is the average of the last two terms! Because $x_0 = 0$ and $x_1 = 1$ we can see that $x_2 = \frac12$, $x_3 = \frac34$, $x_4 = \frac38$ and so on and so forth.
We can now see that each step we add/subtract a power of $\frac12$. If you separate the sums where you add powers of $\frac12$ from the one where you subtract powers of $\frac12$ you can compute each sum individually and then add everything together to find your answer.
You should arrive at $\frac23$.