Die Roll Probability with 8-sided Die

9.9k Views Asked by At

What is the probability of rolling an "8" on an 8-sided die four times out of nine attempts?

My friends and I were playing a game where one player could only succeed by rolling an 8 with an eight sided die. He rolled nine times, and got an 8 on four of those rolls.

3

There are 3 best solutions below

0
On

There are $\displaystyle\binom{9}{4}$ ways to have exactly $4$ dice out of $9$ display an $8$. Each of those ways has a chance of occurring of $\displaystyle\left(\frac{1}{8}\right)^4\left(\frac{7}{8}\right)^5$

The total chance is then:

$$\frac{2117682}{134217728} = 0.01577796041965484619140625$$

0
On

Since each side has a $1/8$ probability, and you are concerned with one side, in comparison to the seven others, we have $((1/8)+(7/8))^9$. Then, you want to select the terms whose binomial coefficients are the ones above mentioned.

0
On

This is a binomial distribution

$$X\sim B(n,p);\ P(X=k){=}\binom{n}{k}p^k(1-p)^{n-k}$$

Where n is the number of attempts of independents events and p is the probability for success (and 1-p is the probability of fail). And k is the number of success on n attempts, P(X=k) is the probability for k success on this variable.

In this case n=9, k=4 and p=1/8. So

$$P(X=4)=\binom{9}{4}\left(\frac{1}{8}\right)^4\left(\frac{7}{8}\right)^5\approx1.6\%$$

*$\binom{n}{k}=\frac{n!}{k!(n-k)!}=\frac{n_{(k)}}{k!}=\frac{n(n-1)(n-2)\cdot\cdot\cdot(n-k+1)}{2\cdot3\cdot4\cdot\cdot\cdot k}$