Suppose we have 4 red balls, 5 green balls and 6 blue balls. In how many ways can we distribute these balls into 3 numbered urns, $U_1, U_2$, and $ U_3$? Note that the balls can be distributed in any way, even if all balls end up in a single urn.
My attempt: Let $R_1, R_2, R_3$ denote the number of red balls in urns $U_1, U_2,$ and $U_3$, respectively. Similarly, define $G_1, G_2, G_3$ and $B_1, B_2, B_3$ for green and blue balls. Then, I need to find all the combinations $(R_1, R_2, R_3), (G_1, G_2, G_3)$, and $(B_1, B_2, B_3)$ such that $R_1+R_2+R_3=4$, $G_1+G_2+G_3=5$, and $B_1+B_2+B_3=6$. It is well-known that the number of solutions to the equation $x_1+x_2+...+x_k=n$ with $x_i \in \{0,1,2,...,n\}$ is given by $\binom{n+k-1}{k-1}$. Therefore, the total number of possible combinations is given by:
$$ \binom{6}{2}\cdot\binom{7}{2}\cdot\binom{8}{2}=8820. $$
Question: Is my solution correct? If so, are there simpler ways to solve this problem?