Created
April 20, 2022 21:05
-
-
Save partylikeits1983/e5bfe579ddf7531fa5d141171a01da96 to your computer and use it in GitHub Desktop.
calculatingPi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def GLSpi(x): | |
odd = [] | |
pi_div_4 = [] | |
for i in range(x): | |
if i % 2 == 1: | |
odd.append(i) | |
for i in range(len(odd)): | |
if i % 2 == 0: | |
odd[i] = odd[i] | |
else: | |
odd[i] = -odd[i] | |
for i in range(len(odd)): | |
pi_div_4.append(1/odd[i]) | |
print(str(i/len(odd)*100) + "% done calculating GL series") | |
return sum(pi_div_4) * 4 | |
# Nilakantha Series | |
def NSpi(x): | |
even = [] | |
vals = [] | |
n = { | |
0:0, | |
1:0, | |
2:0 | |
} | |
pi = 3 | |
for i in range(1,x): | |
if i % 2 == 0: | |
even.append(i) | |
for i in even: | |
n[0] = i | |
n[1] = i+1 | |
n[2] = i+2 | |
vals.append(n.copy()) | |
for i in range(len(even)): | |
if i % 2 == 0: | |
pass | |
else: | |
vals[i][0] *= -1 | |
for i in range(len(vals)): | |
x = 1 | |
for j in range(3): | |
x *= vals[i][j] | |
pi += 4 / x | |
print (str(i/len(vals)*100) + "% done calculating N series") | |
return pi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment