3
votes
4answers
105 views
Parallel, but slower
I'm using monte carlo method to calculate pi and do a basic experience with parallel programming and openmp
the problem is that when i use 1 thread, x iterations, always runs fast …
3
votes
4answers
288 views
Computing π to “infinite” binary precision in C#
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 h …
3
votes
2answers
138 views
C# Math vs. XNA MathHelper
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 Math.PI/2.0 or 2.0*Math.PI, but now I have just no …
33
votes
33answers
4k views
Fastest way to get value of pi
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 …
2
votes
9answers
368 views
Calculating the value of pi-what is wrong with my code
Hi,
I'm doing another C++ exercise. I have to calculate the value of pi from the infinite series:
pi=4 - 4/3 + 4/5 – 4/7 + 4/9 -4/11+ . . .
The program has to print the approxim …
1
vote
4answers
167 views
How is π calculated within sas?
just curious! but I spotted that the value of π held by SAS is in fact incorrect.
for instance:
data _null_;
x= constant('pi') * 1000000000000000000000000000;
put x= 32.;
run;
…
7
votes
10answers
364 views
Pi/Infinite Numbers
I'm curious about infinite numbers in computing, in particular pi.
For a computer to render a circle it would have to understand pi. But how can it if it is infinite?
Am I looki …
2
votes
8answers
478 views
Is java.lang.Math.PI equal to GCC’s M_PI?
I am coding several reference algorithms in both Java and C/C++. Some of these algorithms use π. I would like for the two implementations of each algorithm to produce identical …
1
vote
3answers
367 views
Finding PI digits using Monte Carlo
I have tried many algorithms for finding π using Monte Carlo.
One of the solutions (in Python) is this:
def calc_PI():
n_points = 1000000
hits = 0
for i in range(1, n …
6
votes
3answers
602 views
Gauss-Legendre Algorithm in python
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 sl …
3
votes
24answers
2k views
How do I calculate PI in C#?
How can I calculate the value of PI using C#?
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 u …
