Two Plus Two Older Archives  

Go Back   Two Plus Two Older Archives > General Gambling > Probability
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 12-08-2004, 03:55 AM
Transference Transference is offline
Senior Member
 
Join Date: Jun 2004
Location: Huntsville, TX
Posts: 103
Default Prop bets

Someone was tossing out these proposition bets at the home game last week. My math isnt up to snuff, how do these look number wise?

Bet 1: Pays 1:1
Take the bet and your betting any Ace, Seven or Jack will not appear on the flop.

Bet 2: Pays 4:1?
Betting that a flop will add up to 21 blackjack style.

Have fun numbercruches, Im guessing these should be pretty simple to figure out but not my forte.
Reply With Quote
  #2  
Old 12-08-2004, 05:23 AM
gaming_mouse gaming_mouse is offline
Senior Member
 
Join Date: Oct 2004
Location: my hero is sfer
Posts: 2,480
Default Re: Prop bets

[ QUOTE ]
Bet 1: Pays 1:1
Take the bet and your betting any Ace, Seven or Jack will not appear on the flop.

[/ QUOTE ]

(40 choose 3)/(52 choose 3) = .4470

A fair bet would pay you 1.23:1
[ QUOTE ]

Bet 2: Pays 4:1?
Betting that a flop will add up to 21 blackjack style.


[/ QUOTE ]

EDIT: redoing this one -- original didn't take into account aces as 11's.
Reply With Quote
  #3  
Old 12-08-2004, 05:41 AM
gaming_mouse gaming_mouse is offline
Senior Member
 
Join Date: Oct 2004
Location: my hero is sfer
Posts: 2,480
Default Re: Prop bets

If bet 2 were a fair bet, it would pay about 10:1.

Java code below:

<font class="small">Code:</font><hr /><pre>
public class PropBet {
public static void main(String[] args) {
int[] deck = {1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7 ,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,10,10,10,10,10, 10,10,10,10,10,10,10};
System.out.println(deck.length);
int total = 0;
int cnt21 = 0;
int sum1, sum2, sum3, sum4;
for (int i=0; i&lt;52; i++){
for (int j=i+1; j&lt;52; j++){
for (int k=j+1; k&lt;52; k++){
sum1 = sum2 = sum3 = sum4 = 0;
sum1 = deck[i] + deck[j] + deck[k];
if (deck[i] == 1)
sum2 = 11 + deck[j] + deck[k];
if (deck[j] == 1)
sum3 = deck[i] + 11 + deck[k];
if (deck[k] == 1)
sum4 = deck[i] + deck[j] + 11;
if (sum1 == 21 || sum2 == 21 || sum3 == 21 || sum4 == 21)
cnt21++;
total++;
}
}
}
System.out.println(total);
double ans = (double)cnt21/(double)total;
System.out.println(ans);
System.out.println((1-ans)/ans);
}
}
</pre><hr />
Reply With Quote
  #4  
Old 12-08-2004, 08:06 AM
Transference Transference is offline
Senior Member
 
Join Date: Jun 2004
Location: Huntsville, TX
Posts: 103
Default Re: Prop bets

Excellent work, thanks!
Reply With Quote
  #5  
Old 12-08-2004, 11:24 AM
IsaacW IsaacW is offline
Senior Member
 
Join Date: Jul 2004
Location: Finding patterns in the static.
Posts: 603
Default Re: Prop bets

[ QUOTE ]
(40 choose 3)/(52 choose 3) = .4470

[/ QUOTE ]

Assuming that you are offered this bet after looking at your cards, it's even worse if you have no A, J, or 7:

(38 choose 3)/(50 choose 3) = 0.4304

However, if both your cards are either A, J, or 7 (ie AA, A7, J7, AJ, etc.) then you should take the bet:

(40 choose 3)/(50 choose 3) = 0.5041

A fair payout here is only 98.38 cents on the dollar.

EDIT: I assume hold'em here, not a crazy "house" game like pineapple. There the odds are even better if you have 3 As, Js, or 7s:

(41 choose 3)/(49 choose 3) = 0.5786 ~ 0.7283:1
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 01:54 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.