Expanding powers of a two-term algebraic expression (binomial) is a fundamental operation in algebra. The geometric arrangement of binomial coefficients reveals profound recursive structures.
Centuries before Blaise Pascal published his Traité du triangle arithmétique in 1654, the ancient Indian mathematician Pingala described the exact triangular array of combinatoric numbers in his Sanskrit treatise Chandas Shastra (c. 3rd–2nd century BCE) under the name Meru Prastara (the staircase/pyramid of Mount Meru). Later, Persian mathematician Omar Khayyam (c. 1048–1131) and Chinese mathematician Yang Hui (1261) documented the same pyramidal arithmetic array.
Each row begins and ends with $1$. Every interior entry is the exact arithmetic sum of the two numbers directly above it in the preceding row:
| Row index $n$ | Binomial Expansion $(a + b)^n$ | Coefficients (Entries of Row) | Row Sum $\sum_{r=0}^n {^nC_r}$ |
|---|---|---|---|
| $n = 0$ | $(a + b)^0 = 1$ | 1 | $1 = 2^0$ |
| $n = 1$ | $(a + b)^1 = a + b$ | 1, 1 | $2 = 2^1$ |
| $n = 2$ | $(a + b)^2 = a^2 + 2ab + b^2$ | 1, 2, 1 | $4 = 2^2$ |
| $n = 3$ | $(a + b)^3 = a^3 + 3a^2b + 3ab^2 + b^3$ | 1, 3, 3, 1 | $8 = 2^3$ |
| $n = 4$ | $(a + b)^4 = a^4 + 4a^3b + 6a^2b^2 + 4ab^3 + b^4$ | 1, 4, 6, 4, 1 | $16 = 2^4$ |
| $n = 5$ | $(a + b)^5 = a^5 + 5a^4b + 10a^3b^2 + 10a^2b^3 + 5ab^4 + b^5$ | 1, 5, 10, 10, 5, 1 | $32 = 2^5$ |
Algebraic Proof:
$$^nC_r + {^nC_{r-1}} = \frac{n!}{r!(n - r)!} + \frac{n!}{(r - 1)!(n - r + 1)!}$$Express factorials with common denominators: $r! = r \cdot (r - 1)!$ and $(n - r + 1)! = (n - r + 1)(n - r)!$:
$$= \frac{n!}{(r - 1)!(n - r)!} \left[ \frac{1}{r} + \frac{1}{n - r + 1} \right] = \frac{n!}{(r - 1)!(n - r)!} \left[ \frac{(n - r + 1) + r}{r(n - r + 1)} \right]$$ $$= \frac{n! \cdot (n + 1)}{r(r - 1)! \cdot (n - r + 1)(n - r)!} = \frac{(n + 1)!}{r!(n + 1 - r)!} = \mathbf{^{n+1}C_r}$$