Two Plus Two Older Archives

Two Plus Two Older Archives (http://archives2.twoplustwo.com/index.php)
-   Mid-, High-Stakes Pot- and No-Limit Hold'em (http://archives2.twoplustwo.com/forumdisplay.php?f=17)
-   -   What's My Play? (http://archives2.twoplustwo.com/showthread.php?t=237994)

iversonian 04-24-2005 02:57 AM

Re: What\'s My Play?
 
This problem got my interest. I spent a few minutes working on it and got an answer of the probability of you winning this prop bet at 14%.

Just to clarify the problem, you said that it was 101 games, first to 51. Except with ties, nobody might get to 51 before you hit 101 games. I'm guessing you meant first to 51 regardless. For my program, I assumed every game had a win/lose outcome, with a win% as given by the EV % on twodimes. I'm sure it doesn't change the outcome too much.

The probability of, in 101 games, of winning 0 games, losing 101 (with the nines, p = 0.553 per game) is:

(1-p)^101

The probability of winning one and losing 100 is:
(n choose r) * p^r * (1-p)^(n-r)
where n = games = 101, r = games won = 1
---- (n choose r) = n! / ( r!*(n-r)! )

Probability of winning 51 to 101 games is:
SUM r=51 to 101: (n choose r) * p^r * (1-p)^(n-r) = 0.8579

Probability of AK winning 0 to 50 games should be:
SUM r=0 to 50: (n choose r) * p^r * (1-p)^(n-r) = 0.8579
where p = .447
which checks out.

Public Function PropBet()
Dim n, r As Integer
Dim prob, sum As Double

n = 101
prob = 0.553
sum = 0#

For r = 51 To 101
sum = sum + Factorial((n)) / Factorial((r)) / Factorial((n - r)) * prob ^ r * (1 - prob) ^ (n - r)
Next

MsgBox sum

End Function

iversonian 04-24-2005 02:59 AM

Re: What\'s My Play?
 
FYI, if the AK is suited, p=.476, then your odds of winning the bet increases to 31%.

hansarnic 04-24-2005 10:49 AM

Re: What\'s My Play?
 
[ QUOTE ]
Of course; now I see the trick. I'll run some sims on Probe and see what the distributions look like. This is a sucker bet, but man, you could fool a stack of people with it -- seriously, I could have laid off $20K in action in a heartbeat.

I feel like an idiot. Live and learn.

[/ QUOTE ]

Sounds great at first doesn't it. I can imagine a lot of ppl going for it, especially if this guy was clever about how he offered it.

CHiPS 04-24-2005 11:20 AM

Re: What\'s My Play?
 
Thanks for posting that calculation iversonian. I suppose then that the next hundred times I go all in for the "coin flip" scenareo of unsuited AK vs a pair I'd much rather have the pair.


All times are GMT -4. The time now is 09:38 AM.

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