I'm playing around with a sequence $\{x_n\}$ defined by $$ x_{n+1}=\frac{\alpha+x_n}{1+x_n}=x_n+\frac{\alpha-x_n^2}{1+x_n}. $$ Here $\alpha\gt 1$, and $x_1\gt\sqrt{\alpha}$.
I'm trying to compute $\lim\ x_n$. If it converges, it's easy to compute it as $\sqrt{\alpha}$ from the above equalities, but I don't know if it does or not. Does it?
I made a few observations from the relations (I can included proofs, which are mostly playing with inequalies):
- $x_n\gt\sqrt{\alpha}\implies x_{n+1}<\sqrt{\alpha}$
- $x_n\lt\sqrt{\alpha}\implies x_{n+1}>\sqrt{\alpha}$
- $x_n>\sqrt{\alpha}\implies x_{n+2}<x_n$
- $x_n<\sqrt{\alpha}\implies x_{n+2}>x_n$
From these I deduced that $x_1>x_3>x_5>\cdots$ and is bounded below by $\sqrt{\alpha}$. Also, $x_2<x_4<x_6<\cdots$ and is bounded above by $\sqrt{\alpha}$. So I know $\{x_{2m}\}$ and $\{x_{2m+1}\}$ both converge.
I figure if $\{x_n\}$ does not converge, then for some $\epsilon>0$, and for any $N$, there exist some $n,m>N$ such that $|x_n-x_m|>\epsilon$, and $n$ and $m$ can be of different parity. Is there some way to get a contradiction? Thanks.
As the comments and the other answers indicate, there are several approaches to this problem; I explain three of them here. Define the functions $f, g : [0, \infty) \to [0, \infty)$ by $$ \begin{align*} f(x) &= \frac{\alpha + x}{1+x}, \\\\ g(x) = f(f(x)) &= \frac{2 \alpha + (1+\alpha)x}{(1+\alpha) + 2x}. \end{align*} $$ In terms of this notation, the sequence satisfies the recurrence $x_{n+1} = f(x_n)$. We need the following two facts about these functions:
Method 1.
The OP has already done most of the work by showing that the odd and even subsequences individually converge. To proceed further, we isolate the odd and even terms by writing a recurrence equation for them separately: $$ \begin{align*} x_{2m+1} &= g(x_{2m-1}), \\ x_{2m+2} &= g(x_{2m}) . \end{align*} $$ Since we know that both these subsequences converge, the corresponding limits (possibly the same) satisfy the fixed point equation $x = g(x)$ (thanks to the continuity of $g$). Since this equation has a unique solution $\sqrt{\alpha}$, we conclude that both the odd and even subsequences converge to $\sqrt{\alpha}$, and we are done. $\qquad \diamond$
Method 2.
This is a variation of the previous idea. Again we already know that the odd and even subsequences individually converge; denote the respective limits by $O$ and $E$.
Consider the recurrence equation $x_{n+1} = f(x_n)$; taking limits as $n \to \infty$ through the odd integers, we get $E = f(O)$. Similarly, allowing $n \to \infty$ through the even integers gives $O = f(E)$. To solve these two equations, we simply eliminate $O$ (say), yielding $$E = f(f(E)) = g(E) ,$$ yielding the same equation as in Method 1. (Of course, $O$ satisfies an analogous equation.) Thus, as before, we have the solution $E = O = \sqrt{\alpha}$, and we are done. $\qquad \diamond$
Method 3: Using the Banach fixed-point theorem.
Potato's suggestion of using the Banach fixed-point theorem looks attractive, but unfortunately, it does not apply for this sequence directly. The trouble is that while $f$ does map the complete subspace $[0, \infty)$ into itself, it is not a contraction for $\alpha \geqslant 2$. (Exercise: Check this.)
On the other hand, the iterate $g = f \circ f$ of $f$ is indeed a contraction. To see this, we bound its derivative: $$ \begin{align*} g'(x) &= \frac{(1+\alpha)(1+\alpha+2x) - 2(2\alpha + x(1+\alpha))}{(1+\alpha + 2x)^2} \\ &= \left( \frac{\alpha - 1}{\alpha + 1 + 2x} \right)^2 \\ &\leqslant \left( \frac{\alpha - 1}{\alpha + 1} \right)^2 \lt 1. \end{align*} $$ Now the Banach fixed-point theorem applies for $g$, and says that both
converge to the unique fixed-point of $g$, namely $\sqrt{\alpha}$. Thus the original sequence converges to $\sqrt{\alpha}$ as well. In fact, this method also shows an exponential rate of convergence of $x_n$ to $\sqrt{\alpha}$.
See Keith Conrad's notes for an in-depth explanation of the contraction mapping theorem. Specifically, Theorem 3.1 and Example 3.2 in the notes discuss the case when a function is not a contraction but an iterate of it is. $\qquad \diamond$