active questions tagged pi - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T04:37:19Z http://stackoverflow.com/feeds/tag/pi http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/19/fastest-way-to-get-value-of-pi 35 Fastest way to get value of pi Chris Jester-Young 2008-08-01T05:21:22Z 2009-11-26T02:38:11Z <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 &lt;math.h&gt; #include &lt;stdio.h&gt; #include &lt;time.h&gt; #define ITERS 10000000 #define TESTWITH(x) { \ diff = 0.0; \ time1 = clock(); \ for (i = 0; i &lt; ITERS; ++i) \ diff += (x) - M_PI; \ time2 = clock(); \ printf("%s\t=&gt; %e, time =&gt; %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__) &amp;&amp; (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/1591977/parallel-but-slower 3 Parallel, but slower blueomega 2009-10-20T01:13:53Z 2009-11-16T21:01:07Z <p>I'm using monte carlo method to calculate pi and do a basic experience with parallel programming and openmp</p> <p>the problem is that when i use 1 thread, x iterations, always runs faster than n thread, x iterations. Can anyone tell me why?</p> <p>For example the code runs like this "a.out 1 1000000", where 1 is threads and 1000000 the iterations</p> <pre><code>include &lt;omp.h&gt; include &lt;stdio.h&gt; include &lt;stdlib.h&gt; include &lt;iostream&gt; include &lt;iomanip&gt; include &lt;math.h&gt; using namespace std; int main (int argc, char *argv[]) { double arrow_area_circle, pi; float xp, yp; int i, n; double pitg= atan(1.0)*4.0; //for pi error cout &lt;&lt; "Number processors: " &lt;&lt; omp_get_num_procs() &lt;&lt; endl; //Number of divisions iterarions=atoi(argv[2]); arrow_area_circle = 0.0; #pragma omp parallel num_threads(atoi(argv[1])) { srandom(omp_get_thread_num()); #pragma omp for private(xp, yp) reduction(+:arrow_area_circle) //*,/,-,+ for (i = 0; i &lt; iterarions; i++) { xp=rand()/(float)RAND_MAX; yp=rand()/(float)RAND_MAX; if(pow(xp,2.0)+pow(yp,2.0)&lt;=1) arrow_area_circle++; } } pi = 4*arrow_area_circle / iterarions; cout &lt;&lt; setprecision(18) &lt;&lt; "PI = " &lt;&lt; pi &lt;&lt; endl &lt;&lt; endl; cout &lt;&lt; setprecision(18) &lt;&lt; "Erro = " &lt;&lt; pitg-pi &lt;&lt; endl &lt;&lt; endl; return 0; } </code></pre> http://stackoverflow.com/questions/1626241/integrating-with-pi-electronique-pos-system 0 Integrating with Pi Electronique POS system configurator 2009-10-26T17:47:15Z 2009-10-26T17:47:15Z <p>I know this question is highly specific, but I'm hoping someone will be able to help me.</p> <p>I'd like to write a program for restaurants that use the PI Electonique POS system. The program needs to access the data that the POS system has - which orders were made, and when, preferably in real time.</p> <ul> <li>How do you access that data?</li> <li>Is it possible to hook a program to run in the background whenever a dish is ordered? </li> <li>Do these machines even run Windows?</li> </ul> <p>Thanks for the help</p> http://stackoverflow.com/questions/1524057/computing-to-infinite-binary-precision-in-c 3 Computing π to "infinite" binary precision in C# Bent Rasmussen 2009-10-06T07:20:38Z 2009-10-13T14:55:50Z <p>So far it looks like Fabrice Bellard's base 2 equation is the way to go</p> <p><img src="http://upload.wikimedia.org/math/c/4/3/c43db33aa2adcff44b4e7966a8750be0.png" alt="alt text" /></p> <p>Ironically this will require a BigReal type; do we have this for .Net? .Net 4.0 has BigInteger.</p> <p>Anyone have a Haskell version?</p> http://stackoverflow.com/questions/1529198/c-math-vs-xna-mathhelper 3 C# Math vs. XNA MathHelper SuperSized 2009-10-07T02:28:34Z 2009-10-07T02:52:51Z <p>Ever since I needed to work with PI (3.1415...) in C# I have used Math.PI to get the value. Usually I would just use values like <code>Math.PI/2.0</code> or <code>2.0*Math.PI</code>, but now I have just noticed that XNA provides a MathHelper class. The nice thing about this is I can call <code>MathHelper.PiOver2</code> and <code>MathHelper.TwoPi</code>, thus making an extremely trivial step even more trivial. ;-)</p> <p>I assumed these two classes were interchangable, but I noticed that <code>Math.PI/2.0 != MathHelper.PiOver2</code>. I tried to research why this would be, but I found nothing. So, I thought I would try my luck here. With regards to using PI, are there any differences between the Math class and the MathHelper class? Is one preferred over the other? Or should I just leave well enough alone and just make sure to consistently use one or the other throughout my program?</p> http://stackoverflow.com/questions/825559/is-java-lang-math-pi-equal-to-gccs-mpi 2 Is java.lang.Math.PI equal to GCC's M_PI? system PAUSE 2009-05-05T15:53:21Z 2009-10-02T19:10:52Z <p>I am coding several reference algorithms in both Java and C/C++. Some of these algorithms use &pi;. I would like for the two implementations of each algorithm to produce <strong>identical</strong> results, without rounding differently. One way to do this that has worked consistently so far is to use a custom-defined <code>pi</code> constant which is exactly the same in both languages, such as 3.14159. However, it strikes me as silly to define pi when there are already high-precision constants defined in both the Java and GCC libraries.</p> <p>I've spent some time writing quick test programs, looking at documentation for each library, and reading up on floating-point types. But I haven't been able to convince myself that java.lang.Math.PI (or java.lang.StrictMath.PI) is, or is not, equal to M_PI in math.h.</p> <p>GCC 3.4.4 (cygwin) math.h contains:</p> <pre><code>#define M_PI 3.14159265358979323846 ^^^^^ </code></pre> <p>but this</p> <pre><code>printf("%.20f", M_PI); </code></pre> <p>produces</p> <pre><code>3.14159265358979311600 ^^^^^ </code></pre> <p>which suggests that the last 5 digits cannot be trusted.</p> <p>Meanwhile, Javadocs say that java.lang.Math.PI is:</p> <blockquote> <p>The <code>double</code> value that is closer than any other to <em>pi</em>, the ratio of the circumference of a circle to its diameter.</p> </blockquote> <p>and</p> <pre><code>public static final double PI 3.141592653589793d </code></pre> <p>which omits the questionable last five digits from the constant.</p> <pre><code>System.out.printf("%.20f\n", Math.PI); </code></pre> <p>produces</p> <pre><code>3.14159265358979300000 ^^^^^ </code></pre> <p>If you have some expertise in floating-point data types, can you convince me that these library constants are exactly equal? Or that they are definitely not equal?</p> http://stackoverflow.com/questions/1190909/pi-infinite-numbers 7 Pi/Infinite Numbers Ben Shelock 2009-07-27T22:04:22Z 2009-10-01T19:07:54Z <p>I'm curious about infinite numbers in computing, in particular pi.</p> <p>For a computer to render a circle it would have to understand pi. But how can it if it is infinite?</p> <p>Am I looking too much into this? Would it just use a rounded value?</p> http://stackoverflow.com/questions/1492307/how-is-calculated-within-sas 1 How is π calculated within sas? Bazil 2009-09-29T12:44:10Z 2009-09-29T13:21:10Z <p>just curious! but I spotted that the value of π held by SAS is in fact incorrect.</p> <p>for instance:</p> <pre><code>data _null_; x= constant('pi') * 1000000000000000000000000000; put x= 32.; run; </code></pre> <p>gives a π value of (3.)141592653589792961327005696</p> <p>however - π is of course (3.)1415926535897932384626433832795 ( <a href="http://www.joyofpi.com/pi.html" rel="nofollow">http://www.joyofpi.com/pi.html</a> ) - to 31 dp.</p> <p>what gives??!!</p> http://stackoverflow.com/questions/1479291/calculating-the-value-of-pi-what-is-wrong-with-my-code 2 Calculating the value of pi-what is wrong with my code Pat 2009-09-25T19:59:08Z 2009-09-27T17:04:53Z <p>Hi,</p> <p>I'm doing another C++ exercise. I have to calculate the value of pi from the infinite series:</p> <p>pi=4 - 4/3 + 4/5 – 4/7 + 4/9 -4/11+ . . .</p> <p>The program has to print the approximate value of pi after each of the first 1,000 terms of this series. Here is my code:</p> <pre><code>#include &lt;iostream&gt; using namespace std; int main() { double pi=0.0; int counter=1; for (int i=1;;i+=2)//infinite loop, should "break" when pi=3.14159 { double a=4.0; double b=0.0; b=a/static_cast&lt;double&gt;(i); if(counter%2==0) pi-=b; else pi+=b; if(i%1000==0)//should print pi value after 1000 terms,but it doesn't cout&lt;&lt;pi&lt;&lt;endl; if(pi==3.14159)//this if statement doesn't work as well break; counter++; } return 0; } </code></pre> <p>It compiles without errors and warnings, but only the empty console window appears after execution. If I remove line” if(i%1000==0)” , I can see it does run and print every pi value, but it doesn’t stop, which means the second if statement doesn’t work either. I’m not sure what else to do. I’m assuming it is probably a simple logical error.</p> http://stackoverflow.com/questions/347734/gauss-legendre-algorithm-in-python 6 Gauss-Legendre Algorithm in python Lobe 2008-12-07T16:15:40Z 2009-09-23T17:55:16Z <p>Hello! I need some help calculating Pi. I am trying to write a python program that will calculate Pi to X digits. I have tried several from the python mailing list, and it is to slow for my use. I have read about the <a href="http://en.wikipedia.org/wiki/Gauss-Legendre_algorithm" rel="nofollow">Gauss-Legendre Algorithm</a>, and I have tried porting it to Python with no success.</p> <p>I am reading from <a href="http://www.geocities.com/hjsmithh/Pi/Gauss_L.html" rel="nofollow">Here</a>, and I would appreciate any input as to where I am going wrong!</p> <p>It outputs: 0.163991276262</p> <pre><code>from __future__ import division import math def square(x):return x*x a = 1 b = 1/math.sqrt(2) t = 1/4 x = 1 for i in range(1000): y = a a = (a+b)/2 b = math.sqrt(b*y) t = t - x * square((y-a)) x = 2* x pi = (square((a+b)))/4*t print pi raw_input() </code></pre> http://stackoverflow.com/questions/982381/finding-pi-digits-using-monte-carlo 1 Finding PI digits using Monte Carlo Jon Romero 2009-06-11T17:10:29Z 2009-07-03T19:25:01Z <p>I have tried many algorithms for finding π using Monte Carlo. One of the solutions (in Python) is this:</p> <pre><code>def calc_PI(): n_points = 1000000 hits = 0 for i in range(1, n_points): x, y = uniform(0.0, 1.0), uniform(0.0, 1.0) if (x**2 + y**2) &lt;= 1.0: hits += 1 print "Calc2: PI result", 4.0 * float(hits) / n_points </code></pre> <p>The sad part is that even with 1000000000 the precision is VERY bad (<strong>3.141...</strong>).</p> <p>Is this the maximum precision this method can offer? The reason I choose Monte Carlo was that it's very easy to break it in parallel parts. Is there another algorithm for π that is easy to break into pieces and calculate?</p> http://stackoverflow.com/questions/39395/how-do-i-calculate-pi-in-c 3 How do I calculate PI in C#? GateKiller 2008-09-02T12:39:12Z 2009-01-23T12:17:24Z <p>How can I calculate the value of PI using C#?</p> <p>I was thinking it would be through a recursive function, if so, what would it look like and are there any math equations to back it up?</p> <p>I'm not too fussy about performance, mainly how to go about it from a learning point of view.</p>