TheoremComplete

Counting Principles - Applications

Vandermonde's Identity is a fundamental combinatorial identity with numerous applications in counting problems involving multiple selections from different groups.

DefinitionVandermonde's Identity

For non-negative integers mm, nn, and rr with rm+nr \leq m+n, (m+nr)=k=0r(mk)(nrk)\binom{m+n}{r} = \sum_{k=0}^{r} \binom{m}{k}\binom{n}{r-k}

where we adopt the convention that (ab)=0\binom{a}{b} = 0 if b>ab > a or b<0b < 0.

Proof (Combinatorial):

We prove this identity by counting the same objects in two different ways (bijective proof).

Consider selecting rr objects from a set of m+nm+n objects. Suppose the objects are partitioned into two groups: group A with mm objects and group B with nn objects.

The left-hand side (m+nr)\binom{m+n}{r} counts the number of ways to select rr objects from all m+nm+n objects without regard to which group they come from.

For the right-hand side, we count by considering how many objects come from each group. If we select kk objects from group A, then we must select rkr-k objects from group B (where 0kr0 \leq k \leq r). The number of ways to do this is (mk)(nrk)\binom{m}{k}\binom{n}{r-k}.

Summing over all possible values of kk gives all possible ways to distribute our selection between the two groups: k=0r(mk)(nrk)\sum_{k=0}^{r} \binom{m}{k}\binom{n}{r-k}

Since both sides count the same thing, they must be equal. \square

Proof (Algebraic):

Using the binomial theorem, we have: (1+x)m(1+x)n=(1+x)m+n(1+x)^m(1+x)^n = (1+x)^{m+n}

Expanding the left side: (k=0m(mk)xk)(j=0n(nj)xj)\left(\sum_{k=0}^{m} \binom{m}{k}x^k\right)\left(\sum_{j=0}^{n} \binom{n}{j}x^j\right)

The coefficient of xrx^r on the left is obtained by collecting all terms where k+j=rk+j = r: k=0r(mk)(nrk)\sum_{k=0}^{r} \binom{m}{k}\binom{n}{r-k}

Expanding the right side: (1+x)m+n=r=0m+n(m+nr)xr(1+x)^{m+n} = \sum_{r=0}^{m+n} \binom{m+n}{r}x^r

The coefficient of xrx^r on the right is (m+nr)\binom{m+n}{r}.

Since the coefficients of xrx^r must be equal on both sides, we conclude: (m+nr)=k=0r(mk)(nrk)\binom{m+n}{r} = \sum_{k=0}^{r} \binom{m}{k}\binom{n}{r-k}

This completes the proof. \square

ExampleApplication: Committee Selection

A committee of 5 people is to be selected from 7 men and 8 women. Vandermonde's identity tells us: (155)=k=05(7k)(85k)\binom{15}{5} = \sum_{k=0}^{5} \binom{7}{k}\binom{8}{5-k}

This equation states that the total number of committees equals the sum of committees with exactly kk men (and 5k5-k women) for each kk from 0 to 5. This provides both a verification method and an alternative counting strategy when we need to consider gender composition.

Remark

Vandermonde's identity has several special cases. Setting m=n=rm = n = r gives (2nn)=k=0n(nk)2\binom{2n}{n} = \sum_{k=0}^{n} \binom{n}{k}^2, expressing the central binomial coefficient as a sum of squares. Setting n=1n = 1 yields the simpler identity (m+1r)=(mr)+(mr1)\binom{m+1}{r} = \binom{m}{r} + \binom{m}{r-1}, which is equivalent to Pascal's identity. The identity also extends to negative integers and plays a crucial role in hypergeometric series.