@whosnext: last night I didn't feel like searching through your long calculation to find the bug. But now I'm bored, so I will.
Quote:
Originally Posted by whosnext
Prob of an opponent having AA:
...
= 1.95918367%
This part is right.
8*3 / C(50,2) = 1.95918367 %
Quote:
Prob of one opponent having AA and another opponent having KK:
= [C(44,12)*C(3,2)*C(3,2)*C(8,2)*C(2,2)*C(2,2) + C(44,11)*C(3,3)*C(3,2)*C(8,2)*C(3,2)*C(2,2) + C(44,11)*C(3,2)*C(3,3)*C(8,2)*C(2,2)*C(3,2) +
C(44,10)*C(3,3)*C(3,3)*C(8,2)*C(3,2)*C(3,2)] / [C(50,16)*C(16,2)*C(14,2)]
I see what went wrong: you had to multiply the whole numerator by 2, so as to count player identity (ie the distinction between which villain gets the AA and which one gets KK). The denominator counts that, but player ID doesn't actually matter, so it needs to be either canceled out or not counted anywhere.
If you don't want the denominator to count player ID, it has to be: C(50,16) * C(16,4) * 3!!
or equivalently: C(50,16) * C(8,2) * 15 * 13
Last edited by heehaww; 07-27-2016 at 08:25 PM.