Pascal's Triangle and Binomial Coefficients
Quick answer Pascal's triangle arranges the binomial coefficients ⁿCᵣ in a triangular pattern where each entry equals the sum of the two entries above it.
Pascal's triangle is a triangular arrangement of numbers in which the first and last entry of every row is 1, and every other entry is the sum of the two entries just above it in the previous row. Row n (counting rows from n = 0) of the triangle contains exactly the numbers that appear as coefficients when (a + b)n is expanded.
For example, expanding (a+b)0, (a+b)1, (a+b)2, (a+b)3, (a+b)4 gives the coefficient rows 1; 1 1; 1 2 1; 1 3 3 1; 1 4 6 4 1. These numbers are exactly the binomial coefficients nCr = n! / (r!(n−r)!), read across row n as nC0, nC1, …, nCn.
Worked example. Write row 5 of Pascal's triangle and use it to expand (a+b)5. Row 5 is built by adding adjacent entries of row 4 (1 4 6 4 1): the ends stay 1, and 1+4=5, 4+6=10, 6+4=10, 4+1=5. So row 5 is 1 5 10 10 5 1, giving (a+b)5 = a5 + 5a4b + 10a3b2 + 10a2b3 + 5ab4 + b5.
This row-building rule is exactly the identity nCr = n−1Cr−1 + n−1Cr, called Pascal's rule, which lets each new row be built from the previous one without recomputing factorials.
- Row n of Pascal's triangle lists the binomial coefficients ⁿC₀, ⁿC₁, …, ⁿCₙ.
- Each interior entry equals the sum of the two entries diagonally above it (Pascal's rule).
- The triangle is symmetric: ⁿCr = ⁿCₙ−r.
- Row n has exactly (n+1) entries, matching the (n+1) terms in the expansion of (a+b)ⁿ.
