3
$\begingroup$

May be this a duplicate, but I did not find any question related.

I found the following formula, but there was no proof of it:

$$2\sin\left(\frac{\pi}{2^{n+1}}\right)=\sqrt{2_1-\sqrt{2_2+\sqrt{2_3+\sqrt{2_4+\cdots\sqrt{2_n}}}}}$$

where

$$2_k=\underbrace{222\cdots222}_{k\text { times}}.$$

(The number $22$ is twenty-two for instance, and not $2\times 2=4$.)

Do you know a proof of this result? Do you know any references?

enter image description here

I think one way to prove it would be to deal with regular polygons inside a circle and play the angles and trigonometry.

Do you think it would work?

Is there a different way to proceed?

  • 0
    Possibly related: [The nth term of this infinitely nested radical sequence.](http://math.stackexchange.com/questions/2123068/the-nth-term-of-this-infinitely-nested-radical-sequence) Just flip the argument to produce sine instead of cosine.2017-02-19
  • 0
    Hm, did you mean to have $2_k=2^k$?2017-02-19
  • 0
    Possible duplicate of [Why is this series of square root of twos equal $\pi$?](http://math.stackexchange.com/questions/85217/why-is-this-series-of-square-root-of-twos-equal-pi)2017-02-19
  • 0
    @SimplyBeautifulArt No I did not.2017-02-19
  • 0
    Well, as I tried to point out, it's merely a repeated application of the half angle theorem I do believe.2017-02-19
  • 0
    Hm, then that is much more interesting!2017-02-19
  • 0
    As you wish. :D2017-02-19

1 Answers 1

2

It's not true

The following Mathematica code defines the formulas left and right of the equals sign and shows the approximate values for $n$ from 2 to 10:

r2[n_] := FromDigits[ConstantArray[2, n]]
f1[n_] := 2 Sin[Pi/2^(n + 1)]
f2[n_] := Sqrt[2 - Sqrt[Fold[Sqrt[#1] + #2 &, Table[r2[k], {k, n, 2, -1}]]]]
Table[{n, f1[n] // N, f2[n] // N}, {n, 2, 10}] // Grid

The result is below. Note that the right formula even gives a complex result.

n    left        right
2    0.765367    1.64025i
3    0.390181    2.01854i
4    0.196034    2.04871i
5    0.0981353   2.04964i
6    0.0490825   2.04965i
7    0.0245431   2.04965i
8    0.0122718   2.04965i
9    0.00613591  2.04965i
10   0.00306796  2.04965i
  • 0
    You are right... I must have misunderstand something.2017-02-19