I have this problem which I have been struggling with for a while now
An urn contains n red balls, n white balls and n black balls. You draw k balls at random without replacement ($k\leqq n$). Find an expression for the probability that you do not get all colors.
I tried to solve this in the following way: I note that it should be logical to think P(not getting all colours in k draws) = P(getting exactly one color only in k draws OR get exactly two different colors only in k draws).
Therefore, I choose the events $A_1=\{$get one color k times$\}$ and $A_2=\{$get two colors k times$\}$
Therefore, we seek $P(A_1 \cup A_2)$.
Clearly, $A_1 = \frac{{n\choose k}}{3n\choose k}$ and $A_2 = \frac{{2n\choose k}}{3n\choose k}$. And because the both events are disjoint, we simply get
$P(A_1 \cup A_2) = P(A_1) + P(A_2) = \frac{1}{3n\choose k}\big({n\choose k}+{2n\choose k}\big)$.
According to my textbook, however, the answer should be
$\frac{3}{3n\choose k}\big({2n\choose k}-{n\choose k}\big)$.
What am I doing wrong? Are the answers equivalent because of some mystical binomial-identity?