This function provides a simulation for the problem of Buffon's Needle, which is one of the oldest problems in the field of geometrical probability.
buffon.needle(
l = 0.8,
d = 1,
redraw = TRUE,
mat = matrix(c(1, 3, 2, 3), 2),
heights = c(3, 2),
col = c("lightgray", "red", "gray", "red", "blue", "black", "red"),
expand = 0.4,
type = "l",
...
)
numerical. length of the needle; shorter than d
.
numerical. distances between lines; it should be longer than
l
.
logical. redraw former `needles' or not for each drop.
arguments passed to layout
to set the layout
of the three graphs.
a character vector of length 7 specifying the colors of: background of the area between parallel lines, the needles, the sin curve, points below / above the sin curve, estimated \(\pi\) values, and the true \(\pi\) value.
a numerical value defining the expanding range of the y-axis
when plotting the estimated \(\pi\) values: the ylim
will be
(1 +/- expand) * pi
.
an argument passed to plot
when plotting the estimated \(\pi\) values (default to be lines).
other arguments passed to
plot
when plotting the values of
estimated \(\pi\).
The values of estimated \(\pi\) are returned as a numerical vector
(of length nmax
).
This is quite an old problem in probability. For mathematical background, please refer to https://en.wikipedia.org/wiki/Buffon's_needle or https://mste.illinois.edu/activity/buffon/.
`Needles' are denoted by segments on the 2D plane, and dropped randomly to check whether they cross the parallel lines. Through many times of `dropping' needles, the approximate value of \(\pi\) can be calculated out.
There are three graphs made in each step: the top-left one is a simulation of the scenario, the top-right one is to help us understand the connection between dropping needles and the mathematical method to estimate \(\pi\), and the bottom one is the result for each drop.
Examples at https://yihui.org/animation/example/buffon-needle/
Ramaley, J. F. (Oct 1969). Buffon's Noodle Problem. The American Mathematical Monthly 76 (8): 916-918.