Quote:
Originally Posted by Klyka
Possible omaha starting hands: 52C4 = 52*51*50*49 = 6497400
|
That's not 52C4, it is 52P4 (permutations with order, not combinations without order). Divide by 4! for 52C4 You can use either one as long as you are consistent.
Quote:
|
Possible omaha starting hands with at least two aces: 6*4C2*50C2 = 6*4*3*50*51 = 183600
|
You can't just multiply by 50C2 as this counts the hands with 3 aces C(3,2) = 3 times, and it counts the hands with 4 aces C(4,2) = 6 times. You must use separate terms to count these, or you can use what you computed as the first step to the inclusion-exclusion principle where the over counting is desirable.
Using what the OP already knows, we can get P(at least 2) like this:
P(at least 2) =
P(exactly 2) + P(exactly 3) + P(exactly 4) =
4/52 * 3/51 * 48/50 * 47/49 *6 +
4/52 * 3/51 * 2/50 * 48/49 *4 +
4/52 * 3/51 * 2/50 * 1/49
or more compactly
4*3*(48*47*6 + 2*48*4 + 2*1) / (52*51*50*49)
=~ 2.57%
Note that we multiply by 6 for P(exactly 2) since there are 4*3/2 = 6 pairs of cards that could be aces. For P(exactly 3) we multiply by 4 since there are 4 ways to choose the 3 cards that are aces.
Using combinations this is:
[ C(4,2)*C(48,2) + C(4,3)*48 + C(4,4) ] / C(52,4)
=~ 2.57%