Eight hands of five cards each are dealt from a shuffled deck of cards without replacement so that there are twelve undealt cards. Find the probability that at least one of these hands has no diamonds.
The solution uses the inclusion-exclusion theorem. Is there any other way to solve this problem without using that theorem?
Thanks.
Comment. A simulation of a million iterations of this game approximates the answer as $0.9248\pm 0.0005.$
In the R code below, in
deckDiamonds are1s, cards of other suites are0;dltis a 40-vector of cards dealt;h1is $0$ if there are no Diamonds in Hand 1, and so on for the other seven hands. Thus.ndhas a million elements: $0$ if one or more hands has no Diamond. Finally,mean(nd)is the proportion of iterations in which one or more hands had no Diamond. With a million iterations we can expect simulation error of $\pm 0.001.$Note: Consider the following very rough combinatorial approximation. The probability that one 5-card hand avoids Diamonds is ${{13\choose 0}{39\choose 5}}/{{52\choose 5}} \approx 0.22.$ Then, if the eight hands were independent, the probability of at least one hand without Diamonds would be about $1 - .78^8 \approx 0.86.$