10

I'm wondering whether it's possible to find an exact term for the infinite nested radical expression from the title. I got a quite good approximation with my calculator but what I'm looking for is an exact term.

$$ f(x)=\sqrt{2^x+\sqrt{2^{x+1}+\sqrt{2^{x+2}...}}} $$

It is necessary that f satisfies the condition: $$ f(x)^2=2^x+f(x+1) $$

EDIT: But there should be infinetely many solutions to this equations - furthermore, I wasn't able to find a single one!

Does anyone have an idea how to find an exact finite term - or prove that no such term exists?

bloxx
  • 101

2 Answers2

7

Related will be $$ g(u) = \sqrt{u+\sqrt{2u+\sqrt{4u+\sqrt{8u+\dots}}}} $$ so that $f(x) = g(2^x)$. Graphically, $g$ looks like this, g(x)
with $g(2) = 2.17968$ marked. Numerically we see $$ \lim_{u \to 0^+} g(u) = 1 $$ $g(u)$ is complex (non-real) for $u<0$.

$g$ satisfies $g(u)^2=u+g(2u)$, which lets us compute an asymptotic expansion for $u \to \infty$ $$ g(u) = u^{1/2} + \frac{1}{\sqrt{2}} +\left(\frac{1}{2\sqrt{2}}-\frac{1}{4}\right)u^{-1/2} +\left(\frac{1}{8\sqrt{2}}-\frac{1}{8}\right)u^{-1} +\left(\frac{9}{32\sqrt{2}}-\frac{3}{16}\right)u^{-3/2} +O(u^{-2}) $$

GEdgar
  • 111,679
  • 1
    This looks very good! But because I'm unfamiliar with asymptotic expansions, I wasn't able to derive your term for g. Reading various online resources also didn't help. How did you do that? – bloxx May 10 '15 at 08:51
  • Just use Taylor series and the fact that $g(u) << u$ - $ g(u)=\sqrt{u+g(2u)}=\sqrt{u} \sqrt{1+\frac{g(2u)}{u} } \approx \sqrt{u} \left( 1+\frac{g(2u)}{2u} \right)=\sqrt{u}+\frac{\sqrt{2u+g(4u)}}{2\sqrt{u}}\approx \sqrt{u}+\frac{1}{\sqrt{2}} $ - this is the first two terms – Yuriy S Feb 25 '16 at 17:42
0

With a little look ingenuity you can not only prove convergence, but bracket the limit with arbitrary precision.

Consider the radical

$\sqrt{1+\sqrt{2+\sqrt{4+\sqrt{8+...}}}}$

Let us define

$a_n=\sqrt{1+\sqrt{2+\sqrt{4+\sqrt{8+...+\sqrt{2^{n-1}}}}}}$

Then we have

$a_n^2-1=\sqrt{2+\sqrt{4+\sqrt{8+...+\sqrt{2^{n-1}}}}}$

but also

$\sqrt{2}a_n=(\sqrt{2})(\sqrt{1+\sqrt{2+\sqrt{4+\sqrt{8+...+\sqrt{2^{n-1}}}}}})$

$=\sqrt{2+2\sqrt{2+\sqrt{4+\sqrt{8+...+\sqrt{2^{n-1}}}}}}$

$=\sqrt{2+\sqrt{8+4\sqrt{4+\sqrt{8+...+\sqrt{2^{n-1}}}}}}$

...

$=\sqrt{2+\sqrt{8+\sqrt{64+\sqrt{1024+...+\sqrt{2^{n(n-1)/2}}}}}}$

The radicands in b.c. the expression for $\sqrt{2}a_n$ equal or exceed the corresponding for $a_n^2-1$, and as if to add insult to injury the former also has one more "layer". Clearly this comparison forces:

$a_n^2-1<\sqrt{2}a_n$

$a_n<(\sqrt{6}+\sqrt{2})/2=b_1$

And so the truncations $a_n$ form an increasing VC sequence that is bounded, proving it converges and the limit is less than the number above. Rounding the upper bound up to the next multiple of $0.01$, an accuracy herein used throughout for numerical values, gives a limiting value

$1=a_1<a_{\infty}<b_1<1.94$

But why stop there? Suppose we render our nested radical as

$\sqrt{1+(\color{blue}{\sqrt{2+\sqrt{4+\sqrt{8+...}}}})}$

and focus on the blue portion. By an argument analogous to that used above we find

$\sqrt{2+\sqrt{4+\sqrt{8+...}}}<(\sqrt{10}+\sqrt{2})/2$

Therefore we now render

$b_2=\sqrt{1+(\sqrt{10}+\sqrt{2})/2}<1.82$

$1.55<a_2<a_{\infty}<b_2<1.82$

We can go on like this, adding more iterations to get progressively tighter bounds. It turns out that the tuncatiobs and upper bounds converge to the same limit so arbitrary accuracy is achieved. Here the $b_2$ bound between $1.81$ and $1.82$ is already good to two significant digits (actual value = $1.78$ to the accuracy used here).

Oscar Lanzi
  • 39,403