Number of hands with identical cards out of two decks

826 Views Asked by At

Two identical complete decks of cards, each with 52 cards, have been mixed together. A hand of 5 cards is picked uniformly at random from amongst all subsets of exactly 5 cards (order of cards in the hand is not important).

  1. What is the probability of choosing a hand with exactly 2 identical cards (1 pair)?
  2. What is the probability of choosing a hand with exactly 2 pairs of identical cards?

I tried something, but I probably go wrong somewhere (I have the opposite probability in a textbook and that one summed up with solution of 1. and 2. is not 1).

  1. Let's compute the number of hands with a single pair of identical cards. For the identical cards we have ${52 \choose 1}$. For the rest of the 4 cards we have ${51 \choose 4}$ possibilities (51, as they are not allowed to be as the first selected card), but because every card can be taken from the first or second deck, we have in total ${2^4} \cdot {51 \choose 4}$. So the required probability would be: $ \frac {{52 \choose 1} \cdot {2^4} \cdot {51 \choose 4}} {{104 \choose 5}}$, where the denumerator is the total number of possible hands out of 104 cards.
  2. Similarly for two pairs of identical pairs: $ \frac {{52 \choose 2} \cdot {2^3} \cdot {50 \choose 3}} {{104 \choose 5}}$

My problem is that each of the two probabilities are bigger than 1 (which is definitely wrong) and that they are equal (which my intuition refuses to believe).

1

There are 1 best solutions below

2
On

For case 1, first choose the value and suit of the card that is the pair ($52$). Then choose the values/suits of the three unpaired cards ($_{51}C_3$) and then choose which instance of each card goes in your hand ($2^3=8$).

For case 2, choose the value and suit of the two cards that are the pairs ($_{52}C_2$) and then choose the card from the rest of the pile ($100$).

So the probability for case 1 is

$$P_1 = \frac{(52)(_{51}C_3)(8)}{_{104}C_5},$$

and for case 2 it's

$$P_2 = \frac{(_{52}C_2)(100)}{_{104}C_5}.$$