Probability question. I'm asking for the best method to solve it. I don't need the numerical answer.?
You have a probability of 3/5 of winning a game of chance. You play the game 100 times. What is the prob of winning more than 70 games? Do I need to calculate the prob of winning exactly 71 games, then prob of winning 72 games, and so on up to 100, then add those probabilities together? Is there a better faster way to do it?
King Leo2020-10-06T05:17:49Z
Favorite Answer
This is a binomial distribution. Since n is so large the binomial can be cumbersome to compute. So for large n use the normal approximation to the binomial
“ Do I need to calculate the prob of winning exactly 71 games, then prob of winning 72 games, and so on up to 100, then add those probabilities together? Is there a better faster way to do it? “ You final answer will be more accurate if you computed for each exact value but this tends to be too cumbersome and time consuming.
You outlined how to get the exact answer. But with n = 100, you can, and are probably supposed to, use the normal distribution to the binomial.
The properties of the binomial are well-known. The mean is np = 100 x 3/5 = 60 The variance is npq = 100(3/5)(2/5) = 24. So the s.d. is √24 = 4.899.
Now you just use those facts and pretend you have a normal distribution. the answer is the area under the "normal" curve from 70.5 to infinity. You really want 71 and above, but when you use this approximation you extend things by 1/2, so 71 is represented by the interval (70.5, 71.5).
So 70.5 is 70.5 - 60 = 10.5 above the mean. That is 10.5 / 4.899 standard deviations.
Now just calculate that and use a Z-table to get the area you want.
See https://www.youtube.com/watch?v=CCqWkJ_pqNU for a tutorial.