The key to proving this property is to know how the binomial
coefficient is calculated. Given n distinct items, the number of ways
to choose m among them is written
C(n, m)
and properly pronounced "n choose m". The formula to calculate it is
n!
C(n, m) = -----------
(n-m)! * m!
where "!" is used to denote the factorial function, so that, for example,
n! = n * (n-1) * (n-2) * ... * 2 * 1.
An article in Eric Weisstein's Mathworld describes the binomial
coefficient in greater detail.
http://mathworld.wolfram.com/BinomialCoefficient.html
I shall begin by rewriting your equation using the standard notation.
C(n, k) * C(k, r) = C(n, r) * C(n-r, k-r)
This says that the product of n choose k with k choose r is equal to
the product of n choose r with n-r choose k-r. We expand both sides of
the equation by applying the formula for the binomial coefficient.
n! k! n! (n-r)!
----------- * ----------- = ----------- * -----------------------
(n-k)! * k! (k-r)! * r! (n-r)! * r! (n-r - (k-r))! * (k-r)!
Notice that both sides of the equation have common factors in the
numerator and denominator. We divide both sides by n!, and multiply
both sides by r! and (k-r)!.
1 k! 1 (n-r)!
----------- * ---- = ------ * --------------
(n-k)! * k! 1 (n-r)! (n-r - (k-r))!
In the denominator on the right-hand side, we see that
(n-r - (k-r))! = (n - r - k + r)
= (n - k)
so we can simplify the equation to
1 k! 1 (n-r)!
----------- * ---- = ------ * ------
(n-k)! * k! 1 (n-r)! (n-k)!
and, after multiplying both sides by (n-k)!, further to
1 k! 1 (n-r)!
---- * ---- = ------ * ------.
k! 1 (n-r)! 1
But this is just
k! (n-r)!
---- = ------
k! (n-r)!
or
1 = 1
which holds trivially. Thus, we have shown that the equation
C(n, k) * C(k, r) = C(n, r) * C(n-r, k-r)
is true.
If you find my answer incomplete or inaccurate in any way, please let
me know so that I have a chance to meet your needs before you assign a
rating.
leapinglizard |