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 08-08-2005, 03:46 PM
sthief09 sthief09 is offline
Senior Member
 
Join Date: Feb 2004
Location: duffman is thrusting in the direction of the problem (mets are 9-13, currently on a 1 game winning streak)
Posts: 1,245
Default Omaha Preflop Probabilities (Can someone check my math please)

<font class="small">Code:</font><hr /><pre>
=4*4*COMBIN(50-8,2)/COMBIN(52,4) getting dealt A2xx
=1-(1-[above])^10 anyone having A2xx
=3*3*COMBIN(50-8,2)/COMBIN(52,4) A2xx if I have A2xx
=1-(1-[above])^9 chances of anyone else having A2xx
=4*3*COMBIN(52-4-3-4,2)/COMBIN(52,4) someone having A2xx if I have A3xx
=1-(1-[above])^9 anyone having A2xx if I have A3xx

</pre><hr />
and results:
5.1% getting dealt A2xx
40.7% Anyone having A2xx
2.9% A2xx if I have A2xx
23.0% chances of anyone else having A2xx
3.6% someone having A2xx if I have A3xx
28.3% anyone having A2xx if I have A3xx
Reply With Quote
  #2  
Old 08-08-2005, 04:15 PM
LetYouDown LetYouDown is offline
Senior Member
 
Join Date: Mar 2005
Location: Sharing a smoke w/negativity
Posts: 524
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

On your first one...the probability of having A-2-X-Y where X and Y aren't A or 2. You have 50-8 but you need 52-8 or 50-6 instead. This brings the probability slightly higher and looks right.

I haven't looked hard at the other numbers, but my guess is that they're at least slightly off. I believe you overlooked the Inclusion/Exclusion principle (sticky, for the love of GOD, lol). So you're double/triple counting times when more than one person has the hand in question.
Reply With Quote
  #3  
Old 08-08-2005, 04:40 PM
BruceZ BruceZ is offline
Senior Member
 
Join Date: Sep 2002
Posts: 1,636
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

[ QUOTE ]

=4*4*COMBIN(50-8,2)/COMBIN(52,4) getting dealt A2xx

[/ QUOTE ]

If you want x to not be A or 2, then you want COMBIN(52-8,2). This will not count cases where x can be another A or 2.


[ QUOTE ]
=1-(1-[above])^10 anyone having A2xx

[/ QUOTE ]

This is an approximation since the hands are not independent. For the exact answer, use inclusion-exclusion. This would be complicated if you also want to count cases where x can be A or 2.


[ QUOTE ]
=3*3*COMBIN(50-8,2)/COMBIN(52,4) A2xx if I have A2xx

[/ QUOTE ]

Should be COMBIN(52-8,2). Does not count cases where x can be another A or 2.

<font color="red"> COMBIN(50-8,2) was right since you have to subtract the two x. However, the denominator should be C(48,4).</font>


[ QUOTE ]
=1-(1-[above])^9 chances of anyone else having A2xx

[/ QUOTE ]

Same comments as above about inclusion-exclusion.


[ QUOTE ]
=4*3*COMBIN(52-4-3-4,2)/COMBIN(52,4) someone having A2xx if I have A3xx

[/ QUOTE ]

If x is not A,2,3 then this should be COMBIN(52-<font color="red">14</font>). If your opponent can have a 3, then it should be COMBIN(52-<font color="red">11</font>). Either way, this does not count x can be another A or 2.
<font color="red">The denominator needs to be C(48,4).</font>


[ QUOTE ]
=1-(1-[above])^9 anyone having A2xx if I have A3xx

[/ QUOTE ]

Same comments as above about inclusion-exclusion.
Reply With Quote
  #4  
Old 08-08-2005, 04:43 PM
aloiz aloiz is offline
Junior Member
 
Join Date: Feb 2004
Posts: 4
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

Need to assume that xx does not contain an A,2, and in the last two cases a 3 for the following to be correct.

getting A2xx =
4 * 4 * C(44,2)/C(52,4) =~ .056

anyone at a 10 person table getting A2xx (need inclusion exclusion for this)=
10*4*4*C(44,2)/C(52,4)
- C(10,2) *4*4*C(44,2) * 3*3*C(42,2)/C(52,4)/C(48,4)
+ C(10,3) *4*4*C(44,2) * 3*3*C(42,2) * 2*2*C(40,2)/C(52,4)/C(48,4)/C(44,4)
- C(10,4) * 16 * C(44,2) * 9 * C(42,2) * 4 * C(40,2) * C(38,2)/C(52,4)/C(48,4)/C(44,4)/C(40,4) =~ .467

A specific person having A2xx given that I have A2xx
Your calculation is correct

Someone else having A2xx given that I have A2xx (again inclusion/exclusion)=
9*3*3*C(42,2)/C(52,4)
- C(9,2) *3*3*C(42,2) * 2*2*C(40,2)/ C(48,4)/C(44,4)
+ C(9,3) *9*C(42,2) * 4*C(40,2) * C(38,2)/ C(48,4)/C(44,4)/C(40,4) =~ .226

A specific person having A2xx given that I have A3xx:
Your's looks right

Someone else having A2xx given that I have A3xx =
9*4*3*C(41,2)/C(48,4)
- C(9,2) *4*3*C(41,2) * 3*2*C(39,2)/C(48,4)/C(44,4)
+ C(9,3) *4*3*C(41,2) * 3*2*C(39,2) * 2*C(37,2) / C(48,4)/C(44,4)/C(40,4) =~ .398

aloiz
Reply With Quote
  #5  
Old 08-08-2005, 04:48 PM
BruceZ BruceZ is offline
Senior Member
 
Join Date: Sep 2002
Posts: 1,636
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

[ QUOTE ]
I haven't looked hard at the other numbers, but my guess is that they're at least slightly off. I believe you overlooked the Inclusion/Exclusion principle (sticky, for the love of GOD, lol). So you're double/triple counting times when more than one person has the hand in question.

[/ QUOTE ]

Double/triple counting would happen if he just multiplied by the number of opponents, assuming mutual exclusivity. He's not doing that. He is using the approximation of independence, which should actually give an answer that is less than the actual value. This is because each opponent who does not have it makes it more likely for the next opponent to have it. We are approximating all of the probabilities of not having it as equal, which gives a result that is too high, and then we subtract from 1, which makes it too low. This should give a lower bound, and mutual exclusivity should give an upper bound, so we can see how accurate it is, and whether we need to use inclusion-exclusion.
Reply With Quote
  #6  
Old 08-08-2005, 04:58 PM
LetYouDown LetYouDown is offline
Senior Member
 
Join Date: Mar 2005
Location: Sharing a smoke w/negativity
Posts: 524
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

You're right (shocker). I should have looked harder before I posted. Time for me to go read the inclusion/exclusion post again =).
Reply With Quote
  #7  
Old 08-08-2005, 05:09 PM
sthief09 sthief09 is offline
Senior Member
 
Join Date: Feb 2004
Location: duffman is thrusting in the direction of the problem (mets are 9-13, currently on a 1 game winning streak)
Posts: 1,245
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

[ QUOTE ]

I haven't looked hard at the other numbers, but my guess is that they're at least slightly off. I believe you overlooked the Inclusion/Exclusion principle (sticky, for the love of GOD, lol). So you're double/triple counting times when more than one person has the hand in question.

[/ QUOTE ]


yeah I know about that but I knowin hold'em it's fairly clsoe to just any one person ahving it. but that's with something like what are the chances that someone has AA if you have KK. the chances of 2 people having AA are almost 0 so it's not worth considering
Reply With Quote
  #8  
Old 08-08-2005, 05:21 PM
BruceZ BruceZ is offline
Senior Member
 
Join Date: Sep 2002
Posts: 1,636
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

[ QUOTE ]
[ QUOTE ]

I haven't looked hard at the other numbers, but my guess is that they're at least slightly off. I believe you overlooked the Inclusion/Exclusion principle (sticky, for the love of GOD, lol). So you're double/triple counting times when more than one person has the hand in question.

[/ QUOTE ]


yeah I know about that but I knowin hold'em it's fairly clsoe to just any one person ahving it. but that's with something like what are the chances that someone has AA if you have KK. the chances of 2 people having AA are almost 0 so it's not worth considering

[/ QUOTE ]

That's irrelevant for your calculation. The fact that the probability of 2 people having A2xx might be small would mean that you could assume mutual exclusivity and just multiply by the number of opponents, which is the same as using just 1 term in inclusion-exclusion. You are using the approximation of independence which requires a different assumption, namely that the events of each player having A2xx are independent of each other, meaning that one player's results do not affect the probabilities for other players, so you can multiply the probabilities by raising to the 10th power. I don't think either one of these are very good approximations for omaha, and they appear to give answers that differ by over 10%.

See aloiz's post, and my response to his post, for the exact answers by the inclusion-exclusion computation. These numbers are higher than yours as predicted, and one is almost 12% higher. It looks like the inclusion-exclusion principle has really found its use in Omaha.
Reply With Quote
  #9  
Old 08-08-2005, 06:30 PM
BruceZ BruceZ is offline
Senior Member
 
Join Date: Sep 2002
Posts: 1,636
Default Re: Omaha Preflop Probabilities (Can someone check my math please)

This is what we need. I only found one thing that needs to be recomputed, and one comment.

[ QUOTE ]
Need to assume that xx does not contain an A,2, and in the last two cases a 3 for the following to be correct.

getting A2xx =
4 * 4 * C(44,2)/C(52,4) =~ .056

anyone at a 10 person table getting A2xx (need inclusion exclusion for this)=
10*4*4*C(44,2)/C(52,4)
- C(10,2) *4*4*C(44,2) * 3*3*C(42,2)/C(52,4)/C(48,4)
+ C(10,3) *4*4*C(44,2) * 3*3*C(42,2) * 2*2*C(40,2)/C(52,4)/C(48,4)/C(44,4)
- C(10,4) * 16 * C(44,2) * 9 * C(42,2) * 4 * C(40,2) * C(38,2)/C(52,4)/C(48,4)/C(44,4)/C(40,4) =~ .467

[/ QUOTE ]

OK


[ QUOTE ]
A specific person having A2xx given that I have A2xx
Your calculation is correct

[/ QUOTE ]

His denominator needs to be C(48,4) instead of C(52,4).


[ QUOTE ]
Someone else having A2xx given that I have A2xx (again inclusion/exclusion)=
9*3*3*C(42,2)/C(52,4)
- C(9,2) *3*3*C(42,2) * 2*2*C(40,2)/ C(48,4)/C(44,4)
+ C(9,3) *9*C(42,2) * 4*C(40,2) * C(38,2)/ C(48,4)/C(44,4)/C(40,4) =~ .226

[/ QUOTE ]

The denominator in the first term should be C(48,4). That would change this to ~.327 if everything else is right.


[ QUOTE ]
A specific person having A2xx given that I have A3xx:
Your's looks right

[/ QUOTE ]

His denominator needs to be C(48,4) instead of C(52,4).


[ QUOTE ]
Someone else having A2xx given that I have A3xx =
9*4*3*C(41,2)/C(48,4)
- C(9,2) *4*3*C(41,2) * 3*2*C(39,2)/C(48,4)/C(44,4)
+ C(9,3) *4*3*C(41,2) * 3*2*C(39,2) * 2*C(37,2) / C(48,4)/C(44,4)/C(40,4) =~ .398

[/ QUOTE ]

You said this would not allow a 3, but the C(41,2) in each term allows 3s. 52 - 4 aces - 4 deuces - 1 three - 2 x = 41. To exclude 3s we would make it C(38,2). Allowing 3s may be preferable though.
Reply With Quote
  #10  
Old 08-08-2005, 06:42 PM
BruceZ BruceZ is offline
Senior Member
 
Join Date: Sep 2002
Posts: 1,636
Default See updated comments in red above *nm*

x
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 10:29 AM.


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