What Is the Probability of Winning at Craps After Rolling an 8?

  • Thread starter Thread starter Biosyn
  • Start date Start date
  • Tags Tags
    Game Statistics
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 5K views
Biosyn
Messages
114
Reaction score
0

Homework Statement



Roll a pair of six-sided dice. If the sum is 7 or 11, you win. If the sum is 2,3, or 12, you lose. If the sum is any other number, you roll again. In fact, you continue throwing the dice until you either roll that number again (win!) or roll a 7 (lose!).

Suppose you roll a sum of 8 on the first roll. Find the probability that you subsequently win the game, given that you rolled an 8 to start with.

Homework Equations



Conditional probability

The Attempt at a Solution



I'm not sure which way is correct.
First, I did: 5/36 because there are 5 ways to get a sum of 8.

Then I thought about the probability being 5/11. Because there are only two outcomes that I care about. An 8 or 7.
There are 5 ways to get an 8 and 6 ways to get a 7.

So... 5/(5+6) = 5/11

Would someone please explain the difference between the two attempts and explain why one or the other is wrong?
 
Physics news on Phys.org
In your first try, the probability of rolling a 7 doesn't enter into the calculation at all. Doesn't that seem wrong to you?

Your second try gives the correct answer, but it's not clear to me that you know why.
 
awkward said:
In your first try, the probability of rolling a 7 doesn't enter into the calculation at all. Doesn't that seem wrong to you?

I was thinking about only finding the probability of getting an 8 to win. I didn't think finding the probability of getting a 7 would matter.
 
Biosyn said:

Homework Statement



Roll a pair of six-sided dice. If the sum is 7 or 11, you win. If the sum is 2,3, or 12, you lose. If the sum is any other number, you roll again. In fact, you continue throwing the dice until you either roll that number again (win!) or roll a 7 (lose!).

Suppose you roll a sum of 8 on the first roll. Find the probability that you subsequently win the game, given that you rolled an 8 to start with.

Homework Equations



Conditional probability

The Attempt at a Solution



I'm not sure which way is correct.
First, I did: 5/36 because there are 5 ways to get a sum of 8.

Then I thought about the probability being 5/11. Because there are only two outcomes that I care about. An 8 or 7.
There are 5 ways to get an 8 and 6 ways to get a 7.

So... 5/(5+6) = 5/11

Would someone please explain the difference between the two attempts and explain why one or the other is wrong?

There are two ways to look at it: (1) the straightforward, but technically lengthy way; and (2) the short, but tricky way.

Let's look at (1). The relevant outcomes are '7' (prob. = p_7 = 7/36), '8' (prob. = p_8= 5/36) and 'o' = 'other' (prob. = p_o = 1- p_7 - p_8 = 24/36). You keep tossing until a 7 or 8 appears; you win on '8' and lose on '7'. You can win on the first toss (i.e., 'first' after getting your original '8' = first toss of the rest of the game), or you can win on the second toss, or on the 3rd toss,... or on the nth toss... . The probability you win on the nth toss p_o^(n-1)*p_8 for n = 1,2,3,... So
[tex]P\{\text{win}\} = p_8 \sum_{n=1}^{\infty} p_o^{n-1} = p_8/(1 - p_o) = p_8/(p_7 + p_8).[/tex]
Method (2). Since '7' and '8' are the only _relevant_ outcomes, P{win} = P{8|7 or 8} = p_7/(p_7 + p_8). Can you see the logic here?
 
Ray Vickson said:
There are two ways to look at it: (1) the straightforward, but technically lengthy way; and (2) the short, but tricky way.

Let's look at (1). The relevant outcomes are '7' (prob. = p_7 = 7/36), '8' (prob. = p_8= 5/36) and 'o' = 'other' (prob. = p_o = 1- p_7 - p_8 = 24/36). You keep tossing until a 7 or 8 appears; you win on '8' and lose on '7'. You can win on the first toss (i.e., 'first' after getting your original '8' = first toss of the rest of the game), or you can win on the second toss, or on the 3rd toss,... or on the nth toss... . The probability you win on the nth toss p_o^(n-1)*p_8 for n = 1,2,3,... So
[tex]P\{\text{win}\} = p_8 \sum_{n=1}^{\infty} p_o^{n-1} = p_8/(1 - p_o) = p_8/(p_7 + p_8).[/tex]
Method (2). Since '7' and '8' are the only _relevant_ outcomes, P{win} = P{8|7 or 8} = p_7/(p_7 + p_8). Can you see the logic here?


Where is this formula from?
I understand it much better now. Thank you.