Jonathan S. answered 06/01/20
R expert. Patient, knowledgable, and experienced statistics tutor.
What is the probability of any particular person winning? It's the probability of throwing 3 or more 6's in 5 fair 6 sided dice (I'm assuming they're fair and 6 sided).
Let's call the number of 6's someone throws X. X follows a binomial(n=5, p=1/6) distribution, which is a discrete distribution, so:
P(X ≥ 3) = P(X = 3) + P(X = 4) + P(X = 5) = (5 choose 3)(1/6)3(5/6)5-3 + (5 choose 4)(1/6)4(5/6)5-4 + (5 choose 5)(1/6)5(5/6)5-5 ≈ 0.03549383.
But we're not done. Now we need to figure out the probability that exactly 6 people win out of 100, if the probability that each person wins is 0.03549383, and one person winning doesn't effect the probability that someone else wins (i.e. they're all independent). Let's call the number of people who win Y. This also follows a binomial distribution, but this time n = 100 and p = 0.03549383.
P(Y = 6) = (100 choose 6)(0.03549383)6(1-0.03549383)100-6 ≈ 0.0798.