|
11
|
|
edited Sep 23 '08 at 22:37
|
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.
, 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);}
|
|
|
|
10
|
|
edited Sep 23 '08 at 22:19
|
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.1415926142570449edit: 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.
|
|
|
|
9
|
|
edited Sep 23 '08 at 15:47
|
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)
|
|
|
|
8
|
|
edited Sep 20 '08 at 4:48
|
The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest --not by a long shot. Also, it all depends on what kind of accuracy you are looking for. The fastest pi I know of is thirty 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 of processors and gather, adding 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 *. (single_term terms))
in
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 per iteration. I'll just write the formula, since the code is straight forward. This formula was overlooked by Ramanujan and found by Chudnovsky. This is actually how he calculated several billion digits of the number.
, where,
k1=545140134; k2=13591409; k3=640320; k4=100100025; k5=327843840; k6=53360;
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);}
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
occurred Sep 20 '08 at 4:48
|
|
|
|
|
|
7
|
|
|
The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest --not by a long shot. Also, it all depends on what kind of accuracy you are looking for. The fastest pi I know of is thirty 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, with a minor modification that takes the log, changing the product to a sum. 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 of processors and gather, adding 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_sum pi_ terms acc =
let single_term k =
let twok = 2. *. (float k) in
let deno = (twok -. 1.) *. (twok +. 1.)
and numr = twok *. twok in
log ( numr /. deno
)
in
if terms = 0 then 2.0 *. acc
else pi_sum pi_ (terms-1) (acc +*. (single_term terms))
in
pi_sum pi_ terms 1.0
# pi 20000000
- : float = 3.1415926142570449
edit: should have tested after i made minor changes
|
|
|
|
6
|
|
|
The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest --not by a long shot. Also, it all depends on what kind of accuracy you are looking for. The fastest pi I know of is thirty 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, with a minor modification that takes the log, changing the product to a sum. 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 of processors and gather, adding 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_sum terms acc =
let single_term k =
let twok = 2. *. (float k) in
let deno = (twok -. 1.) *. (twok +. 1.)
and numr = twok *. twok in
log ( numr /. deno )
in
if terms = 0 then 2.0 *. acc
else pi pi_sum (terms-1) (acc +. (single_term terms))
in
pi_sum terms 1.0
# pi 20000000
- : float = 3.1415926142570449
|
|
|
|
5
|
|
|
The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest --not by a long shot. But this Also, it all depends on what kind of accuracy you are looking for. The fastest pi I know of it's is thirty digits of accuracy 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, with a minor modification that takes the log--changing , changing the product to a sum. 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 of processors and gather, adding 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_sum terms acc =
let single_term k =
let twok = 2. *. (float k) in
let deno = (twok -. 1.) *. (twok +. 1.)
and numr = twok *. twok in
log ( numr /. deno )
in
if terms = 0 then 2.0 *. acc
else pi (terms-1) (acc +. (single_term terms))
in
pi_sum terms 1.0
# pi 20000000
- : float = 3.1415926142570449
|
|
|
|
4
|
|
edited Aug 3 '08 at 19:27
|
The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest. But this all depends on what kind of accuracy you are looking for. The fastest pi I know of it's thirty digits of accuracy 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, with a minor modification that takes the log --changing the product to a sum. 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 of processors and gather adding 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_sum terms acc =
let single_term k =
let twok = 2. *. (float k) in
let deno = (twok -. 1.) *. (twok +. 1.)
and numr = twok *. twok in
log ( numr /. deno )
in
if terms = 0 then 2.0 *. acc
else pi (terms-1) (acc +. (single_term terms))
in
pi_sum terms 1.0
# pi 20000000
- : float = 3.1415926142570449
|
|
|
|
3
|
|
edited Aug 2 '08 at 18:52
|
The monte-carlo method, as mentioned, applies some great concepts but it is, clearly, not the fastest. 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, with a minor modification that takes the log --changing the product to a sum. 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 of processors and gather adding the results.
(* [pi terms] calculate pi using [terms] as upper bound to the formula:
*
* pi = ---
* pi = | | ___4k**2____
* | | (2k-1)(2k+1)
* k=1
*)
let pi terms =
let rec pi_sum terms acc =
let single_term k =
let twok = 2. *. (float k) in
let deno = (twok -. 1.) *. (twok +. 1.)
and numr = twok *. twok in
log ( numr /. deno )
in
if terms = 0 then 2.0 *. acc
else pi (terms-1) (acc +. (single_term terms))
in
pi_sum terms 1.0
# pi 20000000
- : float = 3.1415926142570449
|
|
|
|
2
|
|
edited Aug 2 '08 at 18:30
|
The monte-carlo methodis a great method and , as mentioned, applies some great concepts but it is, clearly, not the fastest. 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, with a minor modification that takes the log --changing the product to a sum. I chose this one over the others since it doesn't take square roots or use any other constants, like e .
(* [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_sum terms acc =
let single_term k =
let twok = 2. *. (float k) in
let deno = (twok -. 1.) *. (twok +. 1.)
and numr = twok *. twok in
log ( numr /. deno )
in
if terms = 0 then 2.0 *. acc
else pi (terms-1) (acc +. (single_term terms))
# in
pi_sum 20000000 terms 1.0
# pi 20000000
- : float = 3.1415926142570449
|
|
|
|
1
|
|
answered Aug 2 '08 at 18:22
|
The monte-carlo method is a great method and applies some great concepts but it is, clearly, not the fastest. 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.
Below is a quick (writing time, not execution time) implementation of one of the first product methods in ocaml, with a minor modification that takes the log --changing the product to a sum.
let rec pi_sum terms acc =
let single_term k =
let twok = 2. *. (float k) in
let deno = (twok -. 1.) *. (twok +. 1.)
and numr = twok *. twok in
log ( numr /. deno )
in
if terms = 0 then 2.0 *. acc
else pi (terms-1) (acc +. (single_term terms))
# pi_sum 20000000 1.0
- : float = 3.1415926142570449
|
|
|