Question:
There are 10 people. Each is dealt 5 cards from a 52 card deck. What is the probability that the first 9 people have exactly one heart, and the last person has exactly two hearts?
Here is the solution I am trying to understand:
For notation, the event that the ${i}$th person has exactly one heart is $A_i$.
The solution I am reading states that you must compute $P(A_1) \times P(A_2|A_1) \times P(A_3|A_1,A_2) \times \cdots \times P(A_{10}|A_1,A_2...A_9)$ which would be
$$ \frac{13*\binom{39}{4}}{\binom{52}{5}} * \frac{12*\binom{35}{4}}{\binom{47}{5}} * \frac{11*\binom{31}{4}}{\binom{42}{5}} ... \frac{\binom{4}{2}*\binom{3}{3}}{\binom{7}{5}} $$
Why are conditional probabilities needed to solve this problem? And doesn't this solution only hold for a specific ordering of people?
Isn't there a way to do this purely with combinatorics?
Conditional probabilities are needed because the fact that the first person gets exactly one heart tells us what deck the second person is drawing from. It has $12$ hearts and $35$ non-hearts, which is (a bit) richer in hearts than the original deck.
As expressed, the solution is specific to the ordering of people. The probability is the same if you ask the same question with any specific person getting the two hearts. The specific terms will change, but the result will be the same. The easiest way to see it is to imagine dealing all the cards before anybody looks at them. If you want the chance that everybody except the seventh gets one heart and the seventh gets two, just look at the hands in a different order where the last person's hand is looked at seventh.
This solution is purely combinatorics. Why do you think it is not? We have computed the number of successes and divided by the number of total possibilities.