← back to combinatorics

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.

C(n-1,k-1) C(n-1,k) C(n,k) +

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