The problem I'm trying to solve goes like this: Suppose that you play a game by rolling three dice, and your score is the highest number that appears on any of the dice. Suppose your opponent's score is $4$. What is your probability of winning the game?
The solution to the problem goes like this: the required probability is easier to compute as $1$ minus the probability that our score is $\leq 4$, which works out to be $1 - (\frac{2}{3})^3$.
Now, when I worked out this problem, my reasoning was like this: We only need to work out the probability that one of the die returns a $5$ or $6$, and then the rest of the two can be anything. So, if I fix one of the dice as $5$, the total outcomes for this case are $6^2$ (because anything can appear on the other two dice), and the same goes for the case when I fix one of the dice as $6$.
By my reasoning, the answer is $\frac{2 \times 6^2}{6^3} = \frac{1}{3}$.
I have two questions here:
- Why is my reasoning wrong?
- Why does the solution say it's easier to compute it the other way?
Because you are considering only the cases with 5 and 6 in one die but you should consider all the possible cases that is
one die 5 or 6 and the others 1 to 4 that is $\frac{3\times2 \times 4^2}{6^3} = \frac{12}{27}$
two dice 5 or 6 and one 1 to 4 that is $\frac{3\times 2^2 \times 4}{6^3} = \frac{6}{27}$
three dice 5 or 6 that is $\frac{2^3}{6^3} = \frac{1}{27}$
that is
$$\frac{12}{27}+\frac{6}{27}+\frac{1}{27}=\frac{19}{27}$$
For that the way proposed in the book is convenient since counting the no winning cases is simpler.