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^n$ from first principles). Engineering uses it (the linearisation 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)^{n} ;=; \sum_{k=0}^{n} \binom{n}{k}, a^{n-k}, b^{k}.$$
The binomial coefficient $\binom{n}{k}$ — read "n choose k" — equals
$$\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)^n$.
General term: $T_{r+1} = \binom{n}{r}, a^{n-r}, b^{r}$.
Coefficient symmetry: $\binom{n}{k} = \binom{n}{n-k}$ — the row is a palindrome.
Sum of coefficients: $\sum_{k=0}^{n} \binom{n}{k} = 2^{n}$ (set $a = b = 1$).
Grade introduced: CBSE Class 11 (binomial theorem chapter); CCSS-M HSA-APR.C.5 (apply the binomial theorem for the expansion of $(x + y)^n$ in powers of $x$ and $y$ for a positive integer $n$, where $x$ and $y$ are any numbers); 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)^n$:
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)^4$: 1, 4, 6, 4, 1, so $(a + b)^4 = a^4 + 4a^3b + 6a^2b^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 1654 treatise gave it a systematic algebraic theory.
Three Worked Examples of Binomial Theorem
Quick. Expand $(a + b)^3$.
Read row 3 of Pascal's triangle: 1, 3, 3, 1. Apply the formula.
$$(a + b)^3 = a^3 + 3a^2b + 3ab^2 + b^3.$$
Final answer: $a^3 + 3a^2b + 3ab^2 + b^3$.
Standard (Wrong Path First — The Detour Students Take). Expand $(2x - 3)^4$.
The wrong path. The memorizer remembers the row-4 coefficients (1, 4, 6, 4, 1) and writes $(2x - 3)^4 = (2x)^4 + 4(2x)^3 + 6(2x)^2 + 4(2x) + 1$. They have applied the row to $2x$ alone and ignored the $-3$.
Check at $x = 1$: $(2 - 3)^4 = (-1)^4 = 1$. The wrong expansion at $x = 1$ gives $16 + 32 + 24 + 8 + 1 = 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 and is raised to even and odd powers in turn.
$$(2x - 3)^4 = \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.$$
Compute each term:
$$= 16x^4 - 96x^3 + 216x^2 - 216x + 81.$$
Check at $x = 1$: $16 - 96 + 216 - 216 + 81 = 1$. ✓
Final answer: $16x^4 - 96x^3 + 216x^2 - 216x + 81$.
Stretch. Find the coefficient of $x^5$ in the expansion of $(2x + 3)^8$.
The general term is $T_{r+1} = \binom{8}{r}(2x)^{8-r}(3)^{r}$. The power of $x$ is $8 - r$, so $x^5$ requires $r = 3$.
$$T_4 = \binom{8}{3}(2x)^{5}(3)^{3} = 56 \cdot 32 x^5 \cdot 27 = 48384, x^5.$$
Final answer: the coefficient of $x^5$ 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 — the probability of $k$ successes in $n$ trials — is built entirely from $\binom{n}{k} p^{k}(1-p)^{n-k}$. Every coin-flip, opinion-poll, and quality-control calculation uses the binomial theorem under the hood.
Calculus. The derivative of $x^n$ from first principles uses $(x + h)^n - x^n$. Expanding by the binomial theorem and dividing by $h$ produces $nx^{n-1}$ as $h \to 0$.
Numerical approximation. For small $h$, $(1 + h)^n \approx 1 + nh + \tfrac{n(n-1)}{2}h^2$ — the first three terms of the binomial. Engineers use this to linearise non-linear systems.
Quantum mechanics. Spin-$\tfrac{n}{2}$ systems decompose into states whose multiplicities are the binomial coefficients of row $n$.
Combinatorics. $\binom{n}{k}$ counts the ways to choose $k$ items from $n$ — the same number that appears as a coefficient.
The destination is the same in every direction: any time you need to know how something grows when raised to a power, the binomial theorem is the first move.
Common Errors When Working With the Binomial Theorem
1. Ignoring the sign of $b$.
Where it slips in: Negative second term — $(x - 2)^n$.
Don't do this: Apply the row-$n$ coefficients to $(x - 2)$ as if it were $(x + 2)$. The result misses every alternating sign.
The correct way: Set $a = x$, $b = -2$. Every term carries $(-2)^k$, which is negative when $k$ is odd, positive when $k$ is even.
2. Forgetting to raise the coefficient to its power.
Where it slips in: Expansions like $(3x)^4$ — the student writes $3x^4$ instead of $81x^4$.
Don't do this: $(3x)^4 = 3x^4$ — wrong. The whole binomial $(3x)$ is raised to 4, so the 3 is also raised to 4.
The correct way: $(3x)^4 = 3^4 x^4 = 81 x^4$.
3. Picking the wrong $r$ for a specific term.
Where it slips in: "Find the coefficient of $x^5$" — the student sets $r = 5$ without checking whether the $x$-power in $a^{n-r}$ matches.
Don't do this: Use $r$ as the target $x$-power directly.
The correct way: Match the $x$-exponent first. If the general term is $\binom{n}{r} a^{n-r} b^r$ and $a$ contains $x$, the $x$-power is $n - r$ — solve for $r$.
4. Counting the wrong number of terms.
Where it slips in: Reporting $(a + b)^4$ has 4 terms.
Don't do this: Treat the exponent as the term count.
The correct way: $(a + b)^n$ has $n + 1$ terms. The exponent counts powers; the term count is one more.
The Mathematicians Who Shaped the Binomial Theorem
Pingala (c. 200 BCE, India) described the coefficients now called Pascal's triangle in his Chandaḥśāstra — using them to count the number of ways to form metrical lines of $n$ syllables. The triangle was originally a poetics tool.
Omar Khayyam (1048–1131, Persia) worked out the binomial coefficients for integer powers and used them to extract roots. His treatise is the earliest surviving systematic algebra of the theorem.
Blaise Pascal (1623–1662, France) published Traité du triangle arithmétique (1654), giving the triangle its modern algebraic theory and connecting it to probability.
Isaac Newton (1643–1727, England) extended the theorem in 1665 to any real exponent, opening the door to infinite series and calculus. Newton's generalisation $(1 + x)^{\alpha}$ for fractional $\alpha$ is what powers Taylor series.
The story worth remembering. Newton, age 23, in plague-isolation at Woolsthorpe Manor in 1665, derived the generalised binomial theorem alongside his work on calculus and optics. The same year is now called Newton's annus mirabilis — the year of miracles. The theorem you are learning was discovered by a teenager who had been sent home from university.
Conclusion
The binomial theorem expands $(a + b)^n$ as a sum of $n + 1$ terms with binomial-coefficient weights.
The coefficients are $\binom{n}{k} = n! / (k!(n-k)!)$ — also the entries in row $n$ of Pascal's triangle.
The general term $\binom{n}{r} a^{n-r} b^r$ is the entry point for "coefficient of $x^k$" questions.
The single most common mistake is ignoring the sign or power of the second term — $(x - 2)^n$ is not $(x + 2)^n$.
Newton extended the theorem in 1665 to any real exponent, opening calculus and infinite series.
Practice These Three Before Moving On
Expand $(x + 2)^5$ using the binomial theorem.
Find the coefficient of $x^4$ in the expansion of $(3x - 1)^6$.
Verify that the sum of the coefficients of $(2x + 3y)^4$ equals $5^4 = 625$ (set $x = y = 1$).
Want a live Bhanzu trainer to walk through more binomial-theorem problems? Book a free demo class — online globally.
Was this article helpful?
Your feedback helps us write better content
