while solving for the Maclaurin series for arcsin(x)
$$ \arcsin(x) = \sum_{0}^{\infty}\frac{(2n-1)!!x^{2n+1}}{(2n)!!(2n+1)} $$
Taking $$\arcsin(\sin\frac{\pi}{6})$$
I got
$$ \pi = 6\sum_{0}^{\infty}\frac{(2n-1)!!(\frac{1}{2})^{2n+1}}{(2n)!!(2n+1)} $$
This gives around 16 digits of pi per 22 iterations.
Trying to improve the convergence of the function I took
$$ \arcsin(\sin\frac{\pi}{12}) $$ Considering, $$ \sin\frac{\pi}{12}=\sqrt{2-\sqrt{3}} $$
We get,
$$ \pi = 12\sum_{0}^{\infty}\frac{(2n-1)!!{\sqrt{2-\sqrt{3}}}^{2n+1}}{(2n)!!(2n+1)} $$
Which yielded a faster convergence of pi than the first equation. I have not calculated the number of digits of pi per iteration since I focused on on the below equation.
$$ \arcsin(\sin\frac{\pi}{24}) $$ Considering, $$ \sin\frac{\pi}{24}=\sqrt{2-\sqrt{2+\sqrt{3}}} $$
We get,
$$ \pi = 24\sum_{0}^{\infty}\frac{(2n-1)!!{\sqrt{2-\sqrt{2+\sqrt{3}}}}^{2n+1}}{(2n)!!(2n+1)} $$
Which gives about 18 digits of pi per 10 iterartions, which is an improvement over the first equation.
I've tried using identities involving e
i.e
$$ \sin(x)=\frac{e^{ix}-e^{-ix}}{2i} $$
I do not know how to calculate sin(x) using the above equation since complexity of the equation seems to increase with n increasing with $$ x=\frac{\pi}{n} $$
I've also tried using the golden ratio using the identity
$$ \phi=1+2\sin\frac{\pi}{10} $$ We get, $$ \sin\frac{\pi}{10}=\frac{\phi-1}{2} $$ $$ \sin\frac{\pi}{10}=\frac{\sqrt{5}-1}{4} $$ Taking, $$ \arcsin(\sin\frac{\pi}{10}) $$ We get, $$ \pi = 10\sum_{0}^{\infty}\frac{(2n-1)!!(\frac{\sqrt{5}-1}{4})^{2n+1}}{(2n)!!(2n+1)} $$
With my limited observation, seemed to converge at a similar rate to $\arcsin(\sin\frac{\pi}{24})$
Is there any way to find $\sin\frac{\pi}{n}$ Without using $\pi$ and isn't computationally very tasking? Thanks.