-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsolution_14.py
34 lines (27 loc) · 1.05 KB
/
solution_14.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import math
import random
def coding_problem_14():
"""
The area of a circle is defined as $\pi r^2$. Estimate $\pi$ to 3 decimal places using a Monte Carlo method.
Example:
>>> import math
>>> import random
>>> random.seed(0xBEEF)
>>> pi_approx = coding_problem_14()
>>> abs(math.pi - pi_approx) < 1e-2
True
Note: the unit test above is not testing for 3 decimal places, but only 2. Getting to 3 significant digits would
require too much time each time, since convergence is exponentially slow. Also priming the random number generator
to avoid random failure for unlucky distributions of samples.
"""
inside, total, prev_pi, pi_approx = 0, 0, 0, 1
while abs(pi_approx - prev_pi) > 1e-5:
total += 10000
for _ in range(10000):
x, y = random.random(), random.random()
inside += (x**2 + y**2) < 1 # 1**2 == 1
prev_pi, pi_approx = pi_approx, (4. * inside) / total
return pi_approx
if __name__ == '__main__':
import doctest
doctest.testmod(verbose=True)