|
1 Combination IdentitiesC(n,r) is the number of r-element subsets of an n-element set. C(n,r) = n!/(r!(n-r)!) = (n-r+1)(n-r+2)(n-r+3)...(n) / ((1)(2)(3)...(r)) Example: C(7,3) = 7!/(3! 4!) = (5)(6)(7) / ((1)(2)(3))
1 Mirror IdentityC(n,r) = C(n,n-r) Proof: C(n,r) = n!/(r!(n-r)!) = n!/((n-r)!(r!)) = C(n,n-r) Example: C(9,3) = (7)(8)(9) / ((1)(2)(3)) = (4)(5)(6)(7)(8)(9) / ((1)(2)(3)(4)(5)(6)) = C(9,6) Pascal's Triangle IdentityC(n,r) = C(n-1,r-1) + C(n-1,r), whenever 0 < r < n.
1 The proof involves rewriting n! as (n)(n-1)!, and then splitting n into r and (n-r):
Example:
A more intuitive demonstration starts by noting that every r-element subset of an n-element set either contains "element X" (any element picked out in advance) or it doesn't. Each of the r-element sets containing X is the union of {X} and an r-1-element subset of the n-1-element set missing X. Each of the r-element sets not containing X is an r-element subset of the n-1-element set missing X. Extended Pascal's Triangle IdentityThe standard Pascal's Triangle identity, introduced above, is a special case of the more general identity,
In the example shown above, we have extended the definition of "Combination" so that any number outside Pascal's triangle is considered zero. The next section elaborates on this idea. Proof by induction on k: The "ordinary" Pascal's Triangle identity, proved in the previous section is the base case. Now assume it's true for k.
Applying the ordinary identity to C(n-k,r-k-i), expressing each term as the sum of the two above it in the triangle,
Then observe that, apart from the first and last term, each term in row n-k-1 is multiplied first by C(k,i) then by C(k,i+1), adding the results. Thus the second factor of each term can be simplified using the ordinary identity:
Extending the definition of "Combination"It is helpful and intuitive to extend the definition of "combination" to include C(n,r) where r is less than zero or greater than n, and define such combinations as zero. For example, the number of 5-element subsets of a 3-element set is zero: C(3,5)=0. By extending the definition this way, the Pascal's Triangle Identity need no longer restrict r, and proofs such as those, below, that depend on it are simplified. Since it is helpful, and nothing is "broken" by this convention, it is a fairly common convention, and we will use it here. Row Sums
The proof works by showing that every number of this row is the sum of two numbers above it, so each number in the row above this one is used twice in the sum. Thus, the sum of each row is twice that of the row above it.
Diagonal Sums
Proof:
Example: C(3,3) + C(4,3) + C(5,3) + C(6,3) = 1+4+10+20 = 35 = C(7,4) Second Order Diagonal Sum
Proof:
kth Order Diagonal Sum
Proof: assume it's true for k-1, and show it's true for k:
Internet ReferencesRelated Pages in this Website
|
|
The webmaster and author of the Math
Help site is Graeme McRae. |