Different ways to calculate Pi (3.14159...)
Do not miss this exclusive book on Binary Tree Problems. Get it now for free.
In this article, we have covered different algorithms and approaches to calculate the mathematical constant pi (3.14159...). These include Nilakantha Series, Leibniz’s Formula, Ramanujan's Pi Formula and other Programming Language specific techniques.
Table of contents:
- Method 1: Leibniz’s Formula
- Method 2: Nilakantha Series
- Method 3: Ramanujan's Pi Formula
- Method 4: Function acos()
- Method 5: Math module
- Method 6: gmpy module
We will get started with Different ways to calculate Pi (3.14159...).
Method 1: Leibniz’s Formula
This equation can be implementd in any programming language.
Accuracy of value of pie depends on number of terms present in the equation which means high number of iterations produce better result.
Implementation of Leibniz’s Formula:
- We will create 2 variables sum, d (denominator)
- Initialise
sum = 0
- Initialise
d = 1
- Create a for loop
- Loop i from 0 to 1000000 ( bigger number = more precsion )
- Check if i is even then
sum=sum+4/d
, elsesum=sum-4/d
- Increment d by 2 every at every iteration
- Print sum
Time Complexity:
O(N * logN * loglogN), where
- N = number of iterations
- Division of two numbers of order O(N) takes O(logN loglogN) time.
Code:
#Initialize denominator
d = 1
#Initialize sum
sum = 0
for i in range(0,1000000):
#even index add to sum
if i % 2 == 0:
sum + = 4/d
else:
#odd index subtract from sum
sum -= 4/d
#increment denominator by 2
d += 2
print("Value of Pi is : ",sum)
Sample Output:
Value of Pi is : 3.1415916535897743
Method 2: Nilakantha Series
It is somewhat similar to the previous method and also one of the conventional methods. As number of iterations increases the value of pi also gets precise.
Implementation:
- Create 3 variables n,sum,sign
- Initialse
sum=3
,n=2
,sign=1
- Create a for loop
- loop from 0 to 1000000
- At every iteration multiply
sign=sign*(-1)
- Calculate
sum=sum+sign*(4/(n)*(n+1)*(n+2))
- Increment n by 2 at every iteration
- Print sum
Time Complexity:
O(N * logN * loglogN), where
- N = number of iterations
- Time Complexity of multiplication and division is O(logN loglogN) at the best and O(logN logN) in general.
Code:
#Initialise sum=3,n=2,and sign=1
sum=3
n=2
sign=1
#for loop to add terms
for i in range(0,1000000):
sum=sum+(sign*(4/((n)*(n+1)*(n+2))))
#for addition and subtraction of alternate terms
sign=sign*(-1)
#Increment by 2 according to formula
n=n+2
print("Value of Pi is : ",sum)
Sample Output:
Value of Pi is : 3.141592653589787
Method 3: Ramanujan's Pi Formula
Ramanujan's Pi formula is one of the best methods to find numerical approximation of pi in less number of iterations. It may look difficult to implement but that is not the case, it's pretty simple, just follow these steps.
Implementation:
- Firstly import math module
- Create function to calculate factorial
- Create function to calculate Pi by Ramanujan's Formula
- Initialise
sum=0
,n=0
,i=math.sqrt(8)/9801
- Start the infinite while loop
- Apply Ramanujan's Formula
- Add the value to
sum+=tmp
- At every iteration increase n by 1,
n=n+1
- If the value has reached femto level that is 15th digit break the loop
- Return 1/sum according to the formula
- Print the value of sum
Time Complexity:
O(N2 logN loglogN), where
- N = number of iterations
- Time Complexity of multiplication and division is O(logN loglogN) at the best and O(logN logN) in general.
Though the Time Complexity is higher than previous approaches, in this approach, one will need significantly less number of iterations so this is considered to be an effective technique.
Code
import math
#finds factorial for given number
def factorial(x):
if x==0:
return 1
else:
return r = x*factorial(x-1)
#Ramanujan formula for pi calculation
def ramanujan_pi():
#initialise sum=0, n=0 , and a variable i to store 2√2/(99)^2
sum = 0
n = 0
i = (math.sqrt(8))/9801
while True:
#Ramanujan's Formula:-
tmp = i*(factorial(4*n)/pow(factorial(n),4)) ((26390*n+1103)/pow(396,4*n))
sum +=tmp
#Stop loop when it reaches 15th digit precision (femto)
if(abs(tmp) < 1e-15):
break
n += 1
return(1/sum)
print("Vaule of Pi is : ",ramanujan_pi())
Sample Output
Vaule of Pi is : 3.141592653589793
Method 4: Function acos()
acos() is an inbuilt function in C++ STL and is also present python language and it’s the same as the inverse of cosine in maths. The acos() function returns the values in the range of [-π,π] that is an angle in radian. It can only show till 15th digit precison.
Implementation
- Import acos from math library
- Define the function to take input n the number of decimal places
- Use round function to get the pi value to desired decimal place
- Use formula
pi=round(2*acos(0.0),n)
- Print value of by calling the function pi
Time Complexity
O(1)
Code:
#Import acos from math
from math import acos
#define function
def valueofpi(n):
#Calculates pi with precision n, where n<=15
pi=round(2*acos(0.0),n)
#prints pi with n precision
print(pi)
print("Value of Pi is : ",valueofpi(15))
Sample Output:
Value of Pi is : 3.141592653589793
Method 5: Math module
This is one of the simplest method to get the value of Pi without much hassle, it saves a lot of time.
Directly get the value of pi by using math module in python.
One drawback is that you can not get as precise result as the previous methods would provide.
Time Complexity:
O(1)
Code:
#import math module
import math
#print value
print("Value of Pi is : ",math.pi )
Sample Output:
Value of Pi is : 3.141592653589793
Method 6: gmpy module
This is the best option in most of the cases , you can directly get the value of pi upto your desired precison with this module.
It is the better version of math module and nmpy module for calculating pi.
Time Complexity:
O(1)
Code:
#import gmpy module
import gmpy
#print value upto 128 bit precision
#Note that it takes argument in bits not in decimal digits
print ("Value of Pi is : ",gmpy.pi(128))
Sample Output:
Value of Pi is : 3.1415926535897932384626433832795
With this article at OpenGenus, you must have the complete idea of different approaches to find the value of Pi.
Sign up for FREE 3 months of Amazon Music. YOU MUST NOT MISS.