|
|
| Probability Discussions of probability theory |
06-08-2012, 04:32 PM
|
#1
|
|
enthusiast
Join Date: Mar 2007
Location: 10th-18th in major mtts
Posts: 77
|
Craps Probability
What are the odds rolling every number once before rolling a 7. Thanks for any help I'm way too dumb to figure this out my own. I was curious bc I was lucky enough to do this last night while playing the craps feature bet at the Wynn. They offered 176:1 on it so I know its far greater then that just wondering how big of a dog I was.
|
|
|
06-08-2012, 04:34 PM
|
#2
|
|
enthusiast
Join Date: Mar 2007
Location: 10th-18th in major mtts
Posts: 77
|
5 was the last number I needed to hit the prop so I hedged a little and layed the 5 for $300, but ended up making it a few rolls later. Sick brag I know.
|
|
|
06-08-2012, 06:25 PM
|
#3
|
|
Carpal \'Tunnel
Join Date: Sep 2002
Posts: 8,896
|
Re: Craps Probability
Quote:
Originally Posted by ndgrinder59
What are the odds rolling every number once before rolling a 7. Thanks for any help I'm way too dumb to figure this out my own. I was curious bc I was lucky enough to do this last night while playing the craps feature bet at the Wynn. They offered 176:1 on it so I know its far greater then that just wondering how big of a dog I was.
|
189.1970864:1
Well, you came to the right place for this question. The last time someone asked something similar, I ended up finding a fairly simple solution to a generalized coupon collector problem. In that case, the person wanted to know the average number of rolls needed to roll every number. This required computing the probabilities of certain numbers occurring before other numbers. An R program was written to compute these exact probabilities using the inclusion-exclusion principle because they became too complicated to do by hand. The most complicated probability is the one that you asked - the probability that a 7 doesn't occur before any other number. It involves 1023 terms. Fortunately, it is the last term that the program computes, so all I had to do to get your answer was to have the program output this final probability.
Here is a link to the earlier problem solution. For your question I simply modified this to output the final value of (1-p) which is the probability that a 7 does not occur before any other number. I'm assuming that you mean that every other number has to occur AT LEAST once, not exactly once which would obviously be highly unlikely. Here is a link to the Wizard of Odds' explanation of my solution which you might find helpful in addition to my own explanation. It's the last problem on that page.
Last edited by BruceZ; 06-08-2012 at 06:44 PM.
|
|
|
06-08-2012, 08:23 PM
|
#4
|
|
enthusiast
Join Date: Mar 2007
Location: 10th-18th in major mtts
Posts: 77
|
Wow great answer, thx for taking the time to lay it all out for me.
|
|
|
06-08-2012, 08:26 PM
|
#5
|
|
enthusiast
Join Date: Mar 2007
Location: 10th-18th in major mtts
Posts: 77
|
So in theory the casino doesn't have a huge edge on this prop, and in certain scenarios you can hedge and lock up a profit.
|
|
|
06-09-2012, 01:06 PM
|
#6
|
|
Carpal \'Tunnel
Join Date: Sep 2002
Posts: 8,896
|
Re: Craps Probability
Quote:
Originally Posted by ndgrinder59
So in theory the casino doesn't have a huge edge on this prop, and in certain scenarios you can hedge and lock up a profit.
|
6.94% which is worse than US Roulette, and worse than most bets on the table including many bets that are generally considered sucker bets.
|
|
|
06-11-2012, 04:59 AM
|
#7
|
|
Administrator
Join Date: Aug 2002
Posts: 9,897
|
Re: Craps Probability
Quote:
Originally Posted by BruceZ
6.94% which is worse than US Roulette, and worse than most bets on the table including many bets that are generally considered sucker bets.
|
Except that is not really the best way to look at it. The better way is to calculate your chances of turning one dollar into 175. Using that criteria this prop is less of a sucker bet than most table bets.
|
|
|
06-17-2012, 02:40 AM
|
#8
|
|
Carpal \'Tunnel
Join Date: Sep 2002
Posts: 8,896
|
Re: Craps Probability
Quote:
Originally Posted by David Sklansky
Except that is not really the best way to look at it. The better way is to calculate your chances of turning one dollar into 175. Using that criteria this prop is less of a sucker bet than most table bets.
|
Would you say that betting a number in American roulette is less of a sucker bet than betting the pass line in craps without odds because you are more likely to turn $1 into $36 in roulette than on the pass line? Would a hard hop prop bet that pays 33:1 be less of a sucker bet than the pass line bet because it turns $1 into $34 with higher probability?
If the criterion is the probability of turning $1 into $177 (because the prop bet pays 176:1), then this prop bet would also be better than the pass line bet.
I wrote the R program below to compute the probability of reaching a target bankroll from a starting bankroll given the payout odds and winning probability. These can be changed via the 4 numbers at the top. They are currently set for American roulette. It computes the probability of reaching the goal if we bet the whole bankroll until we have enough to reach it in 1 (possibly smaller) bet, then bet enough to reach the goal until we either reach it or can no longer reach it in 1 bet, and then repeat the whole process until we reach the goal, have less than $1, or have repeated this process 1000 times (so it doesn't run forever with negligible increase in probability). The program assumes that we can only bet in integer multiples of $1.
Code:
br = 1 # Starting Bankroll
goal = 177 # Target bankroll
odds = 35 # Payoff Odds
p = 1/38 # P(win bet)
prob = 0
p_fail = 1
count = 0
while ( (br >= 1) & (br < goal) & (count < 1000) ) {
# Compute probabity of completing parlay up
consec = 0
while (br + br*odds <= goal) {
br = br + br*odds
consec = consec + 1
}
p_parlay = p^consec
# Compute probabilty of reaching goal
bets = 0
if (br < goal) {
while ( br >= ceiling((goal-br)/odds) ) {
br = br - ceiling((goal-br)/odds)
bets = bets + 1
}
}
p_goal = ifelse(bets, 1-(1-p)^bets, 1)
delta = p_fail*p_parlay*p_goal
prob = prob + delta
p_fail = p_fail*p_parlay*(1-p)^bets
count = count + 1
}
prob # Probability of reaching goal
delta
count
Last edited by BruceZ; 06-17-2012 at 09:15 AM.
|
|
|
06-17-2012, 10:00 AM
|
#9
|
|
Pooh-Bah
Join Date: May 2005
Location: New York
Posts: 3,830
|
Re: Craps Probability
BruceZ gave an ingenious answer to the question you meant to ask, what are the chances of rolling each number AT LEAST once before you get a 7. The question you asked, the chances of rolling each number once before you get a 7 is much easier (and the feat is much harder).
Say you have a random number generator that gives the numbers 1 to 36 with equal probability. We map the random number 1 to the dice roll 2, the random numbers 2 and 3 to the dice roll 3, the random numbers 4, 5 and 6 to the roll 4, and so on. This simulates a dice roll.
If you roll the simulated dice 10 times, there are 36^10 = 3,656,158,440,062,980 possible outcomes. There are 10! = 3,628,800 orders to arrange the 10 numbers from 2 to 12 excluding 7. There is 1 way to get a 2 or 12, 2 ways to get a 3 or 11 and so on. That means there are 5!^2 = 14,400 ways to map each of the 10 dice numbers other than seven to the 36 random numbers. 36^10 / (10!*5!^2) = 69,968 so the odds are 69,967 to 1.
Looking at it another way, only one time in 370 when someone wins the Wynn bet, will she do it without repeating a number.
The question of how to evaluate "sucker" bets is not one mathematics can answer. BruceZ, like most mathematicians, tends to divide the expected loss by the maximum possible loss to rank bets. That's one way to do it, but I consider it arbitrary. I think it makes more sense to start by asking why someone is making a bet. If the goal is to make money in the long run then all negative expected value bets are equally bad, because all will fail at the goal.
If the goal is to have fun, then the appropriate denominator is the amount of fun the bet provides. That's related to the standard deviation of the bet, as well as how long it takes to play (too quick means you don't get much for your expected loss, too slow gets boring) and other subjective features of play. The Wynn feature bet offers a better ratio of expected loss to standard deviation than any bet in roulette.
For example, suppose a player and his wife split up. The player makes this bet all night at the craps table, his wife bets red on roulette all night. At the end of the night, the craps feature bet player has probably won once and lost a little money; but he has a reasonable chance of having won twice and being up a lot, or even won more than twice. He also has a reasonable chance of having lost every bet. His wife has a fairly predictable small loss.
The wife like rebet winnings many times over, the craps bettor might have done no rebetting, and in any case did much less than his wife. The expected loss fraction does not apply to the stack of chips you buy, but to the chips you bet. Games with a small house edge in which players rebet winnings a lot mean the casino takes a larger fraction of the chips purchased than games with larger house edges in which players do not rebet.
Every dice roll mattered a lot to final outcome for the craps bettor, each roulette bet was insignificant to the wife. He was hanging out with a bunch of guys yelling slang and jargon; and drinking; with lots of complicated table markers moving around. She was probably hanging out with a quieter mixed sex crowd watching a pretty piece of machinery generate random numbers.
Who had more fun for their money? De gustibus non est disputandum. But I think it's fair to say that the craps player did more gambling for his money.
Last edited by AaronBrown; 06-17-2012 at 10:06 AM.
|
|
|
06-18-2012, 03:37 PM
|
#10
|
|
Administrator
Join Date: Aug 2002
Posts: 9,897
|
Re: Craps Probability
If you have x dollars and you need to turn it into x+n dollars (and will go broke trying) and you can bet fractional amounts (to precisely hit your goal) what x and n makes pass line bets lesser negative EV than the Wynn bet?
|
|
|
06-18-2012, 05:16 PM
|
#11
|
|
enthusiast
Join Date: Jun 2011
Posts: 78
|
Re: Craps Probability
Quote:
Originally Posted by AaronBrown
If the goal is to have fun, then the appropriate denominator is the amount of fun the bet provides. That's related to the standard deviation of the bet, as well as how long it takes to play (too quick means you don't get much for your expected loss, too slow gets boring) and other subjective features of play. The Wynn feature bet offers a better ratio of expected loss to standard deviation than any bet in roulette.
|
Great post!
My BF always says I always make bets with a low *thrill* factor.
Such a boring way to play and gamble.
thrill factor = SD/EV
So last time I played in a casino I added 345X odds at Craps while betting the pass line instead of my usual 1X odds.
Too much thrill for me.
Sally
|
|
|
06-19-2012, 10:24 PM
|
#12
|
|
Carpal \'Tunnel
Join Date: Sep 2002
Posts: 8,896
|
Re: Craps Probability
Quote:
Originally Posted by David Sklansky
If you have x dollars and you need to turn it into x+n dollars (and will go broke trying) and you can bet fractional amounts (to precisely hit your goal) what x and n makes pass line bets lesser negative EV than the Wynn bet?
|
This appears to have a very interesting answer that I did not expect. My program is saying that the following are all of the integer values of n/x less than 1000 for which the pass line is less negative EV than Wynn:
1-27
30-32
496-524
That is, it is saying that if the ratio of your stop win to your stop loss is equal to one of these values, then you are better off betting the pass line without odds than betting the Wynn bet. I also checked values of 0.1, 0.2, up to 0.9, and in all of those cases the pass line is better.
I've been trying to understand why the better bet reverses 4 times. I suspect that it's due to the fact that certain stop wins will allow a bet to hit or fail with little or no money left over, which would save bets by eliminating additional passes or decrease the size of bets, which would improve the EV. The other bet could have lots of money left over to make more bets or larger bets. If I eliminate all passes but the first, then the island of values from 496-524 goes away. Let me know if the results are in line with what you were expecting.
I also did the analysis for betting a number in American roulette. There are values of n/x for which roulette will be better than both Wynn and the pass line. Yet people consider roulette to be a sucker's game. Aaron Brown says that the Wynn bet has a "better ratio of standard deviation to expected loss than any bet in roulette". Well the ratio is certainly higher, but that doesn't always make it better for the player in this scenario depending on his stop win and stop loss.
I also did the analysis for the 33:1 hard hop prop bet in craps. There are values of n/x for which that bet is better than both the pass line and Wynn. Yet about these prop bets one noted expert opines, "Players with any sense at all will avoid them completely".
We are assuming that bets can be subdivided indefinitely, but in the real world there is always a minimum chip, even if it is only a penny. This can change which bet is better. For example, I looked at betting a single number to playing red in single 0 roulette, and the bet which is better for turning 1000 into 2000 with only integer bets is different from the bet that is better for turning 1000 into 2000 with a bet that can be subdivided indefinitely. In American roulette, the result is same either way; betting a number is better.
Last edited by BruceZ; 06-20-2012 at 03:20 AM.
|
|
|
02-25-2013, 12:21 AM
|
#13
|
|
stranger
Join Date: Feb 2013
Posts: 4
|
Re: Craps Probability
What are the odds of rolling a 2, 3, 4, 5, and a 6 at least once with 2 dice before rolling a 7? Would that be half of 189:1?
Thanks, ECinOC
|
|
|
02-25-2013, 11:21 AM
|
#14
|
|
Carpal \'Tunnel
Join Date: Sep 2002
Posts: 8,896
|
Re: Craps Probability
Quote:
Originally Posted by ECinOC
What are the odds of rolling a 2, 3, 4, 5, and a 6 at least once with 2 dice before rolling a 7? Would that be half of 189:1?
|
36.945:1.
There are only 21 terms to compute instead of 1023 as before. The first 5 are 6/7 + 6/8 + 6/9 + 6/10 + 6/11 which are the 5 probabilities that a 7 occurs before each of the 5 numbers 2-6. Then we subtract the probabilities for 10 combinations of 2 numbers, add the probabilities for 10 combinations of 3, subtract the probabilities for 5 combinations of 4, and add the probability for all 5. That's the probability that a 7 occurs before we get all the others, so we subtract that from 1.
To compute this exactly with the original R script I linked, it was only necessary to change in_36 to c(1,2,3,4,5,6) and have the script output the final value of 1-p. I created the new script below which would answer the general question: "What are the odds of rolling <list of numbers> at least once with 2 dice before rolling <number>?". Simply put list of numbers in the array nums on the first line. The order you list the numbers doesn't matter as long as the one that has to come last is listed last (7 in this case).
Code:
##################################################################
# Odds against rolling a subset of numbers before a single number
##################################################################
nums = c(2,3,4,5,6,7) # Last must occur only after all others in any order
in_36 = ifelse(nums <= 7, nums-1, 13-nums) # Ways to make each number
i = length(in_36)
p = 0
for (j in 1:(i-1)) { # Last number before j numbers
terms = combn(in_36[1:(i-1)],j) # Matrix w/combos of j numbers in C(i-1,j) columns
for (k in 1:ncol(terms)) { # Sum each column, compute and add probabilities
p = p + (-1)^(j+1) * in_36[i]/(in_36[i] + sum(terms[1:j,k]))
}
}
Odds.to.1 = 1/(1-p) - 1
Odds.to.1
Output:
> Odds.to.1
[1] 36.94503
Last edited by BruceZ; 02-25-2013 at 11:26 PM.
Reason: Commented code
|
|
|
02-25-2013, 10:48 PM
|
#15
|
|
stranger
Join Date: Feb 2013
Posts: 4
|
Re: Craps Probability
Thanks Bruce for the informative reply. Just to be clear, in the computation above, if for instance an 8 is rolled, it is a non-event. By that I mean the numbers 2, 3, 4, 5, and 6 need to be rolled before a 7 but those aren't the only numbers that can be rolled. If a 9 is rolled, that is fine for the sake of the odds I requested. It is only a 7 that cannot be rolled. Is that consistant with your computations?
And to recap, the odds of rolling a 2, 3, 4, 5, 6, 8, 9, 10, 11, and 12 (of course not in any specific order) before rolling a 7 is 189:1?
Again, many, many thanks for taking the time and sharing your considerable intellect,
ECinOC
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -4. The time now is 11:20 PM.
|