top of page

Pi adventure

Calculating pi from atan(1)=pi/4 s=s+4*(-1)**(i+1)/(2*i-1)

2526 terms of gives 3.141196770786618

323 terms of gives 3.1446886214033025

452 terms of gives 3.1393802669164748

111 terms of gives 3.150601479819498

77 terms of gives 3.1545791190866574

30 terms of gives 3.108268566698947

3 terms of gives 3.466666666666667

1660 terms of gives 3.140990244005892

2349 terms of gives 3.1420183666398955

49 terms of gives 3.161998692995051


N=10000

import random

print('Calculating pi from atan(1)=pi/4 s=s+4*(-1)**(i+1)/(2*i-1)')

for j in range(10):

N=int((10**4)**random.random())

s=0.0

import numpy as np

for i in range(1,N):

s=s+4*(-1)**(i+1)/(2*i-1)

print(N-1,'terms of gives ', s)

0 views0 comments

Recent Posts

See All

Helio Centric Model

We see high resolution snapshots of earth proving earth is spherical. However to prove helio centgricity we must take angles of planets and make some transforms whether on a satellite telescope or ear

Engtangled an normal states

Here are entangled states ( {(1.1|0> +8.6|1> +4.2|2> +7.7|3> +8.6|4> +5.3|5> +9.8|6> +3.9|7> +1.4|8> ) /19.2}{(7.7|0> +4.8|1> +5.9|2> +5.0|3> +0.9|4> +5.0|5> +6.4|6> +8.0|7> +0.1|8> +3.1|9> ) /16.8})+

e adventure

Calculating e from \sum (1/factorial(n)) 8132 terms of gives 2.7182818284590455 4 terms of gives 2.708333333333333 117 terms of gives 2.7182818284590455 12 terms of gives 2.7182818282861687 220 terms

bottom of page