Jonathan S. answered 06/03/20
R expert. Patient, knowledgable, and experienced statistics tutor.
To find the probability a competitor goes to at least one penalty round, first, let's find the probability they go to zero penalty rounds. Then we can just subtract our result from 1, because the two events are complements ("at least one" is the complement of "none").
First, what is the probability they make every shot at a single station? It's a binomial random variable with n = 8 and p = .8 and they need at least 5 successful shots.
sum i = 5 to 8 of [(8 choose i) (.8)^i (1-.8)^(8-i)] = 0.9437184.
Next, what's the probability that this event (making all 5 shots) occurs at each of the 4 stations? Again, this is a binomial random variable, but this time, n = 4 and p = 0.9437184.
(4 choose 4) (0.9437184)^4 (1-0.9437184)^(4-4) = (0.9437184)^4 ≈ 0.7932
Therefore the probability a competitor goes to at least one penalty round is 1 - 0.7932 = 0.2068.