Tagged Questions
π (pi) is a mathematical constant whose value is the ratio of any Euclidean plane circle's circumference to its diameter; this is the same value as the ratio of a circle's area to the square of its radius. It is approximately equal to 3.14159265 in decimal notation.
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... ...
17
votes
4answers
4k views
Why define PI = 4*ATAN(1)
What is the motivation for defining PI as
PI=4.D0*DATAN(1.D0)
within a Fortran 77 code? I understand how it works, but, what is the reasoning?
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 ...
7
votes
10answers
698 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 looking too much into ...
6
votes
3answers
149 views
Counting Pi in threads
I have two implementations of counting pi with Monte-Carlo method: with and without threads. Implementation without threads working just fine, but method with threads have problems with accuracy and ...
6
votes
18answers
11k 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 up?
I'm not too ...
5
votes
1answer
158 views
Calculate Pi on an Android phone
I'm trying to make an Android phone calculate n decimals of Pi. For this I'm using this code:
public class Pi {
private static final BigDecimal TWO = new BigDecimal(2);
private static final ...
5
votes
7answers
499 views
R: How to print 1000 decimals places of pi value?
I would like to print e.g. 1000 or 2000 or 15000 decimals of pi value using R? Now I get only six
> pi
[1] 3.141593
How to achieve this?
5
votes
3answers
223 views
Cython's calculations are incorrect
I implemented the Madhava–Leibniz series to calculate pi in Python, and then in Cython to improve the speed. The Python version:
from __future__ import division
pi = 0
l = 1
x = True
while True:
...
4
votes
2answers
108 views
generating pi to nth digit java
I wanted to know how I can generate pi to the nth digit. I have a couple of basic ideas.
Use Math.PI and increase the precision (if that's possible)
Use Euler's formula to generate pi but even here, ...
4
votes
8answers
963 views
Why does the area come back as 0?
Here's the code.
int a;
int pi = 3.14;
int area;
int main()
{
cout << "Input the radius of the circle ";
cin >> a;
a *= a *= pi >> area;
cout << "The area ...
4
votes
2answers
466 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
...
4
votes
5answers
722 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 faster than n thread, x ...
4
votes
4answers
586 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 have a Haskell ...
3
votes
1answer
46 views
How to display a number with many decimal places? (Java)
I was wondering if there is a way to "cheat" and work with numbers with way more decimal places than a double in Java, and then display it via [Graphics Object].drawString(number, 10, 10);
Can I do ...
3
votes
2answers
501 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 ...
3
votes
1answer
238 views
How to get decimal to n places precision in C# program for Pi
With reg to this question
Pi in C#
I coded the below code and gives a output with last 6 digits as 0. So I want to improve the program by converting everything to decimal. I have never used decimal ...
3
votes
2answers
132 views
Need a data type to hold 1 million+ digits in C#
I am calculating PI in C#, and so far its perfect except my data types are limiting me.
If i use a double i get results like below.
k=0, delta= 3,14176587301587, pi=3,14176587301587
k=1, ...
3
votes
2answers
371 views
Cannot draw pixels, Pi number in a Synesthetic way
I want to print each digit of pi number as a colored pixel, so, I get an input, with the pi number, then parse it into a list, each node containing a digit (I know, I'll use an array later), but I ...
3
votes
3answers
2k 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 noticed that XNA ...
3
votes
8answers
2k 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 results, without ...
2
votes
1answer
78 views
Pi value estimation with series
Here's my problem:
Compute the value of π using the following series:
((π^2)-8)/16=[sum from 1 to pos. infinity] 1/(((2n−1)^2)*((2n+1)^2))
• Find the smallest number of terms required to obtain an ...
2
votes
1answer
72 views
Scala BigDecimal how to display more decimals?
First of all, I am aware that there is a similar topic regarding the division of 1 by 3. However, my code is quite different and I don't know how to apply the information given there to my situation. ...
2
votes
4answers
133 views
Pi in C++ and problems
#include < iostream >
using namespace std;
#define n 3000
#define len (10*n/3)
main(void)
{
unsigned long i, j, nines = 0, predigit = 0, pi[len + 1], c = -1;
unsigned long long A[len + ...
2
votes
1answer
70 views
How to use PI in a batch file
I am trying to write a batch file so it executes a program I did with different arguments. One of those arguments is often the number PI.
How can I get the number Pi?
Thanks!
2
votes
1answer
196 views
Cuda Program to Solve Pi
I would like to know if there are any examples of solving for Pi using the trapezoidal rule in cuda. I am trying to learn the language and I feel this would be a great way to gain knowledge on the ...
2
votes
5answers
585 views
find the value of pi till 50 digits
I want to calculate the value of PI till 50 digits.
Here is my code
public class PiCalc {
public static void main(String[] args) {
double nm = 22;
double dn = 7;
double pi = nm/dn;
...
2
votes
4answers
582 views
How to calculate exact value of a trig function?
I am writing a "triangle solver" app for Android, and I was wondering if it would be possible to implement exact values for trig ratios and radian measures. For example, 90 degrees would be output as ...
2
votes
9answers
1k views
Calculating the value of pi-what is wrong with my code
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 approximate value of pi after ...
2
votes
3answers
2k 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_points):
x, ...
1
vote
1answer
480 views
Will Android run on the Raspberry PI?
There's so much power in this little beast it seems a great fit for Android - yet there's not much discussion anywhere regarding an Android port to it. Anyone know more?
1
vote
1answer
66 views
Arbitrary Precision for decimals in C# help?
Here is my current code for computing Pi using the chudnovsky method in c#:
using System;
using System.Diagnostics;
using System.IO;
using java.math;
namespace pi.chudnovsky
{
public class ...
1
vote
1answer
115 views
How to calculate the terms of the continued fraction of pi?
The other day, the Wolfram Blog published an article about a thirteen year old boy, Neil Bickford, who computed the first 458 million terms of the simple continued fraction representation of pi, ...
1
vote
2answers
243 views
Bailey–Borwein–Plouffe formula implementation in C++?
I need to calculate PI the the n-th digit and I wanted to try using the BBP formula but am having difficulties. The equation I typed up doesn't seem to be giving me PI correctly.
(1 / pow(16,n))((4 / ...
1
vote
3answers
970 views
How to printf long long
I'm doing a program that aproximate PI and i'm trying to use long long, but it isn't working.
Here is the code
#include<stdio.h>
#include<math.h>
typedef long long num;
main(){
num ...
1
vote
4answers
69 views
C efficient big-floats
Are there any c libraries that allow a completely accurate, big float. I would prefer it to be slightly efficient and be able to divide with great precision. I'm using this to get an accurate ...
1
vote
3answers
193 views
Improving a recursive Pi algorithm
I need to implement 4 sequences to calculate an Pi approximation. All of them need to be recursive, iterations are strictly prohibited.
I've already implemented them all. However, the second sequence ...
1
vote
2answers
288 views
.NET C# Double equivalent System.Numerics.BigInteger
I'm am currently writing a program that calculates the digits of pi, and I have a problem. After three iterations the number of correct digits exceeds the memory available in a double.
I heard of the ...
1
vote
2answers
169 views
segmentation fault in pi calculation (python)
def pi(times):
seq = []
counter = 0
for x in range(times):
counter += 2
seq.append("((%f**2)/(%f*%f))*"%(float(counter), float(counter-1), float(counter+1)))
...
1
vote
2answers
92 views
This program wants jpargmp
I am trying to compile a pidigits program from the language shootout. The java one wants jpargmp. I can not find any information whatsoever on jpargmp. Can anyone help me?
1
vote
2answers
139 views
How can I show a decimal in a text field?
I am creating a simple console application that shows the value of PI up to a certain number of decimals. For now, I have written the following code:
namespace PIApplication
{
static void Main()
...
1
vote
1answer
80 views
Optional SAP integration practice for an ISV?
We are a smaller ISV company that develop a product that often end up depending on SAP integration when installed in customer environments.
We're now looking for the optimal way of integration our ...
1
vote
2answers
231 views
Can we run MPI programs in single system or is it imperative to run it in a cluster only?
I have a setup a clustered netowork in my college using PelicanHPC and then run various mpi programs , but at home i intend to practice many other . is there a way i can run mpi programs in my own ...
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 ...
1
vote
2answers
235 views
Is it possible to have an optional stylesheet in an xsl-stylesheet processing instruction?
I've applied a stylesheet to an xml document using <?xsl-stylesheet ...>, this works great when the XML is being viewed in my application. But if the xml is exported, I want the XML to still ...
0
votes
4answers
29 views
How to round decimals in PHP to match Google's results
I am trying to develop a php code to match decimals in the same exact way which Google calculator returns results, the math being used is 3.14159265 (pi) * three digits, for example in php pi * 123 ...
0
votes
3answers
76 views
Function call cannot appear in a constant-expression
I am working on a new project and I am trying to write the cleanest, easiest to read and hopefully, most efficient, code I can.
I need to use PI but apparently it isn't defined in math.h. So I read ...