Maurizio T. answered 08/01/15
Tutor
5.0
(923)
Stat PhD passionate about probability and experienced at teaching it.
This problem belongs to the binomial distribution category.
You are interested in the probability that you win at least 7 times out of 12 trials knowing that the probability of success on each attempt is 0.80.
X ~ Bin(n=12, p = 0.80)
and we are looking for P[X≥7], i.e. P[X=7,8,9,10,11, or 12].
Either you use the Table for binomial probability or you have access to some sophisticated calculator or Excel.
In Excel you are looking for
1- BINOMDIST(6,12,0.8, TRUE) = 0.9806.
You can also use "brute force" and compute
P[X=7] = 12C7 (0.8)7(0.2)5 = 0.0532
P[X=8] = 12C8(0.8)8(0.2)4 = 0.1329
etc...
P[X=12] = ....
and then you sum these numbers.