Let's consider a deck of $52$ cards $(A,K,Q,J,10,9,8,7,6,5,4,3,2)$. Two players each draw $5$ cards without putting them back into the deck.
Calculate the probability that the first player draws at least one Ace and at least one King
Calculate the probability that the second player draws exactly one King knowing that the first player has drawn the King of Hearts and exactly one 2 among his five cards.
Now suppose that the two players carry out a series of draws one after the other (the first one goes first) and the winner is the one who draws the King of Spades first.
Calculate the probability that at least four cards must be revealed before the King of Spades is revealed, in the case in which reinsertion is carried out and in the case in which it is not carried out.
If the players decide to put the cards back into the deck after each draw (shuffling), is the first player more likely to win the game?
My attempt is the following:
- If $A$ is the requested event, then $A^C$ is the event in which neither Aces nor Kings are extracted.
$$\mathbb{P}(A)=1-\mathbb{P}(A^C)=1-\frac{\binom{44}{5}}{\binom{52}{5}}\approx 0.58$$
- If $B$ is the requested event, then
$$\mathbb{P}(B)=\frac{\binom{3}{1}\binom{44}{4}}{\binom{47}{5}}\approx 0.27$$
- I have that, if $N$ is the variable that counts the number of cards drawn.
EXTRACTION WITH REINSERTION:
$$\mathbb{P}(N\geq 4)=1-\mathbb{P}(N<4)=\frac{1}{52}+\frac{51}{52}\cdot \frac{1}{52}+\left(\frac{51}{52}\right)^2\cdot \frac{1}{52}=$$
$$=1-\frac{1}{52}\left(1+\frac{51}{52}+\left(\frac{51}{52}\right)^2\right)\approx 0.943$$
EXTRACTION WITHOUT REINSERTION:
$$\mathbb{P}(N\geq 4)=1-\mathbb{P}(N<4)=1-\left(\frac{1}{52}+\frac{51}{52}\cdot\frac{1}{51}+\frac{51}{52}\cdot \frac{50}{51}\cdot \frac{1}{50}\right)=$$
$$=1-\frac{3}{52}=\frac{49}{52}\approx 0.942$$
- No, the probability is always the same.
I don't understand if is it correct that in 3. the probabilities are the same and if 4. is a correct deduction. Any suggestions?