Binomial Coefficients
Applied Combinatorics (CC BY-SA) · appliedcombinatorics.org
C(n,k) is the single most reused number in combinatorics. Pascal's recurrence C(n,k) = C(n−1,k−1) + C(n−1,k) builds the whole triangle from addition alone, and the binomial theorem says row n is exactly the coefficients of (x+y)n.
The triangle is just addition
Every interior entry is the sum of the two above it. That single rule, seeded with 1s on the edges, reproduces every binomial coefficient with no factorials at all.
Row sums and the binomial theorem
The entries of row n sum to 2n (the number of subsets of an n-set). Set x = y = 1 in the binomial theorem and that identity falls out for free.
Scheme
Neighbors
- 🧮 Ch.3 Bijective Proof — why the row sum is 2n, proven by counting subsets
- # Number Theory — Lucas' theorem reads C(n,k) mod p off the digits