How would the following summation work?
$\sum_{r,s,t \ge 0_{r+s+t=n}} \binom{m_1}{r} \binom{m_2}{s} \binom{m_3}{t}$
How would you choose the value for the next integer in the series?
For example, for n=2. Either r,s, or t = 2. Or r = 1 and s = 1 (or any combination thereof)
I think the inclusion-exclusion principle would be used but I'm don't know how it would be applied.
Sorry if this is a duplicate question. I wasn't sure how to word it.
The more general formula for a sum is the following: $$S=\sum_{i\in A} f(i) $$ where $A$ is a set and $f:A\to \Bbb N$ is a function. For example in your case : $$A=\left\{(r,s,t)\big/r,s,t\geq 0,r+s+f=n\right\}\ \text{ and }\ \ f(r,s,t)=\binom{m_1}{r} \binom{m_2}{s} \binom{m_3}{t} $$ How to compute the sum manually, first you determine the set $A$ and then you comute $S$, for exemple if $A=\{x_1,\cdots,x_n\}$ then $$S=f(x_1)+\cdots+f(x_n)$$ The order of the elements is not important when you compute the sum and does not affect either it's value because the $A$ does not contain any order, so you choose the order you want. The most important here is to determine the completely the set $A$.
Evaluation of the sum
What is the coefficient of $x^n$ in $$(1+x)^{m_1+m_2+m_3}=(1+x)^{m_1}(1+x)^{m_2}(1+x)^{m_3}$$ As consequence your sum equals: $$\dbinom{m_1+m_2+m_3}{n} $$