Whilst reading Goldrei's Classic Set Theory, I have come across a recursively defined sequence
$a_0=0, a_1=1, a_n=\frac{1}{2}\left(a_{n-1} + a_{n-2} \right) $
The first few terms of which are:
$0, 1, \frac{1}{2}, \frac{3}{4}, \frac{5}{8}, \frac{11}{16}, ... $
It is easy to show the successive terms get closer to one another
$ |a_n - a_{n-1} |= | \frac{1}{2}\left(a_{n-1} + a_{n-2}\right) - a_{n-1} |$ $ = \frac{1}{2}|a_{n-1} - a_{n-2}| $
Inducting on the "first difference" gives
$ |a_n - a_{n-1} | = \frac{1}{2}^{n-1}|a_1 - a_0| $ $ = \frac{1}{2}^{n-1} $
So I have shown that the difference between each successive term approaches zero, i.e. the sequence approaches a limit.
How do I find the limit of the recursively defined sequence?
How are these types of problems (recursively defined functions) generally approached? It is:
- Show the sequence converges
- ...