Skip to content

Commit 3e2097b

Browse files
leioszsparal
authored andcommitted
fixing return statment in in_circle() function (#178)
1 parent 262d258 commit 3e2097b

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed
+13-10
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
# function to determine whether an x, y point is in the unit circle
2-
function in_circle(x_pos::Float64, y_pos::Float64, radius::Float64)
3-
if (x_pos^2 + y_pos^2 < radius^2)
4-
return true
5-
else
6-
return false
7-
end
2+
function in_circle(x_pos::Float64, y_pos::Float64)
3+
4+
# Setting radius to 1 for unit circle
5+
radius = 1
6+
return x_pos^2 + y_pos^2 < radius^2
87
end
98

109
# function to integrate a unit circle to find pi via monte_carlo
11-
function monte_carlo(n::Int64, radius::Float64)
10+
function monte_carlo(n::Int64)
1211

1312
pi_count = 0
1413
for i = 1:n
1514
point_x = rand()
1615
point_y = rand()
1716

18-
if (in_circle(point_x, point_y, radius))
17+
if (in_circle(point_x, point_y))
1918
pi_count += 1
2019
end
2120
end
2221

23-
pi_estimate = 4*pi_count/(n*radius^2)
22+
# This is using a quarter of the unit sphere in a 1x1 box.
23+
# The formula is pi = (box_length^2 / radius^2) * (pi_count / n), but we
24+
# are only using the upper quadrant and the unit circle, so we can use
25+
# 4*pi_count/n instead
26+
pi_estimate = 4*pi_count/n
2427
println("Percent error is: ", signif(100*(pi - pi_estimate)/pi, 3), " %")
2528
end
2629

27-
monte_carlo(10000000, 0.5)
30+
monte_carlo(10000000)

chapters/monte_carlo/monte_carlo.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ each point is tested to see whether it's in the circle or not:
3838

3939
{% method %}
4040
{% sample lang="jl" %}
41-
[import:2-8, lang:"julia"](code/julia/monte_carlo.jl)
41+
[import:2-7, lang:"julia"](code/julia/monte_carlo.jl)
4242
{% sample lang="c" %}
4343
[import:7-9, lang:"c_cpp"](code/c/monte_carlo.c)
4444
{% sample lang="hs" %}

0 commit comments

Comments
 (0)