Auntbeast : It is pretty likely that your whiner will get an unmatched deuce in a hand. Analysis follows. It’s just as likely he’ll get an ace, too, of course, but you probably knew that.
The number of other players has no effect on the cards one person gets. If you have trouble with this, consider that it ought to make no difference if you’re dealt 7 cards straight off the top, or dealt the 1st, 8th, 16th, etc. The cards are random either way.
- In a stud game, you can see the other cards and have some idea of what cards you may get, but that only applies to that particular game. It also doesn’t affect the final outcome, only what you can expect it to be while playing. I’ve ignored it here.
Assuming just one deck (i.e. you can’t get dealt the same card twice), the formula you use is ‘sampling without replacement’.
The ‘choose’ function to get combinations is useful for notation: C(n,m) means 'the number of ways to choose m items out of n total; written out it is
n!
m!(n-m)!
(n! means n-factorial, the product of all numbers from 1 to n).
Suppose we have a deck of N cards. There are D deuces in the deck.
We’re dealt n cards, and we want to know the probability of exactly k
cards that are deuces. We have this formula:
(n-card hands that have k deuces)
(all possible n-card hands)
which becomes
(number of ways to choose k cards of D deuces) * (number of ways to choose the other cards (n-k) from the rest of the deck (N-D) )
(total number of ways to be dealt n cards from a deck of N)
which is
C(D,k)*C(N-D,n-k)
C(N,n)
I wasn’t sure if you were asking about the whole hand or just the first three.
To get exactly one deuce in a 7-card hand :
C(4,1)*C(48,6)
C(52,7)
= 0.370 which you can see is high enough it’s almost sure to happen in a night.
For the first three:
C(4,1)*C(48,2)
C(52,3)
= 0.204 which is still about 1 in 5 hands.