3

How to solve the following recurrence relation, assuming that $x_0 > 1$:

$$x_{n+1} = \frac{x^2_n + 1}{x_n}$$ Am I allowed to divide the fraction, that is $x_{n+1} = x_n + \frac{1}{x_n}$?

Lord_Farin
  • 17,743
vangog2
  • 31

1 Answers1

6

If $x_n \neq 0$ you can write $x_{n+1} = x_n + \frac{1}{x_n}$. Since $x_n$ and $\frac{1}{x_n}$ have the same sign, it is clear that if $x_n>0$ then $x_{n+1}>x_n$. Hence $x_n$ is increasing.

There are two possibilities, if $x_n$ has an upper bound, then, since it is increasing, we have $x_n \uparrow x$, and since $x_{n+1} - x_n = \frac{1}{x_n}$, we see the right hand side converges to $\frac{1}{x}$ and the left hand side converges to $0$, a contradiction. Hence $x_n$ has no upper bound, that is, $x_n \uparrow +\infty$.

A more or less identical argument shows that if $x_0 <0$, then $x_n \downarrow -\infty$.

Hence we have $\lim_n x_n = \begin{cases} -\infty, & x_0 <0 \\ +\infty & x_0 >0 \end{cases}$.

copper.hat
  • 172,524