Caeder
- 13
- 0
Given the following sequence:
x_0 = 1, \quad x_1 = \sqrt{3+1}, \quad x_2 = \sqrt{3+\sqrt{4}}, \quad x_3 = \sqrt{3+\sqrt{5}},
x_4 = \sqrt{3+\sqrt{3+\sqrt{5}}}, \quad x_5 = \sqrt{3+\sqrt{3+\sqrt{3+\sqrt{5}}}} \ldots
prove the above sequence converges and determine the limit.
......
So from n=3 onwards, I notice that the sequence is recursively defined:
n \geq 4,\;x_n = \sqrt {3 + x_{n - 1} }
To prove convergence, I'd stimply have to show sequence is bounded above and that it's increasing.
I'm not quite sure how to do this with a recursive function.
To find the limit, I realized that
x_n = \sqrt {3 + x_{n - 1} } is at it's "equilibrium point" when x = 3 + \sqrt{x}. I solved for \sqrt{x} and found the limit to be:
\frac{1\pm\sqrt{13}}{2}. I then see that we go towards:
\frac{1+\sqrt{13}}{2}
So I know the limit will be the above if the sequence converges.
Any help on the proof?
x_0 = 1, \quad x_1 = \sqrt{3+1}, \quad x_2 = \sqrt{3+\sqrt{4}}, \quad x_3 = \sqrt{3+\sqrt{5}},
x_4 = \sqrt{3+\sqrt{3+\sqrt{5}}}, \quad x_5 = \sqrt{3+\sqrt{3+\sqrt{3+\sqrt{5}}}} \ldots
prove the above sequence converges and determine the limit.
......
So from n=3 onwards, I notice that the sequence is recursively defined:
n \geq 4,\;x_n = \sqrt {3 + x_{n - 1} }
To prove convergence, I'd stimply have to show sequence is bounded above and that it's increasing.
I'm not quite sure how to do this with a recursive function.
To find the limit, I realized that
x_n = \sqrt {3 + x_{n - 1} } is at it's "equilibrium point" when x = 3 + \sqrt{x}. I solved for \sqrt{x} and found the limit to be:
\frac{1\pm\sqrt{13}}{2}. I then see that we go towards:
\frac{1+\sqrt{13}}{2}
So I know the limit will be the above if the sequence converges.
Any help on the proof?