Given an urn filled with 4 black balls, 4 red balls, the remaining being white, the probability of seeing AT LEAST one red ball AND AT LEAST one black ball when taking out 7 balls can be computed as follows:
$\sum_{r=1}^4 \left(\sum_{b=1}^4 \frac{{4 \choose r}{4 \choose b}{52 \choose 7-r-b}}{{60 \choose 7}}\right)$
Now, someone recently commented saying that this could be computed much more efficiently, but I never got an answer as to how. Can somebody tell me how else this probability can be computed, which would be more efficient as well?