Why Does My Dice Probability Calculation Differ from Expected Results?

  • Context: High School 
  • Thread starter Thread starter Thecla
  • Start date Start date
  • Tags Tags
    Dice Probability Roll
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 2K views
Thecla
Messages
137
Reaction score
10
TL;DR
What is probability of throwing one six in a throw of pair of dice?
I was trying to calculate the probability of throwing only one six when throwing a pair of dice.
Using the formula for non-mutually exclusive events : P(A)+P(B)-P(A,B) I get 1/6+1/6-1/36=11/36
but when I count all the 36 possibilities on paper I get 10/36 ways of getting only one 6. What am I doing wrong?
 
Physics news on Phys.org
Thanks for your help. So it is 10/36=1/6+1/6-2/36
 
Thecla said:
Thanks for your help. So it is 10/36=1/6+1/6-2/36
Yes. A common trick for those questions is to use the complement statement. We have ##5^2## cases without a ##6## plus ##(6,6)##, which leaves ##10## positive cases.
\begin{align*}
P((\lnot A \wedge \lnot B)\vee (A\wedge B) )&=P(\lnot A \wedge \lnot B)+P(A\wedge B)\\&=P(\lnot A)\cdot P(\lnot B)+P(A)\cdot P(B)\\&=\dfrac{5}{6}\cdot\dfrac{5}{6}+\dfrac{1}{6}\cdot\dfrac{1}{6}\\&=\dfrac{26}{36}
\end{align*}
 
Dale said:
Seems like you are counting wrong.
Oops, sorry, I was wrong. I was counting “at least one 6” instead of “only one 6”