From an ordinary deck of playing cards, cards are to be drawn successively at random without replacement. What is the probability of having two spades in first five draws ?
I know this is a trivial question but I got little confused
Actually I found this question in introduction to mathematical statistics 7th edition by Hogg and Craig on page 22 example 4.3
My intuition says I should use permutations (as we are drawing cards successively - - not simultaneously) to compute this, but the author is using combinations to compute this probability ..
Kindly give some suggestions. Where I am wrong in thinking about this ..
Thankyou in advance . And sorry for asking a trivial question like this.
Case 1) If there are at least 2 spades in the first 5 cards
As for the sample space there are $$\binom {52}{5}.5!$$ ways to select and then draw the cards without any restriction.
We first find the number of ways in which there are exactly 2 spades in the first 5. Then we find the number of ways in which there are exactly 3 spades out of 5 and so on.
For two exactly two spades using the reasoning in case 2, we get the number of ways for two spades as $$\binom {13}{2}\binom {39}{3}.5!$$
Using this same reasoning we find answer for 3 spades, 4 spades and 5 spades. Hence we need to simply find $$\sum_{k=2}^5 \binom {13}{k}\binom {39}{5-k}5!$$
Which by Vandermonde's identity simplifies to $$5!\sum_{k=2}^5 \binom {13}{k}\binom {39}{5-k}=5!*\left[\binom {52}{5}- \left[ \binom {39}{5}+\binom {13}{1}\binom {39}{4}\right]\right]$$ Hence probability is $$1- \frac {\binom {39}{5}+\binom {13}{1}\binom {39}{4} }{\binom {52}{5}}$$
Case 2) If exactly 2 spades in first 5 cards
As for the sample space there are $$\binom {52}{5}.5!$$ ways to select and then draw the cards without any restriction.
But for our event we need two of the first 5 cards to be spade. We can select this spade in $\binom {13}{2}$ ways while the rest 3 can be chosen in $\binom {39}{3}$ ways.
But since the cards are drawn successively drawn we also need to arrange them
Hence number of ways of drawing 5 cards such that 2 of them are spade is $$\binom {13}{2}\binom {39}{3}.5!$$
Hence the probability is $$\frac {\binom {13}{2}\binom {39}{3}}{\binom {52}{5}}$$