Fastest way to get value of pi - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T11:43:11Zhttp://stackoverflow.com/feeds/question/19http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi37Fastest way to get value of piChris Jester-Young2008-08-01T05:21:22Z2009-12-10T23:25:27Z
<p>Solutions welcome in any language. :-) I'm looking for the fastest way to obtain the value of pi, as a personal challenge. More specifically I'm using ways that don't involve using <code>#define</code>d constants like <code>M_PI</code>, or hard-coding the number in.</p>
<p>The program below tests the various ways I know of. The inline assembly version is, in theory, the fastest option, though clearly not portable; I've included it as a baseline to compare the other versions against. In my tests, with built-ins, the <code>4 * atan(1)</code> version is fastest on GCC 4.2, because it auto-folds the <code>atan(1)</code> into a constant. With <code>-fno-builtin</code> specified, the <code>atan2(0, -1)</code> version is fastest.</p>
<p>Here's the main testing program (<code>pitimes.c</code>):</p>
<pre><code>#include <math.h>
#include <stdio.h>
#include <time.h>
#define ITERS 10000000
#define TESTWITH(x) { \
diff = 0.0; \
time1 = clock(); \
for (i = 0; i < ITERS; ++i) \
diff += (x) - M_PI; \
time2 = clock(); \
printf("%s\t=> %e, time => %f\n", #x, diff, diffclock(time2, time1)); \
}
static inline double
diffclock(clock_t time1, clock_t time0)
{
return (double) (time1 - time0) / CLOCKS_PER_SEC;
}
int
main()
{
int i;
clock_t time1, time2;
double diff;
/* Warmup. The atan2 case catches GCC's atan folding (which would
* optimise the ``4 * atan(1) - M_PI'' to a no-op), if -fno-builtin
* is not used. */
TESTWITH(4 * atan(1))
TESTWITH(4 * atan2(1, 1))
#if defined(__GNUC__) && (defined(__i386__) || defined(__amd64__))
extern double fldpi();
TESTWITH(fldpi())
#endif
/* Actual tests start here. */
TESTWITH(atan2(0, -1))
TESTWITH(acos(-1))
TESTWITH(2 * asin(1))
TESTWITH(4 * atan2(1, 1))
TESTWITH(4 * atan(1))
return 0;
}
</code></pre>
<p>And the inline assembly stuff (<code>fldpi.c</code>), noting that it will only work for x86 and x64 systems:</p>
<pre><code>double
fldpi()
{
double pi;
asm("fldpi" : "=t" (pi));
return pi;
}
</code></pre>
<p>And a build script that builds all the configurations I'm testing (<code>build.sh</code>):</p>
<pre><code>#!/bin/sh
gcc -O3 -Wall -c -m32 -o fldpi-32.o fldpi.c
gcc -O3 -Wall -c -m64 -o fldpi-64.o fldpi.c
gcc -O3 -Wall -ffast-math -m32 -o pitimes1-32 pitimes.c fldpi-32.o
gcc -O3 -Wall -m32 -o pitimes2-32 pitimes.c fldpi-32.o -lm
gcc -O3 -Wall -fno-builtin -m32 -o pitimes3-32 pitimes.c fldpi-32.o -lm
gcc -O3 -Wall -ffast-math -m64 -o pitimes1-64 pitimes.c fldpi-64.o -lm
gcc -O3 -Wall -m64 -o pitimes2-64 pitimes.c fldpi-64.o -lm
gcc -O3 -Wall -fno-builtin -m64 -o pitimes3-64 pitimes.c fldpi-64.o -lm
</code></pre>
<p>Apart from testing between various compiler flags (I've compared 32-bit against 64-bit too, because the optimisations are different), I've also tried switching the order of the tests around. The <code>atan2(0, -1)</code> version still comes out top every time, though.</p>
<p>I'm keen to hear what results you have, as well as improvements to the testing process. :-)</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/71#7118Answer by Leon Bambrick for Fastest way to get value of piLeon Bambrick2008-08-01T13:37:59Z2008-08-01T13:37:59Z<p>Here's a general description of a technique for calculating pi that i learnt in high-school.</p>
<p>I only share this because I think it is simple enough that anyone can remember it, indefinitely, plus it teaches you the concept of "Monte-Carlo" methods -- which are statistical methods of arriving at answers that don't immediately appear to be deducible through random processes.</p>
<p>Draw a square, and inscribe a quadrant (one quarter of a semi-circle) inside that square (a quadrant with radius equal to the side of the square, so it fills as much of the square as possible)</p>
<p>Now throw a dart at the square, and record where it lands -- that is, choose a random point anywhere inside the square. Of course it landed inside the square, but is it inside the semi-circle? record this fact.</p>
<p>Repeat this process many times -- and you will find there is a ratio of the number of points inside the semi-circle versus the total number thrown, call this ratio x.</p>
<p>Since the area of the square is r times r, you can deduce that the area of the semi circle is x times r times r (that is, x times r squared). Hence x times 4 will give you pi. </p>
<p>This is not a quick method to use. But it's a nice example of a monte carlo method. And if you look around, you may find that many problems otherwise outside your computational skills can be solved by such methods.</p>http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/277#2774Answer by Jeff Atwood for Fastest way to get value of piJeff Atwood2008-08-02T00:09:17Z2008-08-02T00:09:17Z<p>I apologize, this is my fault. The original question got pulled because our inappropriate soft-delete threshold was set absurdly low (TWO!)</p>
<p>Now it's set to 10.</p>
<p>Carry on! And be nice this time! Sheesh!</p>http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/531#53136Answer by nlucaroni for Fastest way to get value of pinlucaroni2008-08-02T18:22:52Z2008-09-23T22:37:06Z<p>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 <a href="http://functions.wolfram.com/Constants/Pi/" rel="nofollow" title="pi">Pi</a>, you can see some mathematical formulations for calculating pi. The math behind this one I'm not strong in at all, but there are <a href="http://functions.wolfram.com/PDF/Pi.pdf" rel="nofollow" title="pi formulas">lots of formulas that are fairly simple</a>.</p>
<p>Here is another method that converges quickly (~14digits per iteration), the current fastest application is <a href="http://numbers.computation.free.fr/Constants/PiProgram/pifast.html" rel="nofollow" title="PiFast">PiFast</a> uses this formula with the <a href="http://www.ele.uri.edu/~hansenj/projects/ele436/fft.pdf" rel="nofollow">FFT</a>. I'll just write the formula, since the code is straight forward. This formula was almost found by <a href="http://numbers.computation.free.fr/Constants/Pi/piramanujan.html" rel="nofollow">Ramanujan and discovered by Chudnovsky</a>. 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.</p>
<p><img src="http://i247.photobucket.com/albums/gg137/trigger0219/png.png" alt="alt text" />, where,</p>
<pre><code>k1=545140134; k2=13591409; k3=640320; k4=100100025; k5=327843840; k6=53360;
</code></pre>
<p>Below is the <a href="http://mathworld.wolfram.com/Brent-SalaminFormula.html" rel="nofollow" title="Brent Salamin Formula">Brent–Salamin algorithm</a>. 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.</p>
<pre><code>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)
</code></pre>
<p>Lastly, how about some pi golf (800digits)? 160characters!</p>
<pre><code>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);}
</code></pre>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/988#98810Answer by Ryan Fox for Fastest way to get value of piRyan Fox2008-08-04T02:48:02Z2008-08-04T02:48:02Z<p>Got a physics engine handy?</p>
<p><a href="http://www.wikihow.com/Calculate-Pi-by-Throwing-Frozen-Hot-Dogs" rel="nofollow">http://www.wikihow.com/Calculate-Pi-by-Throwing-Frozen-Hot-Dogs</a></p>
<p>Granted, this is <em>slightly</em> non-optimal, but it's way more interesting.</p>http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/997#9971Answer by Chris Jester-Young for Fastest way to get value of piChris Jester-Young2008-08-04T03:10:31Z2008-08-04T03:10:31Z<p>@Ryan: Just <em>slightly</em> non-optimal and way more interesting, like <a href="http://www.catb.org/%7Eesr/jargon/html/B/bogo-sort.html" rel="nofollow">Bogosort</a>. :-P Very neat!</p>http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/998#9981Answer by Ryan Fox for Fastest way to get value of piRyan Fox2008-08-04T03:13:10Z2008-08-04T03:13:10Z<p>@Chris:
Don't forget Bogosort's cousin, <a href="http://en.wikipedia.org/wiki/Bogosort#Bozo_sort" rel="nofollow">Bozosort</a>.</p>http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1003#10030Answer by Chris Jester-Young for Fastest way to get value of piChris Jester-Young2008-08-04T03:29:23Z2008-08-04T03:29:23Z<p>@Ryan: Can we consider Bozosort and/or Bogosort "sorting by Monte Carlo"? You can have a metric of sorted-ness, based on the proportion of pair-wise comparisons are in the desired order, and tally up these metrics as the simulation goes....</p>http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/4089#40891Answer by Michiel de Mare for Fastest way to get value of piMichiel de Mare2008-08-06T22:54:12Z2008-08-06T22:54:12Z<p>If by fastest you mean fastest to type in the code, here's the <a href="http://www.golfscript.com/golfscript/examples.html" rel="nofollow">golfscript</a> solution:</p>
<pre><code>;''6666,-2%{2+.2/@*\/10.3??2*+}*`1000<~\;<br></code></pre>http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/14486#14486-2Answer by Drew Gibson for Fastest way to get value of piDrew Gibson2008-08-18T11:57:08Z2008-08-18T11:57:08Z<p>Check out Earl F Glynn's computer lab site... specifically the <a href="http://www.efg2.com/Lab/Mathematics/Buffon.htm" rel="nofollow">Buffon's Needles</a> page, which describes the maths and theory behind the Monte Carlo simulation used, and where you can download some source code in Delphi.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/14514#145144Answer by jakemcgraw for Fastest way to get value of pijakemcgraw2008-08-18T12:25:26Z2008-08-18T12:25:26Z<p>Read this:</p>
<pre><code>3.14
</code></pre>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/16404#1640415Answer by Dan Head for Fastest way to get value of piDan Head2008-08-19T15:28:41Z2009-01-12T18:48:18Z<pre><code>assert(inIndiana && bill246passed)
TESTWITH(16/5)
</code></pre>
<p><a href="http://en.wikipedia.org/wiki/Indiana_Pi_Bill" rel="nofollow" title="Indiana Pi Bill">Much quicker ;)</a></p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/25197#251977Answer by OysterD for Fastest way to get value of piOysterD2008-08-24T17:14:08Z2008-08-24T17:14:08Z<p>There's actually a whole book dedicated (amongst other things) to <em>fast</em> methods for the computation of \pi: 'Pi and the AGM', by Jonathan and Peter Borwein (<a href="http://rads.stackoverflow.com/amzn/click/047131515X" rel="nofollow" title="available on Amazon">available on Amazon</a>).</p>
<p>I studied the AGM and related algorithms quite a bit: it's quite interesting (though sometimes non-trivial).</p>
<p>Note that to implement most modern algorithms to compute \pi, you will need a multiprecision arithmetic library (<a href="http://gmplib.org/" rel="nofollow">GMP</a> is quite a good choice, though it's been a while since I last used it).</p>
<p>The time-complexity of the best algorithms is in O(M(n)log(n)), where M(n) is the time-complexity for the multiplication of two n-bit integers (M(n)=O(n log(n) log(log(n))) using FFT-based algorithms, which are usually needed when computing digits of \pi, and such an algorithm is implemented in GMP).</p>
<p>Note that even though the mathematics behind the algorithms might not be trivial, the algorithms themselves are usually a few lines of pseudo-code, and their implementation is usually very straightforward (if you chose not to write your own multiprecision arithmetic :-) ). <a href="http://blogger.xs4all.nl/novaloka/archive/2006/08/09/112115.aspx" rel="nofollow">Here</a> you can find a sample implementation in Java (and easily recover the algorithm form it!).</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/34239#342396Answer by Tyler for Fastest way to get value of piTyler2008-08-29T09:22:16Z2008-08-29T09:22:16Z<p>The <a href="http://en.wikipedia.org/wiki/Bailey-Borwein-Plouffe_formula" rel="nofollow">BBP formula</a> allows you to compute the nth digit - in base 2 (or 16) - without having to even bother with the previous n-1 digits first :)</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/39512#3951219Answer by Pat for Fastest way to get value of piPat2008-09-02T13:28:51Z2008-09-02T13:28:51Z<p>I really like this program, which approximates pi by looking at its own area :-)</p>
<p>IOCCC 1998 : <a href="http://www0.us.ioccc.org/1988/westley.c" rel="nofollow">westley.c</a> </p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/79104#791043Answer by EvilTeach for Fastest way to get value of piEvilTeach2008-09-17T01:53:54Z2008-09-17T01:53:54Z<p>Pick a better algorithm.<br />
<a href="http://en.wikipedia.org/wiki/Gauss%E2%80%93Legendre_algorithm" rel="nofollow">This one</a> is more work, but converges fast.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/85798#857981Answer by Brad Gilbert for Fastest way to get value of piBrad Gilbert2008-09-17T17:49:15Z2008-09-17T17:49:15Z<h2>Calculate PI at compile-time with D.</h2>
<p>( Copied from <a href="http://www.dsource.org/projects/ddl/browser/trunk/meta/demo/calcpi.d" rel="nofollow">DSource.org</a> )</p>
<pre><code>/** Calculate pi at compile time
*
* Compile with dmd -c pi.d
*/
module calcpi;
import meta.math;
import meta.conv;
/** real evaluateSeries!(real x, real metafunction!(real y, int n) term)
*
* Evaluate a power series at compile time.
*
* Given a metafunction of the form
* real term!(real y, int n),
* which gives the nth term of a convergent series at the point y
* (where the first term is n==1), and a real number x,
* this metafunction calculates the infinite sum at the point x
* by adding terms until the sum doesn't change any more.
*/
template evaluateSeries(real x, alias term, int n=1, real sumsofar=0.0)
{
static if (n>1 && sumsofar == sumsofar + term!(x, n+1)) {
const real evaluateSeries = sumsofar;
} else {
const real evaluateSeries = evaluateSeries!(x, term, n+1, sumsofar + term!(x, n));
}
}
/*** Calculate atan(x) at compile time.
*
* Uses the Maclaurin formula
* atan(z) = z - z^3/3 + Z^5/5 - Z^7/7 + ...
*/
template atan(real z)
{
const real atan = evaluateSeries!(z, atanTerm);
}
template atanTerm(real x, int n)
{
const real atanTerm = (n & 1 ? 1 : -1) * pow!(x, 2*n-1)/(2*n-1);
}
/// Machin's formula for pi
/// pi/4 = 4 atan(1/5) - atan(1/239).
pragma(msg, "PI = " ~ fcvt!(4.0 * (4*atan!(1/5.0) - atan!(1/239.0))) );
</code></pre>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/164687#1646874Answer by Andrea Ambu for Fastest way to get value of piAndrea Ambu2008-10-02T21:27:55Z2008-10-02T22:11:35Z<p>This is a "classic" method, very easy to implement.
This implementation, in python (not so fast language) does it:</p>
<pre><code>from math import pi
from time import time
precision = 10**6 # higher value -> higher precision
# lower value -> higher speed
t = time()
calc = 0
for k in xrange(0, precision):
calc += ((-1)**k) / (2*k+1.)
calc *= 4. # this is just a little optimization
t = time()-t
print "Calculated: %.40f" % calc
print "Costant pi: %.40f" % pi
print "Difference: %.40f" % abs(calc-pi)
print "Time elapsed: %s" % repr(t)
</code></pre>
<p>You can find more information <a href="http://functions.wolfram.com/Constants/Pi/02/" rel="nofollow">here</a>.</p>
<p>Anyway the fastest way to get a precise as-much-as-you-want value of pi in python is:</p>
<pre><code>from gmpy import pi
print pi(3000) # the rule is the same as
# the precision on the previous code
</code></pre>
<p>here is the piece of source for the gmpy pi method, I don't think the code is as much useful as the comment in this case:</p>
<pre><code>static char doc_pi[]="\
pi(n): returns pi with n bits of precision in an mpf object\n\
";
/* This function was originally from netlib, package bmp, by
* Richard P. Brent. Paulo Cesar Pereira de Andrade converted
* it to C and used it in his LISP interpreter.
*
* Original comments:
*
* sets mp pi = 3.14159... to the available precision.
* uses the gauss-legendre algorithm.
* this method requires time o(ln(t)m(t)), so it is slower
* than mppi if m(t) = o(t**2), but would be faster for
* large t if a faster multiplication algorithm were used
* (see comments in mpmul).
* for a description of the method, see - multiple-precision
* zero-finding and the complexity of elementary function
* evaluation (by r. p. brent), in analytic computational
* complexity (edited by j. f. traub), academic press, 1976, 151-176.
* rounding options not implemented, no guard digits used.
*/
static PyObject *
Pygmpy_pi(PyObject *self, PyObject *args)
{
PympfObject *pi;
int precision;
mpf_t r_i2, r_i3, r_i4;
mpf_t ix;
ONE_ARG("pi", "i", &precision);
if(!(pi = Pympf_new(precision))) {
return NULL;
}
mpf_set_si(pi->f, 1);
mpf_init(ix);
mpf_set_ui(ix, 1);
mpf_init2(r_i2, precision);
mpf_init2(r_i3, precision);
mpf_set_d(r_i3, 0.25);
mpf_init2(r_i4, precision);
mpf_set_d(r_i4, 0.5);
mpf_sqrt(r_i4, r_i4);
for (;;) {
mpf_set(r_i2, pi->f);
mpf_add(pi->f, pi->f, r_i4);
mpf_div_ui(pi->f, pi->f, 2);
mpf_mul(r_i4, r_i2, r_i4);
mpf_sub(r_i2, pi->f, r_i2);
mpf_mul(r_i2, r_i2, r_i2);
mpf_mul(r_i2, r_i2, ix);
mpf_sub(r_i3, r_i3, r_i2);
mpf_sqrt(r_i4, r_i4);
mpf_mul_ui(ix, ix, 2);
/* Check for convergence */
if (!(mpf_cmp_si(r_i2, 0) &&
mpf_get_prec(r_i2) >= (unsigned)precision)) {
mpf_mul(pi->f, pi->f, r_i4);
mpf_div(pi->f, pi->f, r_i3);
break;
}
}
mpf_clear(ix);
mpf_clear(r_i2);
mpf_clear(r_i3);
mpf_clear(r_i4);
return (PyObject*)pi;
}
</code></pre>
<p><hr /></p>
<p><strong>EDIT:</strong> I had some problem with cut and paste and identation, anyway you can find the source <a href="http://code.google.com/p/gmpy/source/browse/branches/aleax-sandbox/src/gmpy.c" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/240554#24055419Answer by Hugo for Fastest way to get value of piHugo2008-10-27T16:41:05Z2008-10-27T16:41:05Z<ol>
<li>Go to Amazon.com;</li>
<li>Search for pi book (containing only digits);</li>
<li>Filter out books about cooking;</li>
<li>Order the book;</li>
<li>Wait for delivery;</li>
<li>Start typing the digits from the book into your program;</li>
<li>List item;</li>
<li>Get bored;</li>
<li>Order a scanner;</li>
<li>Wait for scanner delivery;</li>
<li>Realize that you also need an OCR program;</li>
<li>Order OCR program, yes you will get a floppy in the mail;</li>
<li>Add a PDF feature to your program so that it can read the PDF file containing PI with thousands of decimals;</li>
<li>Celebrate with coffee.</li>
</ol>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/240569#2405694Answer by John Topley for Fastest way to get value of piJohn Topley2008-10-27T16:45:01Z2008-10-27T16:45:01Z<pre><code><joke>22/7</joke>
</code></pre>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/279191#2791911Answer by gbarry for Fastest way to get value of pigbarry2008-11-10T21:11:11Z2008-11-10T21:11:11Z<p>I once thought that I could write something to do one of these Monte Carlo simulations. I didn't get very far before I discovered that in order to decide if something is inside or outside the circle, you had to describe the circle itself--something for which you need to know the value of pi! So that ended that. Was I wrong about this?</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/279205#2792057Answer by Cruachan for Fastest way to get value of piCruachan2008-11-10T21:14:42Z2008-11-10T21:14:42Z<p>Easy, the value of Pi is exactly 3, says so in the Bible </p>
<p>:-^</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/436447#4364472Answer by JosephStyons for Fastest way to get value of piJosephStyons2009-01-12T18:24:48Z2009-01-12T18:30:06Z<p>This version (in Delphi) is nothing special, but it is at least faster than <a href="http://blogs.codegear.com/nickhodges/2009/01/09/39174" rel="nofollow">the version Nick Hodge posted on his blog</a> :). On my machine, it takes about 16 seconds to do a billion iterations, giving a value of <strong>3.14159265</strong>25879 (the accurate part is in bold).</p>
<pre><code>program calcpi;
{$APPTYPE CONSOLE}
uses
SysUtils;
var
start, finish: TDateTime;
function CalculatePi(iterations: integer): double;
var
numerator, denominator, i: integer;
sum: double;
begin
{
PI may be approximated with this formula:
4 * (1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 .......)
//}
numerator := 1;
denominator := 1;
sum := 0;
for i := 1 to iterations do begin
sum := sum + (numerator/denominator);
denominator := denominator + 2;
numerator := -numerator;
end;
Result := 4 * sum;
end;
begin
try
start := Now;
WriteLn(FloatToStr(CalculatePi(StrToInt(ParamStr(1)))));
finish := Now;
WriteLn('Seconds:' + FormatDateTime('hh:mm:ss.zz',finish-start));
except
on E:Exception do
Writeln(E.Classname, ': ', E.Message);
end;
end.
</code></pre>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/436473#436473-2Answer by Andrew G. Johnson for Fastest way to get value of piAndrew G. Johnson2009-01-12T18:31:48Z2009-01-12T18:31:48Z<p>Take 314000 and divide by 100000.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/436531#4365312Answer by krusty.ar for Fastest way to get value of pikrusty.ar2009-01-12T18:46:22Z2009-01-19T13:32:19Z<p>Just came across this one that should be here for completeness: </p>
<p><a href="http://www.dangermouse.net/esoteric/piet/piet_pi.png" rel="nofollow">calculate PI in Piet</a></p>
<p>It has the rather nice property that the precision can be improved making the program bigger. </p>
<p><a href="http://www.dangermouse.net/esoteric/piet.html" rel="nofollow">Here</a>'s some insight into the language itself</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/436708#4367081Answer by Ates Goral for Fastest way to get value of piAtes Goral2009-01-12T19:36:49Z2009-01-12T20:07:52Z<p>Let's not forget the infamous macro injection attack:</p>
<pre><code>#define fastPi i=ITERS);\
printf("fastPi\t=> 0.000000, time => 0.000000\n");\
return 0;\
(0
TESTWITH(fastPi())
</code></pre>
<p>Gives:</p>
<pre>fastPi => 0.000000, time => 0.000000</pre>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/524170#5241701Answer by Vardhan Varma for Fastest way to get value of piVardhan Varma2009-02-07T17:31:53Z2009-12-10T23:25:27Z<p>How I need an alcoholic drink of course after the heavy session involving quantum mechanics.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/524242#5242422Answer by Dave Sherohman for Fastest way to get value of piDave Sherohman2009-02-07T18:04:23Z2009-02-07T18:04:23Z<p>Since the question is for the fastest way to <em>get</em> the value, rather than the fastest way to <em>calculate</em> the value:</p>
<p>Go to <a href="http://www.google.com/search?q=value+of+pi" rel="nofollow">http://www.google.com/search?q=value+of+pi</a> and select one or more of the result pages which appear likely to contain a value accurate enough to meet your needs.</p>
<p>If that's not quick enough, you can bypass the google step and go directly to <a href="http://www.dbooth.net/internerd/pifinders.cfm" rel="nofollow">http://www.dbooth.net/internerd/pifinders.cfm</a> to get the value of pi to far more digits than I care to count at the moment.</p>
<p>For greater precision, <a href="http://ja0hxv.calico.jp/pai/epivalue.html" rel="nofollow">http://ja0hxv.calico.jp/pai/epivalue.html</a> has it to 100 billion digits, but they're split up into 1000 separate zip files, which would require the additional steps of retrieving, unzipping, and concatenating the files before you had your value.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/571276#5712761Answer by Kristopher Johnson for Fastest way to get value of piKristopher Johnson2009-02-20T21:21:20Z2009-02-20T21:26:34Z<p>Back in the old days, with small word sizes and slow or non-existent floating-point operations, we used to do stuff like this:</p>
<pre><code>/* Return approximation of n * PI; n is integer */
#define pi_times(n) (((n) * 22) / 7)
</code></pre>
<p>For applications that don't require a lot of precision (video games, for example), this is very fast and is accurate enough.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/571300#5713004Answer by Adam Davis for Fastest way to get value of piAdam Davis2009-02-20T21:31:02Z2009-02-20T21:31:02Z<blockquote>
<p>I'm looking for the fastest way to
obtain the value of pi</p>
</blockquote>
<p>A reasonably fast algorithm:</p>
<pre><code>curl http://www.google.com/search?q=pi
</code></pre>
<p>Note that it only results in 9 significant digits, and substantial work has to be done on the back end to supply more.</p>
<p>However, there's already a web interface, and it may even be accessable through a SOAP or similar API.</p>
<p>Try it out <a href="http://www.google.com/search?q=pi" rel="nofollow">here</a>.</p>
<p>-Adam</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/592025#5920252Answer by Jason Delife for Fastest way to get value of piJason Delife2009-02-26T19:22:22Z2009-02-26T19:22:22Z<p>Pi is exactly 3! [Prof. Frink (Simpsons)]</p>
<p>Joke, but here's one in C# (.NET-Framework required).</p>
<pre><code>using System;
using System.Text;
class Program {
static void Main(string[] args) {
int Digits = 100;
BigNumber x = new BigNumber(Digits);
BigNumber y = new BigNumber(Digits);
x.ArcTan(16, 5);
y.ArcTan(4, 239);
x.Subtract(y);
string pi = x.ToString();
Console.WriteLine(pi);
}
}
public class BigNumber {
private UInt32[] number;
private int size;
private int maxDigits;
public BigNumber(int maxDigits) {
this.maxDigits = maxDigits;
this.size = (int)Math.Ceiling((float)maxDigits * 0.104) + 2;
number = new UInt32[size];
}
public BigNumber(int maxDigits, UInt32 intPart)
: this(maxDigits) {
number[0] = intPart;
for (int i = 1; i < size; i++) {
number[i] = 0;
}
}
private void VerifySameSize(BigNumber value) {
if (Object.ReferenceEquals(this, value))
throw new Exception("BigNumbers cannot operate on themselves");
if (value.size != this.size)
throw new Exception("BigNumbers must have the same size");
}
public void Add(BigNumber value) {
VerifySameSize(value);
int index = size - 1;
while (index >= 0 && value.number[index] == 0)
index--;
UInt32 carry = 0;
while (index >= 0) {
UInt64 result = (UInt64)number[index] +
value.number[index] + carry;
number[index] = (UInt32)result;
if (result >= 0x100000000U)
carry = 1;
else
carry = 0;
index--;
}
}
public void Subtract(BigNumber value) {
VerifySameSize(value);
int index = size - 1;
while (index >= 0 && value.number[index] == 0)
index--;
UInt32 borrow = 0;
while (index >= 0) {
UInt64 result = 0x100000000U + (UInt64)number[index] -
value.number[index] - borrow;
number[index] = (UInt32)result;
if (result >= 0x100000000U)
borrow = 0;
else
borrow = 1;
index--;
}
}
public void Multiply(UInt32 value) {
int index = size - 1;
while (index >= 0 && number[index] == 0)
index--;
UInt32 carry = 0;
while (index >= 0) {
UInt64 result = (UInt64)number[index] * value + carry;
number[index] = (UInt32)result;
carry = (UInt32)(result >> 32);
index--;
}
}
public void Divide(UInt32 value) {
int index = 0;
while (index < size && number[index] == 0)
index++;
UInt32 carry = 0;
while (index < size) {
UInt64 result = number[index] + ((UInt64)carry << 32);
number[index] = (UInt32)(result / (UInt64)value);
carry = (UInt32)(result % (UInt64)value);
index++;
}
}
public void Assign(BigNumber value) {
VerifySameSize(value);
for (int i = 0; i < size; i++) {
number[i] = value.number[i];
}
}
public override string ToString() {
BigNumber temp = new BigNumber(maxDigits);
temp.Assign(this);
StringBuilder sb = new StringBuilder();
sb.Append(temp.number[0]);
sb.Append(System.Globalization.CultureInfo.CurrentCulture.NumberFormat.CurrencyDecimalSeparator);
int digitCount = 0;
while (digitCount < maxDigits) {
temp.number[0] = 0;
temp.Multiply(100000);
sb.AppendFormat("{0:D5}", temp.number[0]);
digitCount += 5;
}
return sb.ToString();
}
public bool IsZero() {
foreach (UInt32 item in number) {
if (item != 0)
return false;
}
return true;
}
public void ArcTan(UInt32 multiplicand, UInt32 reciprocal) {
BigNumber X = new BigNumber(maxDigits, multiplicand);
X.Divide(reciprocal);
reciprocal *= reciprocal;
this.Assign(X);
BigNumber term = new BigNumber(maxDigits);
UInt32 divisor = 1;
bool subtractTerm = true;
while (true) {
X.Divide(reciprocal);
term.Assign(X);
divisor += 2;
term.Divide(divisor);
if (term.IsZero())
break;
if (subtractTerm)
this.Subtract(term);
else
this.Add(term);
subtractTerm = !subtractTerm;
}
}
}
</code></pre>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/622950#6229504Answer by bob for Fastest way to get value of pibob2009-03-08T03:02:12Z2009-03-08T03:02:12Z<p>instead of defining pi as a constant, I always use cos(-1).</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1230060#12300600Answer by James Youngman for Fastest way to get value of piJames Youngman2009-08-04T21:39:13Z2009-08-04T21:39:13Z<p>Brent's method posted above by Chris is very good; Brent generally is a giant in the field of arbitrary-precision arithmetic.</p>
<p>If all you want is the Nth digit, the famous
<a href="http://en.literateprograms.org/Pi_with_the_BBP_formula_(Python)" rel="nofollow">BBP formula</a>
is useful in hex</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1439914#14399140Answer by Daniel for Fastest way to get value of piDaniel2009-09-17T16:30:44Z2009-09-17T16:30:44Z<p>If you are willing to use an approximation, <code>355 / 113</code> is good for 6 decimal digits, and has the added advantage of being usable with integer expressions. That's not as important these days, as "floating point math co-processor" ceased to have any meaning, but it was quite important once.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1800872#18008720Answer by Apocalisp for Fastest way to get value of piApocalisp2009-11-26T00:16:31Z2009-11-26T00:16:31Z<p>Pi is irrational. In any language, the value of pi is precisely the mathematical constant π. You can't get its value any more accurately than that.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1801244#18012440Answer by Paul Hsieh for Fastest way to get value of piPaul Hsieh2009-11-26T02:29:37Z2009-11-26T02:29:37Z<p>Uhh ...</p>
<pre><code>#define PI (3.141592653589793238464)
</code></pre>
<p>If you need more digits there are complicated algorithms for producing them as have been posted here. But in general no applications really need that.</p>
http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi/1874803#18748030Answer by jon hanson for Fastest way to get value of pijon hanson2009-12-09T15:51:40Z2009-12-09T15:51:40Z<p>Since PI is transcendental, surely all algorithms take forever to generate the value of PI?</p>
<p>:-P</p>