Post Reply 
Yet another π formula
Yesterday, 01:28 PM (This post was last modified: Yesterday 02:18 PM by Albert Chan.)
Post: #26
RE: Yet another π formula
(11-25-2024 01:47 PM)Albert Chan Wrote:  To match same number of 'terms', we set n = 5-1 = 4 , d = 6-1 = 5
Note: S=S1-S2 because n is even, otherwise it would be S=S1+S2

lua> S1 = 1/(1*3) - 1/(3*5) + 1/(5*7) - 1/(7*9) + 1/(9*11)
lua> S2 = 0.5/(11*13) * (1 + 2/15*(1 + 3/17*(1 + 4/19*(1 + 5/21*(1 + 6/23)))))
lua> (S1-S2)*4 + 2
3.1415943802536885

FYI, above convergence acceleration scheme is EXACTLY the same as my previous post.

pi/2 = (2 - 2/3 + 2/5 - 2/7 + 2/9) - 9!! * sum(k!/(2k+11)!!, k=0..inf)

lua> s1 = (2 - 2/3 + 2/5 - 2/7 + 2/9)
lua> s2 = 1/11*(1 + 1/13*(1 + 2/15*(1 + 3/17*(1 + 4/19*(1 + 5/21*(1 + 6/23))))))
lua> (s1-s2)*2
3.141594380253689
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Yet another π formula - Gerson W. Barbosa - 01-04-2021, 08:41 PM
RE: Yet another π formula - Albert Chan - 01-05-2021, 10:50 PM
RE: Yet another π formula - Albert Chan - 01-06-2021, 01:32 AM
RE: Yet another π formula - Albert Chan - 01-07-2021, 09:56 PM
RE: Yet another π formula - Albert Chan - 11-25-2024, 10:01 PM
RE: Yet another π formula - Albert Chan - Yesterday, 01:32 AM
RE: Yet another π formula - toml_12953 - 01-06-2021, 02:10 AM
RE: Yet another π formula - ttw - 01-06-2021, 03:44 AM
RE: Yet another π formula - Albert Chan - 01-09-2021, 09:22 PM
RE: Yet another π formula - Albert Chan - 11-06-2021, 06:28 PM
RE: Yet another π formula - Thomas Klemm - 11-24-2024, 01:59 PM
RE: Yet another π formula - Albert Chan - 11-25-2024, 01:47 PM
RE: Yet another π formula - Albert Chan - Yesterday 01:28 PM
RE: Yet another π formula - Ren - 11-25-2024, 01:08 AM
RE: Yet another π formula - Thomas Klemm - 11-25-2024, 06:47 PM
RE: Yet another π formula - EdS2 - Yesterday, 02:09 PM
RE: Yet another π formula - Albert Chan - Yesterday, 05:57 PM
RE: Yet another π formula - AnnoyedOne - Yesterday, 02:19 PM
RE: Yet another π formula - C.Ret - Yesterday, 03:42 PM
RE: Yet another π formula - AnnoyedOne - Yesterday, 05:37 PM
RE: Yet another π formula - EdS2 - Today, 09:14 AM



User(s) browsing this thread: 1 Guest(s)