show/hide this revision's text 11 added 99 characters in body

The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest --not by a long shot, not by any reasonable usefulness. Also, it all depends on what kind of accuracy you are looking for. The fastest pi I know of is the digits hard coded. Looking at Pi, you can see some mathematical formulations for calculating pi. The math behind this one I'm not strong in at all, but there are lots of formulas that are fairly simple.

Here is another method that converges quickly (~14digits per iteration), the current fastest application is PiFast uses this formula with the FFT. I'll just write the formula, since the code is straight forward. This formula was almost found by Ramanujan and discovered by Chudnovsky. It is actually how he calculated several billion digits of the number --so it isn't a method to disregard. The formula will overflow quickly since we are dividing factorials, it would be advantageous to delay such calculating to remove terms.

alt text, where,

k1=545140134; k2=13591409; k3=640320; k4=100100025; k5=327843840; k6=53360;

Below is the Brent–Salamin algorithm. The current fastest application is PiFast uses this formula. Wikipedia says that when a and b are 'close enough' then (a+b)^2/4t will be an approximation of pi. I'm not sure what 'close enough' means, but from my tests, one iteration got 2digits, two got 7, and three had 15, of course this is with doubles, so it might have error based on it's representation and the 'true' calculation could be more accurate.

let pi_2 iters =
    let rec loop_ a b t p i =
        if i = 0 then a,b,t,p
        else
            let a_n = (a +. b) /. 2.0 
            and b_n = sqrt (a*.b)
            and p_n = 2.0 *. p in
            let t_n = t -. (p *. (a -. a_n) *. (a -. a_n)) in
            loop_ a_n b_n t_n p_n (i - 1)
    in 
    let a,b,t,p = loop_ (1.0) (1.0 /. (sqrt 2.0)) (1.0/.4.0) (1.0) iters in
    (a +. b) *. (a +. b) /. (4.0 *. t)

Lastly, how about some pi golf (800digits)? 160characters!

int a=10000,b,c=2800,d,e,f[2801],g;main(){for(;b-c;)f[b++]=a/5;for(;d=0,g=c*2;c-=14,printf("%.4d",e+d/a),e=d%a)for(b=c;d+=f[b]*a,f[b]=d%--g,d/=g--,--b;d*=b);}
show/hide this revision's text 10 deleted 627 characters in body

The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest --not by a long shot, not by any reasonable usefulness. Also, it all depends on what kind of accuracy you are looking for. The fastest pi I know of is thirty the digits hard coded. Looking at Pi, you can see some mathematical formulations for calculating pi. The current fastest application is PiFast. The math behind this one I'm not strong in at all.

Below is a quick (writing time, not execution time) implementation of one of the first product methods in ocaml. I chose this one over the others since it doesn't take square roots or use any other constants, like e . Also, one can easily take this formula, utilizing a lower bound for the product, and distribute it over a number but there are lots of processors and gather, multiplying the results.

(* [pi terms] calculate pi using [terms] as upper bound to the formula: *       --- *  pi = | | ___4k**2____ *       | | (2k-1)(2k+1) *       k=1 *)let pi terms =     let rec pi_ terms acc =        let single_term k =             let twok = 2. *. (float k) in            let deno = (twok -. 1.) *. (twok +. 1.)            and numr = twok *. twok in            numr /. deno        in         if terms = 0 then 2.0 *. acc        else pi_ (terms-1) (acc *formulas that are fairly simple.(single_term terms))    pi_ terms 1.0# pi 20000000- : float = 3.1415926142570449

edit: should have tested after i made minor changes

Here is another method that converges quickly , like 14digits (~14digits per iterationiteration). I'll just write the formula, since the code is straight forward. This formula was overlooked almost found by Ramanujan and found by discovered Chudnovsky. This It is actually how he calculated several billion digits of the number --so it isn't a method to disregard. The formula will overflow quickly since we are dividing factorials, it would be advantageous to delay such calculating to remove terms.

This

Below is the Brent–Salamin algorithm. The current fastest application is PiFast uses this formula. Wikipedia says that when a and b are 'close enough' then (a+b)^2/4t will be an approximation of pi. I'm not sure what 'close enough' means, but from my tests, one iteration got 2digits, two got 7, and three for had 15--this , of course this is with the floating point doubles, so it might have error based on it's representation and the 'true' calculation could be more accurate.

show/hide this revision's text 9 added 928 characters in body

This is the Brent–Salamin algorithm. Wikipedia says that when a and b are 'close enough' then (a+b)^2/4t will be an approximation of pi. I'm not sure what 'close enough' means, but from my tests, one iteration got 2digits, two got 7, and three for 15 --this is with the floating point error.

let pi_2 iters =    let rec loop_ a b t p i =        if i = 0 then a,b,t,p            let a_n = (a +. b) /. 2.0             and b_n = sqrt (a*.b)            and p_n = 2.0 *. p in            let t_n = t -. (p *. (a -. a_n) *. (a -. a_n)) in            loop_ a_n b_n t_n p_n (i - 1)    in     let a,b,t,p = loop_ (1.0) (1.0 /. (sqrt 2.0)) (1.0/.4.0) (1.0) iters in    (a +. b) *. (a +. b) /. (4.0 *. t)
        
show/hide this revision's text 8 added 573 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 7
show/hide this revision's text 6
show/hide this revision's text 5
show/hide this revision's text 4
show/hide this revision's text 3
show/hide this revision's text 2
show/hide this revision's text 1