0

I have the following exercise: Let $S_1$ = 1 and for $n \geq 1$ let $S_{n+1} = \sqrt{S_n + 1}$. Prove that the limit of this sequence is $\frac{1}{2}(1 + \sqrt{5})$

Pasie15
  • 491
  • First, it needs to show that the sequence converges? If it not necessary, then just "replace" $S_{n+1}$ and $S_n$ by $S$, where $S$ is the limit. – DiegoMath Sep 13 '14 at 19:41
  • 1
    Step 1: The limit exists. By induction you can prove the sequence is increasing and bounded above. Step 2: A calculation. – André Nicolas Sep 13 '14 at 19:42

4 Answers4

4

To be rigorous: first check that $S_2>S_1$ and $S_1<S_0\equiv\frac{1}{2}(1+\sqrt{5})$ and use an induction argument to show that $S_n$ is increasing and each $S_n$ is bounded above by $S_0$. Thus, a limit $S$ exists satisfying $S=\sqrt{S+1}$. You can then check that $S=S_0$.


More details: to check $S_1<S_2$, you simply plug in the numbers. Similarly, do the same for $S_1<S_0$. Now, in one induction argument, you can verify both that $S_n$ is increasing and $S_n$ is bounded above by $S_0$. We have just done the base cases. The induction steps are $$ S_{n+1}-S_n=\sqrt{S_n+1}-\sqrt{S_{n-1}+1}\geq 0\text{ if }S_n\geq S_{n-1};\\ S_{n+1}=\sqrt{S_n+1}\leq\sqrt{S_0+1}=S_0\text{ if }S_n\leq S_0. $$ Therefore, now you have $\{S_n\}$ is an increasing sequence that is bounded above. So it has some limit $S$. This $S$ satisfies $S=\sqrt{S+1}$ which you obtain by taking the limits on both sides of $S_{n+1}=\sqrt{S_n+1}$. Note that this taking limits step isn't proper unless you first justify that the limit exists. Hence, the induction argument we did in the beginning.

Kim Jong Un
  • 14,794
  • 1
  • 24
  • 49
1

$$ S_{n+1}^2 = S_n + 1 $$ if a limit does exist then it occurs when $$ \lim_{n\rightarrow \infty}\dfrac{S_{n+1}}{S_n}=1 $$ i.e. $$ M^2 = M + 1 $$

Chinny84
  • 14,186
  • 2
  • 22
  • 31
  • @5space cheers, I have to cover the possibility that a simple glance at the initial problem didn't converge. :). Though the other great answers have done that now :). – Chinny84 Sep 13 '14 at 19:45
0

The limit $L$ must satisfy $$L=\sqrt{L+1}$$

0

Hint: prove that $S_n$ is bounded and increasing after some $n$. Then, get $S_{n+1} = \sqrt{S_n + 1}$, and pass the limit to obtain $L = \sqrt{L+1}$. Then solve for $L$ (and discard the negative value you will find).

Ivo Terek
  • 77,665