Counting: the multiplication principle
Before we get to , we need to count. The fundamental tool:
Multiplication Principle. If a task has steps, step can be done in ways (independently), then the total number of ways is .
Example: create a 3-character code using 26 letters for each character. Total codes: . This is the whole principle. It sounds almost embarrassingly simple because it is — the power comes from applying it systematically, not from the principle itself being mysterious.
Permutations
A permutation is an ordered selection. The number of ways to arrange objects chosen from distinct objects (order matters):
Why? First choice: options. Second choice: (one used). th choice: . Multiply: .
Recall (the empty product convention, consistent with : there's exactly one way to select nothing).
Combinations: order-blind counting
A combination is an unordered selection. The number of ways to choose objects from distinct objects (order does NOT matter):
Why? Every combination of objects can be arranged in different orders. So: Solve: .
This is "n choose k" — the number of -element subsets of an -element set. You computed this in the Sets stratum when counting power sets; you just didn't have a name for it. You've been doing combinatorics this whole time. Surprise.
Pascal's triangle and the key identity
Arrange the combinations:
which evaluates to:
This is Pascal's triangle. The key identity that generates it:
Proof via committee argument. The right side counts -element subsets of . Split into two types based on whether element is included:
- Subsets INCLUDING : choose the remaining elements from — that's ways.
- Subsets EXCLUDING : choose all elements from — that's ways.
These two cases are mutually exclusive and exhaustive, so their sum equals the total:
This is the purely combinatorial proof, with no algebra at all.
The Binomial Theorem: where it comes from
Theorem. For any :
Why the coefficients are binomial. When you expand ( factors), you get a sum of terms (each factor contributes either or ). Each term is a product of exactly letters — some 's and some 's. A term that has exactly 's (and hence 's) contributes .
How many such terms are there? Exactly the number of ways to choose WHICH of the factors contributed a — which is .
So the coefficient of is exactly . Not a coincidence, not a pattern someone scribbled in a triangle four hundred years ago: it counts choices. Every coefficient in the expansion is literally a count of subsets. That's the binomial theorem — and now you will never again be confused about where those coefficients come from, because you know the argument. You magnificent idiot, you've got it.
Small cases to ground it.
: . You knew this.
: . Row 3 of Pascal's triangle: .
Connection: row sums and power sets
Set in the binomial theorem:
The sum of row of Pascal's triangle is .
But wait — this is the same result from the Sets stratum: a set with elements has subsets, because is the number of -element subsets and all subsets have size . The binomial theorem is the Sets result in algebraic clothing.
The Sets stratum built the room; the Binomial Theorem is what's written on the wall. When you see this kind of convergence — two apparently different arguments arriving at the same fact — that is not an accident. That is mathematics doing exactly what it's supposed to do, and it should give you a feeling somewhere between vertigo and genuine joy.