Binomial Theorem — Formula, Expansion, Examples
Binomial Theorem — Formula, Expansion, Examples
TL;DR
The binomial theorem gives a closed-form expansion of (a+b)ⁿ as a sum of n+1 terms where the coefficients are the binomial numbers (n k) — the same numbers in Pascal's triangle. This article covers the formula, the general term, three worked examples at Quick/Standard/Stretch tiers, and the historical thread from Pingala's chandas to Newton's generalization.
A Theorem That Expands a Tenth Power in One Line
Multiplying (a+b) by itself ten times by hand takes about an hour. The binomial theorem does it in one line.
That compression is what makes the binomial theorem one of the load-bearing identities of algebra. Probability uses it (every binomial distribution). Calculus uses it (the derivative of xⁿ from first principles). Engineering uses it (the linearization around a small perturbation). Every later compression — Taylor series, generating functions — starts here.
The Binomial Theorem Formula
For any non-negative integer n and real numbers a, b:
[(a+b)ⁿ = \sum_{k=0}^{n} \binom{n}{k} a^{n-k} b^{k}]
The binomial coefficient ( \binom{n}{k} = \frac{n!}{k!(n - k)!} ).
The expansion has n+1 terms. The exponents of a count down from n to 0; the exponents of b count up from 0 to n. Every term's exponents add to n.
Quick facts.
- Term count: n+1 terms for (a+b)ⁿ.
- General term: T_{r+1} = ( \binom{n}{r} a^{n-r} b^{r} ).
- Coefficient symmetry: ( \binom{n}{k} = \binom{n}{n-k} ).
- Sum of coefficients: ( \sum_{k=0}^{n} \binom{n}{k} = 2^{n} ) (set a=b=1).
- Grade introduced: CBSE Class 11 (binomial theorem chapter); NCERT Class 11 Chapter 8 — Binomial Theorem.
Pascal's Triangle — The Coefficient Source
The binomial coefficients can be read off Pascal's triangle. Row n holds the coefficients of (a+b)ⁿ:
Row 0: 1
Row 1: 1 1
Row 2: 1 2 1
Row 3: 1 3 3 1
Row 4: 1 4 6 4 1
Row 5: 1 5 10 10 5 1
Row 6: 1 6 15 20 15 6 1
Each entry is the sum of the two entries directly above it. Reading row 4 gives the coefficients of (a+b)⁴: 1, 4, 6, 4, 1, so ( (a+b)⁴ = a^{4} + 4a^{3}b + 6a^{2}b^{2} + 4ab^{3} + b^{4} ).
The triangle is older than Pascal by about 700 years — it appears in works by Pingala, al-Karaji, Yang Hui, and Khayyam — but Pascal's treatise gave it a systematic algebraic theory.
Three Worked Examples of Binomial Theorem
Quick. Expand (a+b)³.
Read row 3 of Pascal's triangle: 1, 3, 3, 1. Apply the formula.
( (a+b)³ = a³ + 3a²b + 3ab² + b³. )
Final answer: a³ + 3a²b + 3ab² + b³.
Standard (Wrong Path First — The Detour Students Take). Expand (2x−3)⁴.
The wrong path. The memorizer remembers the row-4 coefficients (1, 4, 6, 4, 1) and writes ( (2x−3)⁴ = (2x)⁴ + 4(2x)³ + 6(2x)² + 4(2x) + 1. )
Check at x=1: ( (2-3)⁴ = 1 ), the wrong expansion gives 81. The values disagree — the expansion is wrong.
The rescue. The binomial theorem treats a=2x and b=−3. The signs alternate because b is negative.
( (2x−3)⁴ = \binom{4}{0}(2x)^{4}(-3)^{0} + \binom{4}{1}(2x)^{3}(-3)^{1} + \binom{4}{2}(2x)^{2}(-3)^{2} + \binom{4}{3}(2x)^{1}(-3)^{3} + \binom{4}{4}(2x)^{0}(-3)^{4}. )
Final answer: 16x⁴ - 96x³ + 216x² - 216x + 81.
Stretch. Find the coefficient of x⁵ in the expansion of (2x+3)⁸.
The general term is ( T_{r+1} = \binom{8}{r}(2x)^{8-r}(3)^{r} ). The power of x is 8−r, so x⁵ requires r=3.
T₄ = ( \binom{8}{3}(2x)^{5}(3)^{3} = 56 \cdot 32 x^{5} \cdot 27 = 48384 ).
Final answer: the coefficient of x⁵ is 48,384.
Why the Binomial Theorem Matters — From the Classroom to Quantum Physics
The theorem looks like an algebraic curiosity. It is anything but.
- Probability. The binomial distribution is built entirely from ( \binom{n}{k}p^{k}(1-p)^{n-k} ).
- Calculus. The derivative of xⁿ from first principles uses (x+h)ⁿ - xⁿ.
- Numerical approximation. ( (1+h)ⁿ \approx 1 + nh + \tfrac{n(n-1)}{2} h². )
- Quantum mechanics. Spin-½ systems decompose into states whose multiplicities are the binomial coefficients.
- Combinatorics. ( \binom{n}{k} ) counts the ways to choose k items from n.
Common Errors When Working With the Binomial Theorem
1. Ignoring the sign of b.
Where it slips in: Negative second term — (x−2)ⁿ.
The correct way: Set a=x, b=−2. Every term carries (−2)ᵏ.
2. Forgetting to raise the coefficient to its power.
Where it slips in: Expansions like (3x)⁴.
The correct way: ( (3x)⁴ = 3⁴ x⁴ = 81 x⁴. )
3. Picking the wrong r for a specific term.
Where it slips in: Finding coefficient of x⁵ and setting r=5.
The correct way: Match the x-exponent first.
4. Counting the wrong number of terms.
Where it slips in: Reporting (a+b)⁴ has 4 terms.
The correct way: (a+b)ⁿ has n+1 terms.
The Mathematicians Who Shaped the Binomial Theorem
- Pingala (c. 200 BCE, India) — described the coefficients now called Pascal's triangle.
- Omar Khayyam (1048–1131, Persia) — worked out the binomial coefficients.
- Blaise Pascal (1623–1662, France) — published Traité du triangle arithmétique.
- Isaac Newton (1643–1727, England) — extended the theorem to any real exponent.
Conclusion
- The binomial theorem expands (a+b)ⁿ as a sum of n+1 terms with binomial-coefficient weights.
- The coefficients are ( \binom{n}{k} = \frac{n!}{k!(n-k)!} ).
- The single most common mistake is ignoring the sign or power of the second term.
Practice These Three Before Moving On
- Expand (x+2)⁵ using the binomial theorem.
- Find the coefficient of x⁴ in the expansion of (3x−1)⁶.
- Verify that the sum of the coefficients of (2x+3y)⁴ equals 625.