Problem 137 Solution

Posted June 24, 1999

Binomial Distribution Solution

This is a basic binomial distibution problem. Given n people and a probability of death of p the probability of x deaths is n!/(x!*(n-x)!)*px*(1-p)(n-x). In this particular case the formula is 1000!/(x!*(1000-x)!)*.01x*.99(1000-x).

The table below shows the probability of specific numbers of death using this formula:

Problem 137
Number
of Deaths
(x)
Probability
total=x
Probability
total<=x
00.000043170.00004317
10.000436070.00047924
20.002200190.00267943
30.007393220.01007265
40.018613750.02868640
50.037453110.06613951
60.062737110.12887663
70.089986570.21886319
80.112824070.33168726
90.125613330.45730059
100.125740210.58304080
110.114309280.69735009
120.095161520.79251160
130.073053280.86556489
140.052022790.91758768
150.034541730.95212941
160.021479550.97360896
170.012558450.98616742
180.006927590.99309501
190.003616630.99671164
200.001791880.99850352
210.000844660.99934817
220.000379670.99972784
230.000163070.99989092
240.000067050.99995797
250.000026440.99998441
260.000010020.99999443
270.000003650.99999808
280.000001280.99999936
290.000000430.99999979
300.000000140.99999994
310.000000040.99999998
320.000000010.99999999
330.000000001.00000000
340.000000001.00000000

The table shows that if 14 graves were dug then the probability of not running out would be 0.91758768 (the smallest number greater or equal to 90%). So they must dig 14 graves to have a 90% of not running out. To have a 95% chance they must dig 15 and to have a 99% chance they must dig 18.

Normal Distribution Solution

We can expect that the number of deaths to approximate a normal distribution curve. The mean is 1000*.01=10. The standard deviation is (1000*(.01)*(.99))1/2 =~ 3.1464 . Let g be the number of graves such that the probability of running out is less than 90%. Let d be the number of deaths.

Pr(d <= g+.5) = 0.90 (The 0.5 is added because the number of deaths must be an integer)
Pr(d-9.5 <= g-10) = 0.90
Pr((d-9.5)/3.1464 <= (g-10)/3.1464) = 0.90
Pr(Z <= (g-9.5)/3.1464) = 0.90
(g-9.5)/3.1464 = 1.28
g =~ 13.527

The number of graves must be an integer, thus we round up to 14.

Michael Shackleford, ASA