Understanding the Limit of Recursive Sequence R_n for x = k^2 - k + 1

  • Thread starter Thread starter bomba923
  • Start date Start date
  • Tags Tags
    Root Sequence
bomba923
Messages
759
Reaction score
0
Short root sequence question

For the recursive sequence
R_n = x + \sqrt {x - \sqrt {R_{n - 2} } }
R_0 = x = k^2 - k + 1

\forall k \in \mathbb{N},\;k > 1 why does \mathop {\lim }\limits_{n \to \infty } R_n = k^2 ??
 
Last edited:
Physics news on Phys.org
Perhaps if I redefine the whole problem and open it to the reals (\mathbb{R}),
it will become clearer and easier to solve :smile: .

First off, the sequence shall be defined recursively as
R_n = \sqrt {x + \sqrt {x - \sqrt {R_{n - 2} } } }
(just takin' the root of what's in my original post! (It's a root sequence anyway))

So:
If we start with R_0, we will follow with \left\{ {R_2 ,R_4 , \ldots ,R_n } \right\}
If we start with R_1, we will follow with \left\{ {R_3 ,R_5 , \ldots ,R_n } \right\}

Such that:
R_0 \in \left\{ {x|x > \sqrt {x + \sqrt {x - \sqrt x } } > 1 ,x \in \mathbb{R}} \right\} (numerically, x > 1.311 for R_0)
R_1 \in \left\{ {x|x > \sqrt {x + \sqrt x } > 1 ,x \in \mathbb{R}} \right\} (numerically, x > 1.755 for R_1)

We will find that:
\mathop {\lim }\limits_{n \to \infty } R_n = \frac{{1 + \sqrt {4x - 3} }}{2}
(doesn't matter which R_0 or R_1 you choose...
just as long as it's inside the appropriate interval!:biggrin:)
------------------------------------------------------------------
Now, why exactly does:
\mathop {\lim }\limits_{n \to \infty } R_n = \frac{{1 + \sqrt {4x - 3} }}{2} ?
 
Last edited:
bomba923 said:
For the recursive sequence
R_n = x + \sqrt {x - \sqrt {R_{n - 2} } }
R_0 = x = k^2 - k + 1

\forall k \in \mathbb{N},\;k > 1 why does \mathop {\lim }\limits_{n \to \infty } R_n = k^2 ??

If the limit exists, you should just be able to set R_n=R_{n-2} and solve. This gives

((R-k^2+k-1)^2-k^2+k-1)^2-R=0

which has solutions

(R-k^2)(R-(k^2-2k+1))(R^2+(-2k^2+2k-3)R+(k^4-2k^3+3k^2-2k+1))

Why this is defined for all k\in\mathbb{Z}^+ and why it has the one particular solution out of the four possible ones I don't know offhand.
 
<br /> \lim_{n \rightarrow \infty} R_n =<br /> \lim_{n \rightarrow \infty} \sqrt{x + \sqrt{x - \sqrt{R_{n-2}}} }<br /> = \sqrt{ \lim_{n \rightarrow \infty}x + \sqrt{x - \sqrt{R_{n-2}}} }<br /> = \cdots<br />
 
Hurkyl said:
<br /> \lim_{n \rightarrow \infty} R_n =<br /> \lim_{n \rightarrow \infty} \sqrt{x + \sqrt{x - \sqrt{R_{n-2}}} }<br /> = \sqrt{ \lim_{n \rightarrow \infty}x + \sqrt{x - \sqrt{R_{n-2}}} }<br /> = \cdots<br />

But how does that simplify \mathop {\lim }\limits_{n \to \infty } R_n down to '"\frac{{1 + \sqrt {4x - 3} }}{2}"' ?
 
Last edited:
Continue through the dots. :-p It might help you visualize to use L to denote \lim_{x \rightarrow \infty} R_n.
 
Oh--ic now
!
 
You mind explaining this a little further?

I realize the limit of an infinitely nested radical:

\sqrt{x+\sqrt{x+\sqrt{x+...}}}

is:

\frac{1+\sqrt{1+4x}}{2}

but don't see how to get the 3 in there.
 
Last edited:
I think your problem is that you're considering a different sequence. :smile:
 
  • #10
saltydog said:
You mind explaining this a little further?

I realize the limit of an infinitely nested radical:

\sqrt{x+\sqrt{x+\sqrt{x+...}}}

is:

\frac{1+\sqrt{1+4x}}{2}

but don't see how to get the 3 in there.

My sequence alternates the signs of the square roots as I embed them, as
\sqrt{x+\sqrt{x-\sqrt{x+...}}}
 
  • #11
Hello Bomba. Thanks for responding, you too Hurkyl. I know you're just telling me the minimum for my own good but you know what, I couldn't even get past the definition and I'd like to understand it. This is what I have:

If I start from R_0 and you say calculate R2, R4, R6,. . ., and the recursion relation is always in reference to R(n-2), then it's just like doing it for each N and set up the relation for R(n-1). Is that not correct? That is, if I start with R_0, then it seems to me, just ignore the odd members in the sequence. Perhaps that is not correct though. When I experiment with it though in Mathematica, say for R0=1.9, it doesn't seem to converge to the value you specify. This is how I set it up in Mathematica. Perhaps you can correct my interpretation:

f[x,xm1]=\sqrt{x+\sqrt{x-\sqrt{xm1}}};

xstart=1.9

ntotal=alargenumber

valist=Table[{0},{ntotal}]

valist[[1]]=f[xstart,xstart]

For[n=2,n&lt;ntotal,n++,[/tex]<br /> <br /> valist[[n]]=f[xstart,valist[[n-1]]];<br /> <br /> When I do that, it seems to converge to 1.639 . . .<br /> <br /> But:<br /> <br /> \frac{1+\sqrt{4xstart-3}}{2}=1.572...<br /> <br /> Would you (or Hurkyl or anyone else) tell me where my problem is?<br /> <br /> Thanks,<br /> Salty<br /> <br /> Edit: corrected to reflect relation of even members in terms of R0
 
Last edited:
  • #12
Hrm. The problem is that I had assumed that what was posted as "the answer" was correct. 1.639... is, in fact, the correct limit. (Assuming that my calculuator is sufficiently smart and would tell me if there were additional real solutions to the fixed point equation)
 
Back
Top