The page covered the formal definition and notation, the network of identities the coefficient satisfies, the Pascal's-triangle organization, and the multinomial generalization. The table below collects the formula, boundary values, and generalizations in one reference card.
| Concept |
Statement |
Example |
| Standard formula |
C(n, k) = n! ⁄ (k! · (n − k)!) for 0 ≤ k ≤ n |
C(5, 2) = 120 ⁄ (2 · 6) = 10 |
| Combinatorial meaning |
number of k-element subsets of an n-element set |
2-subsets of {a, b, c, d, e}: 10 |
| Read aloud |
"n choose k" |
C(5, 2) reads "5 choose 2" |
| Edge values |
C(n, 0) = C(n, n) = 1 for every n ≥ 0 |
C(7, 0) = C(7, 7) = 1 |
| Linear values |
C(n, 1) = C(n, n − 1) = n |
C(7, 1) = 7 |
| Out of range |
C(n, k) = 0 whenever k > n or k < 0 |
C(3, 5) = 0 |
| Real upper index |
C(x, k) = x(x−1)(x−2)…(x−k+1) ⁄ k! — a polynomial of degree k in x |
C(½, 2) = (½ · −½) ⁄ 2 = −1⁄8 |
| Pascal's-triangle row |
row n holds C(n, 0), C(n, 1), …, C(n, n) |
row 4: 1, 4, 6, 4, 1 |
| Multinomial generalization |
C(n; k₁, …, kr) = n! ⁄ (k₁! · k₂! · … · kr!) with k₁+…+kr = n |
C(6; 2, 2, 2) = 720 ⁄ 8 = 90 |
| Where it appears |
subset counts, polynomial expansions (binomial theorem), discrete probability (binomial distribution), finite-difference calculus |
(x + y)n coefficients are C(n, k) |