I throw three dice simultaneously. What is the probability of throwing a six with at least one of them?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
It isn't 6 1 + 6 1 + 6 1 = 2 1 because then what would happen with 7 dice? The probability would be 6 7 , which is impossible. So we try a different approach.
We take the probability of NOT getting a six with one throw: 6 5 . Now, the probability of NOT getting a single six with 3 throws will be ( 6 5 ) 3 = 2 1 6 1 2 5 . But we're not done! This is the complement: the probability of the event P(at least one six)= 1 − 2 1 6 1 2 5 = 2 1 6 9 1 .
Nice solution. Just a few reminders for the LaTeX.
It isn't /(/frac {1}{6} + \frac {1}{6}+ \frac {1}{6}=\frac {1}{2}}\) because ...
LaTeX almost never uses "/". Always use "\". (without the apostrophes)
... would be \(\frac {7}{6}, which is impossible. ...
Remember to put "\)" (without the apostrophes) at the end. Also, there shouldn't be a space between "\frac" and "{7}{6}". It should be like \frac{7}{6}, not \frac {7}{6}
Python:
1 2 3 4 5 6 7 8 9 10 |
|
Problem Loading...
Note Loading...
Set Loading...
Let A be the event of rolling at least one 6 with 3 dice. Let B be the event of NOT rolling at least one 6 .
The probability of NOT rolling at least one 6 is P ( B ) = ( 6 5 ) 3 = 2 1 6 1 2 5 .
Since A and B are mutually exclusive events, P ( A ) = 1 − P ( B ) P ( A ) = 2 1 6 9 1