Here is the problem statement:
Let $a$, $b$ $\in$ $\Bbb{R}$. A sequence $(a_{n})_{n \in \Bbb{N}}$ is defined recursively by $$a_{0}:=a, \qquad a_{1}:=b, \qquad a_{n} = \frac{1}{2}(a_{n-1}+a_{n-2}) \quad \text{for} \quad n \geq 2.$$ Prove that $\lim_{n\to\infty}a_{n}$ exists and compute its value.
Now I have proved that the limit exists. My idea was to use the Monotone Convergence Theorem as follows:
Proof: Without loss of generality, assume $a<b$. By inspection of the first two terms of $a_{n}$, we see that $$a_{3} = \frac{1}{2}(a_{2}+a_{1})=\frac{1}{2}\left[\frac{1}{2}(a_{1}+a_{0}) + a_{1}\right] = \frac{1}{2}(a_{1}+a_{0})+\frac{1}{4}(a_{1}-a_{0})=a_{2}+\frac{1}{4}(a_{1}-a_{0})>a_{2} \quad (\because a_{1}>a_{0}).$$ Therefore we need to show that the sequence is increasing, so our inductive hypothesis is $a_{n}<a_{n+1}$. $$a_{n}<a_{n+1}\implies a_{n+1}=\frac{1}{2}(a_{n}+a_{n-1})<\frac{1}{2}(a_{n+1}+a_{n})=a_{n+2}.$$ Thus $a_{n}$ is increasing for $n\geq 2$. Now we need to show that it is bounded. By inspection, $a_{3}=\frac{1}{2}(a_{2}+a_{1})<\frac{1}{2}(a_{1}+a_{1}) = a_{1}$, and $a_{4}<a_{1}$ and so on. So again assume by induction $a_{n}<a_{1}$ and we have $$a_{n+1}=\frac{1}{2}(a_{n}+a_{n-1})<\frac{1}{2}(a_{1}+a_{1}) = a_{1}.$$ Thus $a_{n}$ is bounded above. Hence by the Monotone Convergence Theorem, sequence is convergent and $\lim a_{n}$ exists.$\quad\square$
However, I'm stuck in finding the limit. Any hints would be appreciated.