Counting Principles - Key Proof
Pascal's Identity is one of the most elegant and useful results in combinatorics, providing both a recursive formula for computing binomial coefficients and the foundation for Pascal's triangle.
For integers and with ,
with boundary conditions for all .
Proof (Combinatorial):
We give a bijective proof by counting the same set in two different ways.
Let be a set with elements, and fix a particular element . We wish to count the number of -element subsets of , which is .
We partition the -element subsets into two disjoint classes:
- Those that contain
- Those that do not contain
Class 1: If a subset contains , we need to choose the remaining elements from the elements in . The number of such subsets is .
Class 2: If a subset does not contain , we need to choose all elements from the elements in . The number of such subsets is .
These two classes are disjoint and exhaustive (every -element subset either contains or doesn't), so by the addition principle:
This completes the combinatorial proof.
Proof (Algebraic):
We can also prove Pascal's identity algebraically using the factorial formula for binomial coefficients:
Finding a common denominator:
This completes the algebraic proof.
Pascal's identity generates Pascal's triangle, where each entry is the sum of the two entries above it:
The -th row (starting from row 0) contains the binomial coefficients .
Pascal's identity is computationally significant because it allows us to compute binomial coefficients recursively without directly computing factorials, which can overflow for large values. The identity also has a probabilistic interpretation: if we have independent trials, the probability of exactly successes can be expressed in terms of the probabilities for trials by conditioning on whether the -th trial succeeds. This connects combinatorics to probability theory in a fundamental way.