Convergence of Nested Square Roots: Solving the Puzzle

In summary, the conversation discusses a puzzle involving an infinite radical expression and how to prove its convergence. The solution involves using a recursive function and checking for convergence by applying the usual condition for convergence of a sequence. The conversation also mentions a paper by T Vijayaraghavan that discusses convergence issues of such radicals and suggests using a limit to check for convergence.
  • #1
EvLer
458
0
Hi, I came across this puzzle, see if you can solve it :smile: :

[tex]\sqrt{1 + \sqrt{1 + 2\sqrt{1 + 3\sqrt{...}}}} = ?[/tex]
 
Physics news on Phys.org
  • #2
2

-- AI
P.S -> .dettimbus steg egassem taht os dedda texT
 
  • #3
For all natural n:

[tex]n = \sqrt{1 + (n-1)\sqrt{1 + n\sqrt{1 + (n + 1)\sqrt{\dots }}}}[/tex]

For n = 1, we see the right side is:

[tex]\sqrt{1 + 0\sqrt{\dots }} = \sqrt{1} = 1[/tex]

Note that for now, we're assuming that what we're looking at is even a number, and doesn't go to infinity. Next, assume that:

[tex]k = \sqrt{1 + (k-1)\sqrt{1 + k\sqrt{1 + (k + 1)\sqrt{\dots }}}}[/tex]

for some natural k. Then:

[tex]k+1 = \frac{(k - 1)(k + 1)}{(k - 1)}[/tex]
[tex]= \frac{k^2 - 1}{k - 1}[/tex]

[tex]= \frac{\left (\sqrt{1 + (k-1)\sqrt{1 + k\sqrt{1 + (k + 1)\sqrt{\dots }}}}\right )^2 - 1}{k - 1}[/tex]

[tex]= \frac{(k - 1)\sqrt{1 + k\sqrt{1 + (k + 1)\sqrt{\dots }}}}{k - 1}[/tex]

[tex]= \sqrt{1 + k\sqrt{1 + (k + 1)\sqrt{\dots }}}[/tex]​
as required.

From this, TenaliRaman's answer follows. It remains to prove, however, that the stuff really is a number and doesn't "diverge". Any ideas as to how to prove that?
 
Last edited:
  • #4
Do i prove this with series? Don't have my Calculus book with me... I got to the part of general representation, the last part of k-expression...
 
  • #5
There is a bit easier way to go abt the above,
Let f(x) = x+1
f(x)
= sqrt((x+1)^2)
= sqrt(x^2 + 2x + 1)
= sqrt(1 + x (x+2))
= sqrt(1 + xf(x+1))

Recursively applying the above gives,
f(x) = sqrt(1+x*sqrt(1+(x+1)*sqrt(1+(x+2)*sqrt(...))) = x + 1
place x = 1 and et voila!

-- AI
 
  • #6
ahhh, i see... how did you see that?
 
  • #7
EvLer said:
ahhh, i see... how did you see that?
Its one of those *aha* moments. Personally, these sort of "functional equations" are good fun to play around with (i have played with this one, quite a while back). Just remember the trick i used above and try to come up with some more radicals just like those.

For example,
f(x) = x + a = sqrt(x^2+2ax+a^2) = sqrt(a^2+x*f(x+a))
Recursively apply the above and get a new oh_so_cool radical expression, fit in a value for a and set some value for x and give it to your friends to torture them for a while.

Note in all of the above, its important to analyse that the infinite recursion is valid and that the infinite recursion actually converges. This aspect ofcourse i have pushed under the rug for now, since its a puzzle after all :tongue2: .

There is a paper by T Vijayaraghavan (IIRC) which discussed convergence issues of such radicals, which could probably be the starting point of such analysis.

-- AI
 
  • #8
cool, thanks! yeah...i guess if you do a lot of these, you kind of develop an intuition.
TenaliRaman said:
There is a paper by T Vijayaraghavan (IIRC) which discussed convergence issues of such radicals, which could probably be the starting point of such analysis.
have a link? or a reference?
 
  • #9
TenaliRaman said:
Note in all of the above, its important to analyse that the infinite recursion is valid and that the infinite recursion actually converges.
How would you check that the recursion is valid? EDIT: actually, since each step in the recursion produces the same number, why would the infinite recursion be any different? If it is different, what we have to do to check convergence?
 
Last edited:
  • #10
AKG said:
How would you check that the recursion is valid?
When i said recursion being valid, i meant, making sure that the final number doesn't change by infinite application of recursion.

actually, since each step in the recursion produces the same number, why would the infinite recursion be any different?
umm, let me try and give an example,
Let f(x) = x
f(x) = x = (x+1) - 1
f(x) = f(x+1)-1
...-3-2-1 = f(x) = x ,for any x
I guess this example is pretty lame but i hope it drives home the point.

If it is different, what we have to do to check convergence?
I am not sure whether there is a convergence check (the paper i mentioned above, discusses convergence of infinite radicals IIRC and not exactly recursion, and to be honest, when i had read that paper, i couldn't understand a penny out of it, :uhh: cmon i am just 21 and an engineer at that so give me a break :biggrin:) .

However, i guess one could model the convergence condition as that in the convergence of a series,
Let R(k,f(x)) denote the value of recursive function f(x) at depth k.
Then a possible convergence condition would be,
R(1,f(x)) = R(2,f(x)) = R(k,f(x)) = R(k+1,f(x))

-- AI
 
  • #11
EvLer said:
have a link? or a reference?
If i had, i would have definitely linked to it in the original post. I don't even remember where i had read it, it was quite a long time back. Hell i was a toddler in maths when i had read that, i was just able to quote that paper because i had read that in reference to Srinivasa Ramanujan, who btw was the brains behind such infinite radicals.

-- AI
 
  • #12
Let R(k,f(x)) denote the value of recursive function f(x) at depth k.
Then a possible convergence condition would be,
R(1,f(x)) = R(2,f(x)) = R(k,f(x)) = R(k+1,f(x))

Why not apply the usual condition for convergence of a sequence? :tongue2:

I.E. does this limit exist?

[tex]
\lim_{k \rightarrow \infty} R(k, f)
[/tex]
 
  • #13
Hurkyl said:
Why not apply the usual condition for convergence of a sequence? :tongue2:

I.E. does this limit exist?

[tex]
\lim_{k \rightarrow \infty} R(k, f)
[/tex]
:eek: Indeed!
Damn, my post looks stupid now! :frown:

-- AI
 

1. What is a square root?

A square root is a mathematical operation that calculates the number which, when multiplied by itself, gives the original number. For example, the square root of 25 is 5 because 5 multiplied by 5 is 25.

2. How do you find the square root of a number?

The most common method for finding the square root of a number is by using a calculator or a computer. However, you can also estimate the square root of a number by using long division, or by using a method called the "guess and check" method.

3. What is a perfect square?

A perfect square is a number that has an integer as its square root. For example, 25 is a perfect square because its square root is 5, which is an integer. On the other hand, 20 is not a perfect square because its square root is a decimal number (approximately 4.472).

4. Can negative numbers have square roots?

Yes, negative numbers can have square roots. However, in order to find the square root of a negative number, you need to use imaginary numbers, which are numbers that involve the square root of -1 (also known as "i").

5. What is the difference between a square root and an exponent?

A square root is the inverse operation of squaring a number, while an exponent is a mathematical operation that indicates how many times a number is multiplied by itself. For example, the square root of 16 is 4 because 4 multiplied by itself (4 squared) equals 16. An exponent of 2, or 2 squared, also equals 16.

Similar threads

Replies
14
Views
629
  • General Discussion
Replies
11
Views
910
Replies
1
Views
1K
  • Precalculus Mathematics Homework Help
Replies
3
Views
814
  • Introductory Physics Homework Help
Replies
25
Views
1K
  • Precalculus Mathematics Homework Help
Replies
13
Views
833
  • Calculus
Replies
3
Views
3K
Replies
13
Views
3K
Replies
15
Views
1K
  • Precalculus Mathematics Homework Help
Replies
8
Views
765
Back
Top