If $x_1<x_2$ are arbitrary real numbers, and $x_n=\frac{1}{2}(x_{n-2}+x_{n-1})$ for $n>2$, show that $(x_n)$ is convergent.

If $x_1<x_2$ are arbitrary real numbers, and $x_n=\frac{1}{2}(x_{n-2}+x_{n-1})$ for $n>2$, show that $(x_n)$ is convergent. What is the limit?

The back of my textbook says that $\lim(x_n)=\frac{1}{3}x_1+\frac{2}{3}x_2$. I was thinking that if I show that the sequence is monotone increasing by induction, then I can "guess" (from the back of my textbook) that there is an upperbound of the limit and show by induction that all elements in $x_n$ are between $x_1$ and the upperbound and so it's bounded. Then by the monotone convergence theorem say it's convergent.

I'm not sure how to show that it is monotone, and then after showing convergence finding the limit, without magically guessing it.


This sequence is not monotone - for example $x_3 = \frac12 (x_1 + x_2) < x_2$. You can prove convergence using the Cauchy criterion - the distance between consecutive terms halves every term:

$$ |x_n - x_{n-1}| = \frac12 |x_{n-1} - x_{n-2}|,$$ so iterating this equality to obtain $|x_n - x_{n-1}| = 2^{-n+2} |x_2 - x_1|$ we can use a geometric series bound (i.e. use $|r| < 1 \implies \sum_{n=0}^\infty r^n = 1/(1-r)$ as an upper bound) to show the sequence is Cauchy:

$$|x_{n+m} - x_n| \le \sum_{k=1}^m |x_{n+k} - x_{n+k-1}|\le 2^{-n}|x_2 - x_1|\sum_{k=1}^m 2^{-k} \le 2^{-n}|x_2-x_1| \to 0 \textrm{ as } n \to \infty.$$

To find the limit, write the sequence as a geometric series similar to the above:

$$ \begin{align} \lim_{n \to \infty} x_n &= x_1 + \sum_{n=2}^\infty (x_n - x_{n-1}) \\ &= x_1 + (x_2-x_1)\sum_{n=2}^\infty (-2)^{-n+2} \\ &= x_1 + (x_2-x_1)\sum_{n=0}^\infty (-2)^{-(n+2)+2} \\ &= x_1 + (x_2-x_1)\sum_{n=0}^\infty (-2)^{-n} \\ &= x_1 + (x_2-x_1)\frac{1}{1 - (-1/2)} \\ &= \frac{x_1}{3} + \frac{2 x_2}{3}. \end{align} $$


A related problem. To prove convergence, note that

$$ x_n=\frac{1}{2}(x_{n-2}+x_{n-1})\implies x_n-x_{n-1}=\frac{1}{2}(x_{n-2}-x_{n-1}) $$

$$ \implies |x_n-x_{n-1}|=\frac{1}{2}|x_{n-1}-x_{n-2}|<\frac{2}{3}|x_{n-1}-x_{n-2}|. $$

This proves that the sequence is a contraction and hence convergent by the Fixed point theorem. To solve it, then assume the solution $x_n=r^n$ and subs back in the equation and solve the resulting polynomial in $r$.