I want to ask a question about recursive sequences. They have been pretty easy to handle for me, if you have one variable in it. To give you an example, if you have a sequence like:
$x_o = 1, x_{n+1}=\frac{a+x_n}{1+x_n}, n \in \mathbb{N},( 0<a<1 )$.
You can proove convergence easily by induction and calculate the limit x by solving $ x =\frac{a+x}{1+x}$, $x = \sqrt{a}$. Not too hard so far, but no i am facing one with 2 variables:
$$a_o = a , a_1 = b, a_{n} = \frac{1}{2}(a_{n-1}+a_{n-2}), $$$$a,b \in \mathbb{R}, n ≥ 2, n\in\mathbb{N}$$
My thoughts: Series looks somehow like this.
$a, b, \frac{a+b}{2} (:=c), \frac{c+b}{2} (:=d),\frac{c+d}{2} (:=e)...$
So the limit must be something like: $\frac{b+a}{2}=b \rightarrow b = a $ ??? Of course, if the terms of the sum in the numerator are the same, the series will stay the same for every n+1th item. But will this be its limit?
As you see i am a bit unsure here, if you have an idea can you leave a quick post here on how to prove convergence, and how to calculate the limit ? Thanks for all input..
You don’t need the general techniques in order to deal with this problem. Note that each term is simply the average of the two preceding terms. Thus, $a_2$ is the midpoint of the segment between $a$ and $b$; $a_3$ is the midpoint of the segment between $a_2$ and $b$, and so on. This is a relationship that shouldn’t be changed if we shift and scale the sequence into a more convenient location, so let’s try that.
Let $b_n=a_n-a$. Then the recurrence $a_n=\frac12(a_{n-1}+a_{n-2})$ can be rewritten
$$b_n+a=\frac12\Big((b_{n-1}+a)+(b_{n-2}+a)\Big)=\frac12(b_{n-1}+b_{n-2})+a\;,$$
and therefore $b_n=\frac12(b_{n-1}+b_{n-2})$; the shifted sequence satisfies the same recurrence as the original. Then let $c_n=\frac{b_n}{b-a}$ and do the same thing:
$$(b-a)c_n=\frac12\Big((b-a)c_{n-1}+(b-a)c_{n-2}\Big)=\frac12(b-a)(c_{n-1}+c_{n-2})\;,$$
so $c_n=\frac12(c_{n-1}+c_{n-2})$.
Now $c_0=0$ and $c_1=1$. Calculate the first few values of $c_n$: if you go as far as $c_6$ or so, you should be able to spot the pattern and be able to write $c_n$ as a function of $n$. (If you get stuck, leave a comment.) You may alternatively recognize that the $c_n$’s are partial sums of a simple series, whose sum you can easily find. This will give you convergence and limit of the $c_n$’s, hence of the $a_n$’s, which are just a scaled and shifted version of the $c_n$’s.