It's subsumed under Vandermonde's Identity.
Let a set consist of $n$ kiwis and $n$ figs. We want to count how many ways there are to select $n$ fruits, regardless of type. One immediate answer is $\binom{2n}{n}$.
Now count in a different way. Each selection of $n$ fruits contains a certain number, say $k$, of kiwis and also $n-k$ figs, so $0 \leq k \leq n$.
For any particular value of $k$, we can choose the kiwis in $\binom{n}{k}$ ways and the figs in $\binom{n}{n - k}$ ways.So the # of ways to choose an $n$ set with $k$ kiwis is $\binom{n}{k}\binom{n}{n - k} = \binom{n}{k}^2$.
- I initially asked this here, but now separately.
Thus, $\color{green}{\text{the total # of ways to select $n$ fruits independent of type}}$
= total # of ways to select $0$ kiwis + total # of ways to select $1$ kiwis $+ \cdots +$ total # of ways to select $(n - 1)$ kiwis + $\color{orangered}{\text{the total # of ways to select $n$ KIWIS}}$ $\color{green}{= \binom{n}{0}^2 + ... \binom{n}{n - 1}^2 + \color{orangered}{\binom{n}{n}^2}}$. $\Large{\color{#B22222}{]}}$
- Why must we sum from $0 \leq k \leq n$?