π (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.

learn more… | top users | synonyms

0
votes
1answer
36 views

How can I count with longer floats?

I'm programing Python code for counting pi to lot of digits, but python allow me count only on 16 digits. (Despite fact that 12345**12345 is not problem to count, it isn't fair.) Is it possible to ...
2
votes
1answer
93 views

select the right type of variable C#

i want to create pi more than 16 thousand numbers after the decimal point but the problam is that i kant find any type that could fill my wishes. I tried to use object but it rounds the number after ...
1
vote
1answer
67 views

Million decimal places in python

We recently delve into infinite series in calculus and that being said, I'm having so much fun with it. I derived my own inverse tan infinte series in python and set to 1 to get pi/4*4 to get pi. I ...
0
votes
1answer
54 views

Leibnitz Method for Pi Program

I am making a program to prove Leibnitz method for computing PI. (pi/4) = 1 - 1/3 + 1/5 - 1/7 + 1/9 - 1/11 + ... I took a very interesting approach to this and I am just wondering if there is a much ...
0
votes
1answer
419 views

Raspberry Pi- GPIO Events in Python

I am using the GPIO pins on my Raspberry Pi with a PIR sensor to detect motion. When the sensor detects motion I want to then move the software onto other functions. At the moment, to detect motion I ...
0
votes
2answers
665 views

Hook up Raspberry Pi via ethernet to laptop without router?

I'm working on balloon project with a raspberry pi. When we potentially recover the raspberry pi, it will most likely be in a rural location and I'd like to turn off the pi at that point safely. ...
1
vote
0answers
97 views

Making BBP algorithm for Java, computing nth digit

I have started a java project for computing the n-th digit of pi, and decided to use the BBP algorithm. In my output (in another class) I have been getting some weird math errors, and I don't know ...
3
votes
4answers
92 views

Prevent Rounding to Zero in Python

I have a program meant to approximate pi using the Chudnovsky Algorithm, but a term in my equation that is very small keeps being rounded to zero. Here is the algorithm: import math from decimal ...
0
votes
1answer
182 views

Re-Routing Raspberry Pi GPIO - Dummy Pin?

I am working on porting the open-source project OpenROV for Raspberry Pi. (The project is developed for BeagleBone.) The only significant challenge of the port is changing the software's references ...
0
votes
2answers
130 views

Write program to approximate pi with Leibniz formula in Scheme?

I'm trying to figure out how to write a program to approximate pi with the Leibniz formula. The function takes an error, E, and somehow gives the pi approximation. I'm not sure at all how to do ...
0
votes
0answers
66 views

Multiple Raspberry PI's on same network segment

I have a streaming content application (HTML5, PHP, mySQL) hosted at a website and running on the Pi's through Chromium. I have multiple rPi's all burned from the same image running the application ...
0
votes
1answer
107 views

Invalid conversion of int to unsigned int

This code is given for the assignment. However, off the bat there is an error in the compute pi monte carlo function. the error stats invalid of conversion from int to unsigned int. Im not sure if ...
3
votes
2answers
243 views

How to parallelize monte carlo estimation of pi using pthreads?

#include <math.h> #include <stdio.h> #include <stdlib.h> #include <time.h> #include <unistd.h> int main(int argc, char **argv) { unsigned long long in = 1; ...
0
votes
5answers
137 views

How to display PI symbol in Java? [duplicate]

The objective here is simple, I want to display a pi symbol in a system output, like this, "π" String pi = "\u03c0"; System.out.println (""+a+pi+"x^2 + " + b+pi+"x + " +c+ pi);
1
vote
1answer
125 views

What's the difference between “pi” and “M_PI” in objc

Including some math in my code I stumbled over the constant "PI". At least in my Xcode version 4.6 I could use either one. But what is the difference between pi and M_PI? The documentation is little ...
-2
votes
2answers
140 views

Approximating Pi

Following is the code I wrote for approximating the value of 103993/33102. The user inputs the precision. Here k is the precision inputted by the user and asd is the value in the form of a string int ...
-2
votes
1answer
101 views

Finding a large number of decimal places for irrational number in java [closed]

I want to find the value of 22/7 to 10^6 places of decimals in java. Is it possible to do this within a short compile time?
0
votes
0answers
679 views

Conversion PI numbers into string of text

It's king of interesting that pi's decimal representation never ends and never settles into a permanent repeating pattern. Meaning it's highly possible that pi contains every possible combination of ...
0
votes
1answer
55 views

does c++ STL define Pi?

Does STL contain definition for Pi (=3.14)? Certainly, I can use old good M_PI, but it is non-standard and not cross-compiler compliant.
1
vote
1answer
58 views

How to use pi in RcppEigen?

I am very new to Rcpp, or more specifically RcppEigen, and struggling with how to use pi as a constant in my code. The code runs numerous time in a MCMC algorithm, so any speed improvement would be ...
0
votes
3answers
110 views

Calculating Pi using GMP [closed]

I'm trying to calculate Pi using GMP(5.1.0) with this series: What i have done is: #include <stdio.h> #include <gmp.h> mpz_t pi; mpz_t next; // Every number in the serie that comes ...
0
votes
2answers
95 views

how to display pi character in cocos2d

I want to add Pi symbil at run time..bascially want to append with string at run time...any one has any idea how to do that? is there any ascii code to do that? code snippet will be helpful.
4
votes
3answers
168 views

Output unicode symbol π and ≈ in c++ win32 console application

I am fairly new to programming, but it seems like the π(pi) symbol is not in the standard set of outputs that ASCII handles. I am wondering if there is a way to get the console to output the π ...
364
votes
6answers
68k views

How to determine whether my calculation of pi is accurate?

I was trying various methods to implement a program that gives the digits of pi sequentially. I tried the Taylor series method, but it proved to converge extremely slowly (when I compared my result ...
6
votes
3answers
113 views

Displaying an image on linux without running x [closed]

does anyone know of a way to just display an image via command line or C? I can run video fine without running X with omxplayer but i would like to also display an image without having to load the ...
-1
votes
3answers
145 views

C++ determining pi

So, i was trying to approximate at least 30 decimal digits of pi using C++. So far i got to 15, but i got stuck and can't figure out how to increase the precision. My code is: ...
4
votes
1answer
425 views

Calculating the digits of pi

I've used the GMP library and C++ to code an implementation of the Gauss-Legendre algorithm to calculate the digits of pi. It has correct output, but the problem is I don't know at which point the ...
1
vote
1answer
101 views

Chudnovsky algorithm produces -nan

I'm trying to implement the Chudnovsky algorithm for calculating pi. Here is my implementation: int fact(int n) { if(n<=1) return 1; else return fact(n-1)*n; } double ...
0
votes
1answer
107 views

Calculating Pi Using Float or Integer Arrays

I'm using Aparapi to do number crunching inside my Java program on the GPU. From what I understand, Aparapi plays nice with float arrays. I want to compute Pi to the Nth decimal using Aparapi. I'm ...
-1
votes
2answers
120 views

Trying to import a python snippet to C/C++ (PI spigot algorithm)

Some time ago (I can't remember where) I find this python snippet which implents a spigot algorithm for calculating digits of Pi: def pi_digits(): """generator for digits of pi""" q,r,t,k,n,l ...
1
vote
3answers
581 views

Python: “long int too large to convert to float” when calculating pi

I get this error when using a python script that calculates pi using the Gauss-Legendre algorithm. You can only use up to 1024 iterations before getting this: C:\Users\myUsernameHere>python ...
4
votes
3answers
217 views

Rounding Pi in Perl to the 100 millionth decimal place?

For a Science Fair project, I am testing how your choice of programming language could affect performance. I am doing this by making scripts in Java, Ruby, Perl, and Python to calculate Pi to the 100 ...
2
votes
0answers
59 views

How do I calculate PI in another base?

There are plenty of resources to calculate PI in decimal. I found this one to do it pretty fast: http://en.literateprograms.org/Pi_with_Machin's_formula_(Python) But how do I calculate it in another ...
3
votes
2answers
1k views

Raspberry Pi - GPIO in python

I am trying to get my raspberry Pi's GPIO pins working. I am following this link http://log.liminastudio.com/writing/tutorials/tutorial-how-to-use-your-raspberry-pi-like-an-arduino ( I'm working ...
2
votes
1answer
323 views

Buffon's needle C++

I'm trying to make a program to find approximation of pi. I would like to implement the Buffon's needle method. My program finds the random x coordinate form 0 to 1 and random angle (0 to 360). If ...
0
votes
2answers
539 views

mono 3.0.1 asp.net An assembly with the same identity `mscorlib has already been imported. Consider removing one of the references

Hardware & OS: Raspberry pi (Model B) & Soft-float Debian “wheezy” Ok first thing I did was do a 'mono-complete' the install went smoothly. I ran some test and it worked great. the mono ...
0
votes
2answers
339 views

Python program to calculate pi with the following sequence: pi = 4/1 - 4/3 + 4/5 - 4/7…etc [closed]

Just stuck on this problem and I've tried many ways but this is what I have so far. Not sure what's wrong with it. def main(n): summ=0 pipe=0 for i in range(1, n, 4): x = 4/i ...
0
votes
1answer
69 views

Role of cores in Parallel GMP-Chudnovsky using OpenMP with factorization

I recently found this implementation of Chudnovsky's algorithm for calculating pi: Parallel GMP-Chudnovsky using OpenMP with factorization I have compiled it for various numbers from 1o^3 to 10^8 ...
4
votes
3answers
73 views

How do I select individual elements of a given (very large) matrix, see if they are in a particular range and change them in Matlab?

I have a matrix which is 256x938. I need to go through each individual element, see if it is in the range -pi < element < pi, if it is not then we need to subtract or add a multiple of 2*pi to ...
3
votes
2answers
304 views

How to find a specific sequence within the decimals of PI?

I want to find a specific sequence of digits in the decimals of PI and that involves first computing PI to (quite possibly) infinity. The problem is that I don't know how to make a variable store that ...
1
vote
0answers
54 views

Is there a way to intercept messages from within SAP PI?

Is there any way to intercept outgoing messages from SAP NetWeaver PI 7.1 and 7.3? The best option would be before the message is converted to a protocol specific representation (i.e before converting ...
0
votes
0answers
203 views

3rd-Party sender to IDoc_AAE receiver - error in control record

we've got the following problem on SAP Netweaver Process Integration 7.31 SP04: We want to connect a 3rd party system to an ERP system via SOAP and IDoc (3rd Party -> SOAP -> PI -> IDoc -> ERP) using ...
4
votes
1answer
454 views

pi deprecated on OS X 10.8

Is there a replacement for pi const on OS X 10.8? When I use it I get the following warning: 'pi' is deprecated: first deprecated on Mac OS X 10.8 It works but I want to get rid of that warning.
-2
votes
1answer
288 views

Calculate pi in any langage [closed]

If asked in a hypothetical job interview to write a program which calculates pi (any language), and continues, until the program is terminated, what would your code look like? Obviously you can't use ...
2
votes
2answers
137 views

Rounding error with pi

I am trying to make a sequence of code that calculates the volume of a cone based on a user input height and radius (see below). My problem is that the answer comes out wrong (but not by a long way). ...
-1
votes
1answer
3k views

arch linux systemd how to set static ip on pi [closed]

I recently got my PI :) and decided to install arch linux and use it as a local webserver (command line only). However, I got stuck trying to set it to a static IP address, as systemd doesn't seem to ...
0
votes
2answers
2k views

Does not implement interface member, but I swear I am?

Here's my code, VS2012 C# Express is complaining about the non implementation of the two members in the interface PISDK._DEventPipeEvents, which is pasted here quickly: namespace PISDK { ...
-1
votes
2answers
343 views

Understanding Mathematical Formula in Java [closed]

Im just trying to get back into the way of programming in the Java language after having a rather large break so I decided to write a program that calculates PI to the users input number: e.g. they ...
1
vote
1answer
12k views

how to use math.pi in java

I am having problems converting this formula V = 4/3 π r3. I use the Math.Pi and the Math.pow but thats when the problem begins.The error outputs: ';' expected every time. Also for some reason ...
12
votes
1answer
315 views

Python large iterations number fail

I wrote simple monte-carlo π calculation program in Python, using multiprocessing module. It works just fine, but when I pass 1E+10 iterations for each worker, some problem occur, and the result is ...

1 2 3