"In tossing four fair dice, what is the probability of at least one three?" using complement

2.4k Views Asked by At

There is a very similar question here, and in both that question and this question I'm asking right now, the accepted answer involves using a complement. The same thing occurs in this textbook question:

"In tossing four fair dice, what is the probability of at least one three?"

The solution is $1 - \big{(}\frac{5}{6}\big{)}^4$.

But I don't quite understand why, in certain cases, using the compliment will lead to a correct answer and when it's better to just calculate the straight probability, as in $\big{(}\frac{1}{6}\big{)}^4$ (which is wrong).

Is there a rule of thumb on which way to go? What should we be looking for when we confront these questions?

3

There are 3 best solutions below

0
On BEST ANSWER

You are rolling four dice, and you want to know the chance of at least one three. Because it is at least one there are a few ways this could happen- namely there could be one three, two threes, three threes or four threes. Now, we can work all of these out using something called the binomial coefficients (technically speaking the number of heads is a binomial random variable) - the formula is the probability of a three $(1/6)$ raised to the power of how many, times by the probability of not a three (5/6) times by how many aren't threes, and then multiplied by the number of ways to select the dice (again, binomial coefficients). So the chance of one three is $4*(1/6)(5/6)^3=500/1296$. The chance of two threes is $6*(1/6)^2*(5/6)^2=150/1296$. The chance of three threes is $4*(1/6)^3*(5/6)=20/1296$ and the chance of four threes is $1*(1/6)^4*(5/6)^0=1/1296$.

If we add these all together, we get $(500+150+20+1)/1296=671/1296$ which is the the same as $1-(5/6)^4$ as expected. This is the formal way of working it out, but the short cut is the complement. The way I target these questions is to work out which has the least leg work. You are asked for the chance of at least one which includes the options 1,2,3,4, where as the complement is just 0. If you were asked for the chance of at least two, this is 2,3,4 and the complement is 0 or 1 (which is easier to work out). It is only when you're asked for 3 or more, that it's easier the formal way.

In general, if $X$ is the number of something with maximum value $Y$ (number of heads in Y coin tosses, threes on a dice roll, etc) and you want to calculate the probability that $X>n$ (written $P(X>n)$) it easier to use the complement if n

2
On
  • $1-\left(\dfrac{5}{6}\right)^4$ is the probability of not getting $0$ threes

which can also be calculated directly as $4 \times \dfrac{1}{6}\times \left(\dfrac{5}{6}\right)^3 +6 \times \left(\dfrac{1}{6}\right)^2\times \left(\dfrac{5}{6}\right)^2+4 \times \left(\dfrac{1}{6}\right)^3\times \dfrac{5}{6}+ \left(\dfrac{1}{6}\right)^4 $ as the probability of getting $1$, $2$, $3$ or $4$ threes

  • $\dfrac{1}{6}+\dfrac{1}{6}+\dfrac{1}{6}+\dfrac{1}{6}$ is the expected number of threes. This is more that the first value, as you might get more than $1$ three, which counts once towards the first question, but more than once towards the expectation

which can also be calculated as $1\times 4 \times \dfrac{1}{6}\times \left(\dfrac{5}{6}\right)^3 +2 \times 6 \times \left(\dfrac{1}{6}\right)^2\times \left(\dfrac{5}{6}\right)^2+3 \times 4 \times \left(\dfrac{1}{6}\right)^3\times \dfrac{5}{6}+ 4 \times\left(\dfrac{1}{6}\right)^4 $

0
On

"It is the case that at least one is a three" is equivalent to saying "It is not the case that none are a three"

Here, we use the axioms of probability that $Pr(A\cup B) = Pr(A)+Pr(B)$ when $A$ and $B$ are mutually exclusive events, that $A\cup A^c = \Omega$ the sample space, and that $Pr(\Omega)=1$ to conclude that $Pr(\text{At least 1 three}) = 1-Pr(\text{no threes})$

If you wanted to, you could calculate it directly as follows:

Break into cases based on the number of threes. "At least one three" is in this case equivalent to "Exactly one three or exactly two threes or exactly three threes or exactly four threes"

Each of these are disjoint events, so $Pr(\text{at least one three}) = Pr(\text{exactly one three})+Pr(\text{exactly two threes})+Pr(\text{exactly three threes})+Pr(\text{exactly four threes})$

We calculate each individually. In the case of exactly one three, pick which location the three occupies (4 choices) and pick the number for each other location (5 choices each). Divide by the sample space size. Alternatively, approach via binomial distribution. Either way, you will arrive at $Pr(\text{exactly one three})=4(\frac{1}{6})(\frac{5}{6})^3$

Similarly, we have the others as $\binom{4}{k}(\frac{1}{6})^k(\frac{5}{6})^{4-k}$ for the probability of getting exactly $k$ threes.

Adding, you have $Pr(\text{at least one three}) = \frac{4\cdot 5^3 + 6\cdot 5^2+4\cdot 5^1+4}{6^4}$, which after calculation you will find equals $1-(\frac{5}{6})^4$

The mistake of using $(\frac{1}{6})^4$ is that you calculated $Pr(\text{exactly four threes})$ which is only a small portion of the event at least one three.