Tagged Questions
87
votes
23answers
11k 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 #defined constants ...
18
votes
11answers
2k views
How is PI calculated?
I want to make a function in C that can return PI to X places..
I'm just not sure how...
Thanks
Edit: I don't care how slow it is I really just want an algorithm that will return PI at X decimal... ...
8
votes
3answers
2k views
Gauss-Legendre Algorithm in python
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 ...
7
votes
1answer
385 views
Required Working Precision for the BBP Algorithm?
I'm looking to compute the nth digit of Pi in a low-memory environment. As I don't have decimals available to me, this integer-only BBP algorithm in Python has been a great starting point. I only need ...
4
votes
2answers
462 views
Using basic arithmetics for calculating Pi with arbitary precision
I am looking for a formula/algorithm to calculate PI~3.14 in a given precision.
The formula/algorithm must have only very basic arithmetic as
+: Addition
-: Subtraction
*: Multiplication
/: Divison
...
3
votes
2answers
500 views
Function to find the nth digit of Pi
I have always wanted to find an algorithm that did this. I do not care how slow it is, just as long as it can return the nth digit of Pi:
ex:
size_t piAt(long long int n)
{
}
Preferably, not using ...
1
vote
3answers
1k views
Trying to calculate Pi to N number of decimals with C#
Note: I've already read this topic, but I don't understand it and it doesn't provide a solution I could use. I'm terrible with number problems.
What's a simple way to generate Pi to what number of ...
1
vote
4answers
693 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;
gives a π value of ...