Yet another π formula
|
11-26-2024, 01:32 AM
(This post was last modified: 11-26-2024 11:54 AM by Albert Chan.)
Post: #25
|
|||
|
|||
RE: Yet another π formula
From previous post, if we ignore S correction, with goal of c1 * c2 = pi, we get this.
\(\displaystyle \frac{\pi}{2} = \sum _{k=0}^∞ \frac {k!}{(2k+1)!!}\) Formula approximately doubled its accuracy after each sum. This explained why previous post, with N=40, c1*c2 get about 40 bits accuracy of pi. To speed up convergence, we can "double" the last term. pi/2 = 1 + 1/3 + 2/15 + 6/105 + 24/945 + ... = (2-1) + (2/3-1/3) + (4/15-2/15) + (12/105-6/105) + (48/945-24/945) + ... = 2 - (1-2/3) - (1/3-4/15) - (2/15-12/105) - (6/105-48/945) - ... k!/(2k+1)!! - 2*(k+1)!/(2k+3)!! = k!/(2k+3)!! Again, we have a pattern here Code: pi/2 = 0 + sum(k!/(2k+1)!!, k=0..inf) Ignore the sum part, we goes full circle pi/2 = 2/1 - 2/3 + 2/5 - 2/7 + ... = 2 * atan(1) |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 3 Guest(s)