0

Let $0<a<b<\infty$ be real numbers and define the sequence $x_1=a$, $x_2=b$, $x_{n+1} = \sqrt{x_n x_{n-1}}$. Find the limit of $(x_n)_{n=1}^\infty$.

So I have proved that the sequence is a contraction and that $\lim_{n\rightarrow \infty} (x_{2n+2}-x_{2n+1})=0$. Therefore the sequence converges to some number $x$ in the interval $(a,b)$. Numerically, I have found that the limit is actually $x=(ab^2)^{1/3}$, but I'm stuck in actually proving this result analytically. A hint will be the selected answer.

user2820579
  • 2,389

2 Answers2

2

Hint : take the $ln$ (after verifying that $ln(x_n)$ is well-defined !)

  • Thanks for your answer. I think it was similar to what flawr suggested (though I cannot tell from the short answer given), but he developed a little bit more the idea. – user2820579 Aug 12 '20 at 18:37
2

Let's define $y_n = \log(x_n)$. Then we get the linear recurrence

$$y_{n+1} = \frac{y_n + y_{n-1}}{2},$$

which we can immediately solve using standard methods: Therefore $$y_n = u \left(\frac{-1}{2}\right)^n + v$$ for some $u$ and $v$. And therefore $\lim x_n = v$. Using the initial conditions we get $v = \frac{1}{3} (\log(a) + 2\log(b))$. Since $\log$ is continuous we therefore get

$$\lim x_n = \exp(\lim y_n) = \exp(v) = (ab^2)^{1/3}$$

as you already claimed.

flawr
  • 16,533
  • 5
  • 41
  • 66