Skip to content
M
hscscience Maths Ext 1 · Y11
0/100daily goal
0
0
0 due
0
L1 · 0 XP
KJ
Your weak spots
Insights load after your first practice round.
Module 4 · L11 of 15 ~35 min ⚡ +95 XP available

Applications of the Binomial Theorem

The binomial theorem is more than an expansion machine — it encodes deep combinatorial relationships. By substituting clever values of $x$ into $(1+x)^n$, you can evaluate entire sums of binomial coefficients in a single step, prove identities, and unlock connections between combinatorics and powers of 2. This lesson gives you the substitution toolkit.

Today's challenge — Without a calculator, find $\,^{100}C_0 + \,^{100}C_1 + \,^{100}C_2 + \cdots + \,^{100}C_{100}$. There are 101 terms to add. Is there a shortcut? By the end of this lesson you'll evaluate it in under 3 seconds — and explain exactly why it works.
0/5QUESTS
01
Recall — your gut answer first
+5 XP warm-up

The binomial theorem states $(1+x)^n = \,^nC_0 + \,^nC_1 x + \,^nC_2 x^2 + \cdots + \,^nC_n x^n$. Without substituting anything yet — what value of $x$ do you think would give you the sum $\,^nC_0 + \,^nC_1 + \,^nC_2 + \cdots + \,^nC_n$? What value gives the alternating sum $\,^nC_0 - \,^nC_1 + \,^nC_2 - \cdots$? Predict before reading on.

auto-saved
02
The two substitutions
+5 XP to read

The entire lesson rests on two substitutions into $(1+x)^n = \sum_{r=0}^{n} \,^nC_r x^r$. Master them and almost all binomial-coefficient sum questions become one-liners.

Set $x = 1$ and every $x^r$ becomes 1, so the right side collapses to the plain sum of coefficients $= 2^n$. Set $x = -1$ and every $x^r$ alternates $\pm 1$, giving the alternating sum $= 0$. Any other value of $x$ is a "bonus substitution" that evaluates more exotic sums.

x = 1 sum = 2ⁿ x = −1 alt sum = 0 plain sum alternating
$(1+x)^n = \displaystyle\sum_{r=0}^{n} \,^nC_r\, x^r$
$x = 1$ rule
$(1+1)^n = 2^n$. All $\,^nC_r$ terms add without modification. Memorise: sum of row $n$ in Pascal's triangle = $2^n$.
$x = -1$ rule
$(1-1)^n = 0^n = 0$. The alternating sum of binomial coefficients is zero for $n \geq 1$. Even terms cancel odd terms exactly.
Other substitutions
Try $x = 2$ to get $3^n$; $x = -2$ to get $(-1)^n$; $x = \frac{1}{2}$ to get $\left(\frac{3}{2}\right)^n$. Match the pattern to the given expression.
03
What you'll master
Know

Key facts

  • Substituting $x=1$: $\sum_{r=0}^n \,^nC_r = 2^n$
  • Substituting $x=-1$: $\sum_{r=0}^n (-1)^r\,^nC_r = 0$
  • Even and odd coefficient sums are each equal to $2^{n-1}$
Understand

Concepts

  • Why substituting into both $x=1$ and $x=-1$ separates even and odd terms
  • How the general term $\,^nC_r x^r$ becomes a specific coefficient sum for given $x$
  • The connection between powers of 2 and subsets of an $n$-element set
Can do

Skills

  • Evaluate sums of binomial coefficients using substitution
  • Find sums weighted by powers of 2 or other constants
  • Prove simple binomial coefficient identities using substitution
04
Key terms
Binomial theorem$(1+x)^n = \sum_{r=0}^{n} \,^nC_r x^r$ — the expansion that all substitutions exploit.
SubstitutionReplacing $x$ with a specific value to force the expansion to equal a desired sum.
Sum of coefficients$\,^nC_0 + \,^nC_1 + \cdots + \,^nC_n = 2^n$, obtained by setting $x=1$.
Alternating sum$\,^nC_0 - \,^nC_1 + \,^nC_2 - \cdots = 0$ (for $n \geq 1$), from $x=-1$.
Even-indexed sum$\,^nC_0 + \,^nC_2 + \,^nC_4 + \cdots = 2^{n-1}$, using the average of both substitutions.
Odd-indexed sum$\,^nC_1 + \,^nC_3 + \,^nC_5 + \cdots = 2^{n-1}$, by subtraction from the full sum.
05
The $x=1$ substitution
core concept

The binomial theorem gives us $(1+x)^n = \,^nC_0 + \,^nC_1 x + \,^nC_2 x^2 + \cdots + \,^nC_n x^n$.

Setting $x = 1$:

$$(1+1)^n = \,^nC_0 + \,^nC_1 + \,^nC_2 + \cdots + \,^nC_n$$
$$2^n = \sum_{r=0}^{n} \,^nC_r$$

This says the sum of all entries in row $n$ of Pascal's triangle equals $2^n$. This also has a combinatorial meaning: $2^n$ is the number of subsets of an $n$-element set (each element is either included or not).

Why $2^n$ counts subsets. For each of the $n$ elements in a set, you make a binary choice: include it or don't. That gives $2 \times 2 \times \cdots \times 2 = 2^n$ total subsets. And $\,^nC_r$ counts exactly the subsets of size $r$. Summing over all $r$ recovers $2^n$ — the substitution proof mirrors this counting argument.

\,^nC_0 + \,^nC_1 + + \,^nC_n = 2^n (set x=1 in the binomial theorem); Combinatorial meaning: 2^n is the number of subsets of an n-element set

Pause — copy the $x=-1$ result into your book: $\binom{n}{0} - \binom{n}{1} + \binom{n}{2} - \cdots = 0$ (for $n \ge 1$); adding $x=1$ and $x=-1$ results: $2(\binom{n}{0} + \binom{n}{2} + \cdots) = 2^n$, so even-index sum $= 2^{n-1}$.

Quick check: Evaluate $\,^6C_0 + \,^6C_1 + \,^6C_2 + \,^6C_3 + \,^6C_4 + \,^6C_5 + \,^6C_6$.

06
The $x=-1$ substitution
core concept

We just saw that setting $x = 1$ in $(1+x)^n$ gives $\sum_{k=0}^n \binom{n}{k} = 2^n$ — the total count of subsets. That raises a question: setting $x = -1$ produces an alternating sum of binomial coefficients — what does it equal, and how does combining the $x=1$ and $x=-1$ results give the even-index and odd-index sums separately? This card answers it → $x = -1$ gives 0 (for $n \ge 1$); adding the two results isolates the even sum $= 2^{n-1}$.

Setting $x = -1$ in the binomial theorem:

$$(1-1)^n = \,^nC_0 - \,^nC_1 + \,^nC_2 - \,^nC_3 + \cdots + (-1)^n\,^nC_n$$
$$0 = \,^nC_0 - \,^nC_1 + \,^nC_2 - \cdots + (-1)^n\,^nC_n \quad (n \geq 1)$$

This means the even-indexed coefficients and odd-indexed coefficients are equal. Adding both equations ($x=1$ and $x=-1$):

$$\,^nC_0 + \,^nC_2 + \,^nC_4 + \cdots = 2^{n-1}$$
$$\,^nC_1 + \,^nC_3 + \,^nC_5 + \cdots = 2^{n-1}$$

The even-position and odd-position coefficients each sum to half of $2^n$.

\,^nC_0 - \,^nC_1 + \,^nC_2 - = 0 (set x=-1 in the binomial theorem, n 1); Adding x=1 and x=-1 results: 2(\,^nC_0 + \,^nC_2 + ) = 2^n, so even sum = 2^{n-1}

Pause — copy the $x=-1$ result into your book: $\binom{n}{0} - \binom{n}{1} + \binom{n}{2} - \cdots = 0$ (for $n \ge 1$); adding $x=1$ and $x=-1$ results: $2(\binom{n}{0} + \binom{n}{2} + \cdots) = 2^n$, so even-index sum $= 2^{n-1}$.

Did you get this? True or false: $\,^5C_0 - \,^5C_1 + \,^5C_2 - \,^5C_3 + \,^5C_4 - \,^5C_5 = 0$.

PROBLEM 1 · PLAIN SUM

Evaluate $\,^7C_0 + \,^7C_1 + \,^7C_2 + \,^7C_3 + \,^7C_4 + \,^7C_5 + \,^7C_6 + \,^7C_7$.

1
Recognise: this is the sum of all binomial coefficients for $n=7$.
The expression matches $\sum_{r=0}^{7} \,^7C_r$, which is the $x=1$ substitution pattern.
PROBLEM 2 · ALTERNATING SUM

Find $\,^8C_0 - \,^8C_1 + \,^8C_2 - \,^8C_3 + \,^8C_4 - \,^8C_5 + \,^8C_6 - \,^8C_7 + \,^8C_8$.

1
Recognise: the signs alternate $+, -, +, -,\ldots$, so this is the $x=-1$ substitution.
Each term $\,^8C_r$ is multiplied by $(-1)^r$, exactly matching the pattern when $x=-1$.
PROBLEM 3 · WEIGHTED SUM

Find $\,^4C_0 + 2\cdot\,^4C_1 + 4\cdot\,^4C_2 + 8\cdot\,^4C_3 + 16\cdot\,^4C_4$.

1
Rewrite: $\,^4C_0\cdot 2^0 + \,^4C_1\cdot 2^1 + \,^4C_2\cdot 2^2 + \,^4C_3\cdot 2^3 + \,^4C_4\cdot 2^4$.
Express each multiplier as a power of 2: $1=2^0$, $2=2^1$, $4=2^2$, $8=2^3$, $16=2^4$.

Fill the gap: $\,^5C_0 + 3\cdot\,^5C_1 + 9\cdot\,^5C_2 + 27\cdot\,^5C_3 + 81\cdot\,^5C_4 + 243\cdot\,^5C_5 = (1+3)^5 = $ .

Trap 01
Not recognising the pattern
Students try to evaluate each $\,^nC_r$ individually and add. Look for alternating signs (use $x=-1$), powers-of-$a$ multipliers (use $x=a$), or no multiplier (use $x=1$) before touching the coefficients.
Trap 02
Wrong substitution value
The substitution must match what multiplies $\,^nC_r$. If the multipliers are $1, 2, 4, 8, \ldots = 2^r$, the substitution is $x=2$, not $x=2^n$. Carefully check that each term's coefficient matches $x^r$ for your chosen $x$.
Trap 03
Forgetting the expansion form
The standard form is $(1+x)^n$, not $(a+b)^n$. If a sum has coefficients $\,^nC_r a^r$, write it as $(1+a)^n$. If it has $\,^nC_r a^r b^{n-r}$, you need the full binomial theorem $(a+b)^n$.

Did you get this? True or false: to evaluate $\,^n C_0 + 2\,^nC_1 + 4\,^nC_2 + \cdots + 2^n\,^nC_n$, the correct substitution is $x = 2$.

Work mode · how are you completing this lesson?
1

Evaluate $\,^{10}C_0 + \,^{10}C_1 + \cdots + \,^{10}C_{10}$.

2

Find $\,^9C_0 - \,^9C_1 + \,^9C_2 - \cdots - \,^9C_9$.

3

Evaluate $\,^5C_0 + 2\cdot\,^5C_1 + 4\cdot\,^5C_2 + 8\cdot\,^5C_3 + 16\cdot\,^5C_4 + 32\cdot\,^5C_5$.

4

Show that $\,^nC_0 + \,^nC_2 + \,^nC_4 + \cdots = 2^{n-1}$ by adding the $x=1$ and $x=-1$ results.

5

Evaluate $\,^6C_1 + 2\cdot\,^6C_2 + 3\cdot\,^6C_3 + 4\cdot\,^6C_4 + 5\cdot\,^6C_5 + 6\cdot\,^6C_6$. (Hint: differentiate $(1+x)^6$, then substitute $x=1$.)

Odd one out: Which of the following sums does NOT equal $2^n$ for some integer $n$?

11
Revisit your thinking

Earlier you were asked: what value of $x$ gives the plain sum, and what gives the alternating sum?

$x = 1$ gives the plain sum: $(1+1)^n = 2^n = \,^nC_0 + \,^nC_1 + \cdots + \,^nC_n$.

$x = -1$ gives the alternating sum: $(1-1)^n = 0 = \,^nC_0 - \,^nC_1 + \,^nC_2 - \cdots$.

And for the opening challenge: $\,^{100}C_0 + \,^{100}C_1 + \cdots + \,^{100}C_{100} = (1+1)^{100} = 2^{100}$. That's a number with 31 digits — found in a single step.

auto-saved
01
Multiple choice
+5 XP per correct · +25 XP all-correct

Pick your answer, then rate your confidence — that tells the system what to drill next. Each retry pulls a fresh mix from the bank.

02
Short answer
ApplyBand 42 marks

Q1. Evaluate $\,^7C_0 + \,^7C_1 + \,^7C_2 + \cdots + \,^7C_7$ using the binomial theorem. (2 marks)

auto-saved
ApplyBand 42 marks

Q2. Find $\,^4C_0 + 2\cdot\,^4C_1 + 4\cdot\,^4C_2 + 8\cdot\,^4C_3 + 16\cdot\,^4C_4$. (2 marks)

auto-saved
AnalyseBand 53 marks

Q3. (a) Prove that $\sum_{r=0}^{n} \,^nC_r = 2^n$ using the binomial theorem. (b) Hence show that $\,^nC_0 + \,^nC_2 + \,^nC_4 + \cdots = 2^{n-1}$. (c) Explain the combinatorial meaning of both results. (3 marks)

auto-saved
Comprehensive answers (click to reveal)

Activities: 1. $2^{10}=1024$ · 2. $(1-1)^9=0$ · 3. $(1+2)^5=3^5=243$ · 4. Adding: $2(\,^nC_0+\,^nC_2+\cdots)=2^n$, so sum $=2^{n-1}$ · 5. Differentiating $(1+x)^6 = \sum \,^6C_r x^r$ gives $6(1+x)^5 = \sum r\,^6C_r x^{r-1}$; set $x=1$: $6\cdot 2^5 = 192$.

Q1 (2 marks): Set $x=1$ in $(1+x)^7 = \sum_{r=0}^7 \,^7C_r x^r$ [1]. LHS $= 2^7 = 128$ [1].

Q2 (2 marks): Rewrite: $\sum_{r=0}^4 \,^4C_r \cdot 2^r$ with $x=2$ [1]. $(1+2)^4 = 3^4 = 81$ [1].

Q3 (3 marks): (a) Set $x=1$: $(1+1)^n = \sum \,^nC_r \Rightarrow 2^n = \sum \,^nC_r$ [1]. (b) Set $x=-1$: $0=\,^nC_0-\,^nC_1+\cdots$. Add: $2^n = 2(\,^nC_0+\,^nC_2+\cdots)$, giving $2^{n-1}$ [1]. (c) $2^n$ = number of subsets of an $n$-set; $2^{n-1}$ = subsets of even size (equals subsets of odd size) [1].

01
Boss battle · The Coefficient Crusher
earn bronze · silver · gold

Five timed questions drawn from the Module 4 bank. Beat the boss to bank a tier — gold (90% + speed), silver (75%), or bronze (50%). Replays welcome.

⚔ Enter the arena
02
Science Jump · platform challenge

Climb platforms by answering Combinatorics questions. Lighter alternative to the boss.

Mark lesson as complete

Tick when you've finished the practice and review.

🎓
Want help with Applications of the Binomial Theorem?

Work through this topic 1-on-1 with an experienced HSC tutor.

Book a free session →