So far it looks like Fabrice Bellard's base 2 equation is the way to go

Ironically this will require a BigReal type; do we have this for .Net? .Net 4.0 has BigInteger.
Anyone have a Haskell version?
|
|
|||||||||||||||
|
|
|
Since you're asking for a Haskell version, here is a paper by Jerzy Karczmarczuk, called "The Most Unreliable Technique in the World to compute π":
It doesn't really solve the problem in an efficient or very practical way, but is entertaining and shows some of the problems with lazy infinite precision arithmetic. |
|||
|
|
|
By far my favorite Haskell spigot for pi comes from Jeremy Gibbons:
The mathematical background that justifies that implementation can be found in: |
||
|
|
|
There exists such possibility to process big rational numbers in DLR-based dynamic languages (e.g. IronPython). Or you can use any portable C/C++ implementation of big real numbers through P/Invoke. |
||
|
|
|
|
Wikipedia details a lot of ways to get numerical approximations of pi here. They also give some sample pseudo-code Edit : If you're interested in this kind of mathematical problems without having any related real-world problem to solve (which is definitely a good attitude to have, IMHO), you could visit the Euler Project page |
||||||||||
|