So I recently tried to compute some probabilities, and through my journey learned all about the hypergeometric distribution. I finally learned how to calculate the probability of having at least one red and at least one black ball in a draw of $4$ balls out of an urn filled with $4$ red, $4$ black and $52$ white balls.
$$\sum_{r=1}^4 \sum_{b=1}^4 \frac{\displaystyle{4 \choose r}{4 \choose b}{52 \choose 7-r-b}}{\displaystyle{60 \choose 7}}$$
But then someone pointed out to me that this probability can be computed much more efficiently $($obviously after I finally figured out how to implement the above in my preferred programming language$)$, like this:
$$1-2~\frac{\displaystyle\binom{56}{7}}{\displaystyle\binom{60}{7}}+\frac{\displaystyle\binom{52}{7}}{\displaystyle\binom{60}{7}}$$
So, I am wondering, why or when would I ever prefer to compute the actual probability $($hypergeometric function$)$ instead of trying to compute the probability of the event$($s$)$ not happening, and simply subtract from $1$.