Induction for Divisibility II
The substitution trick from Lesson 9 gets you far, but some divisibility statements — like $7^n - 3^n$ always being divisible by 4 — need a cleverer move. This lesson introduces the add/subtract trick: inserting a cancelling pair of terms to force the inductive hypothesis into view. You will also see why $n^3 - n$ is always divisible by 6, using a beautiful fact about consecutive integers.
Compute $7^n - 3^n$ for $n = 1, 2, 3$. Without algebra — observe whether each result is divisible by 4. Can you see a pattern? What might make $7^n - 3^n$ always produce a multiple of 4?
When the inductive hypothesis involves $a^k - b^k$, neither the group-and-extract nor the simple substitution technique from Lesson 9 works cleanly. The solution is to insert a strategically chosen zero — add and subtract the same term — so that the hypothesis appears naturally.
The key identity for $a^{k+1} - b^{k+1}$ is:
$a^{k+1} - b^{k+1}$
$= a \cdot a^k - a \cdot b^k + a \cdot b^k - b \cdot b^k$
$= a(a^k - b^k) + b^k(a - b)$
Here, $a^k - b^k$ is the inductive hypothesis (divisible by $d$), and $a - b$ must also be divisible by $d$ for the second term to cooperate. Both conditions together guarantee $f(k+1)$ is divisible by $d$.
Key facts
- The add/subtract identity: $a^{k+1} - b^{k+1} = a(a^k - b^k) + b^k(a-b)$
- The product of two consecutive integers $k(k+1)$ is always even
- An integer is divisible by 6 iff it is divisible by both 2 and 3
Concepts
- Why "inserting a zero" ($+ab^k - ab^k$) creates the hypothesis term $a(a^k - b^k)$
- Why both $a^k - b^k$ being divisible by $d$ AND $a - b$ being divisible by $d$ are required
- How to identify when the add/subtract trick is needed versus the techniques from Lesson 9
Skills
- Prove $a^n - b^n$ divisibility statements using the add/subtract technique (e.g., $7^n - 3^n$ divisible by 4)
- Use the consecutive integer fact to prove divisibility by 6 (e.g., $n^3 - n$)
- Construct and justify a complete, examinable divisibility induction proof
When proving that $a^n - b^n$ is divisible by $d$, the simple substitution from Lesson 9 is difficult because the expression involves two exponential terms. Instead, insert $+a \cdot b^k - a \cdot b^k$ (a zero!) to factorise usefully:
Full worked proof: $7^n - 3^n$ divisible by 4
Prove by induction that $4 \mid (7^n - 3^n)$ for all $n \geq 1$.
Base case ($n=1$): $7^1 - 3^1 = 4 = 4 \times 1$. ✓
Inductive hypothesis: Assume $7^k - 3^k = 4M$ for some integer $M$.
Inductive step: Consider $f(k+1) = 7^{k+1} - 3^{k+1}$.
$= 7 \cdot 7^k - 7 \cdot 3^k + 7 \cdot 3^k - 3 \cdot 3^k$
$= 7(7^k - 3^k) + 3^k(7 - 3)$
$= 7(4M) + 3^k(4) = 4(7M + 3^k)$
Since $7M + 3^k$ is an integer, $f(k+1)$ is divisible by 4. By induction, true for all $n \geq 1$. $\blacksquare$
When proving that $a^n - b^n$ is divisible by $d$, the simple substitution from Lesson 9 is difficult because the expression involves two exponential terms. Instead, insert $+a \cdot b^k - a \cdot b^k$ (a zero!) to factorise usefully:
Pause — copy the add/subtract trick: $a^{k+1}-b^{k+1}=a(a^k-b^k)+b^k(a-b)$, identifying which hypothesis and residual each term uses into your book.
Quick check: When applying the add/subtract trick to $7^{k+1} - 3^{k+1}$, what term do you add and subtract?
We just saw that to prove $a^n-b^n$ divisible by $(a-b)$, you write $a^{k+1}-b^{k+1}=a(a^k-b^k)+b^k(a-b)$ and apply the hypothesis to the first bracket. That raises a question: for divisibility-by-6, what algebraic fact about consecutive integers removes the need for case analysis? This card answers it → the product of any two consecutive integers $n(n+1)$ is always divisible by 2.
A powerful tool for divisibility-by-6 proofs is the fact that the product of any two consecutive integers is always even.
This means whenever $3k(k+1)$ appears in a proof, it equals $3 \cdot 2N = 6N$, which is divisible by 6.
Full worked proof: $n^3 - n$ divisible by 6
Prove by induction that $6 \mid (n^3 - n)$ for all $n \geq 1$.
Base case ($n=1$): $1 - 1 = 0 = 6 \times 0$. ✓ (Note: 0 is divisible by every integer.)
Inductive hypothesis: Assume $k^3 - k = 6M$ for some integer $M$.
Inductive step:
$(k+1)^3 - (k+1) = k^3 + 3k^2 + 3k + 1 - k - 1 = k^3 + 3k^2 + 2k$
$= (k^3 - k) + 3k^2 + 3k = 6M + 3k(k+1)$
Since $k(k+1)$ is the product of consecutive integers, it is even: $k(k+1) = 2N$ for some integer $N$.
$= 6M + 3(2N) = 6M + 6N = 6(M + N)$
Since $M + N$ is an integer, $f(k+1)$ is divisible by 6. By induction, true for all $n \geq 1$. $\blacksquare$
A powerful tool for divisibility-by-6 proofs is the fact that the product of any two consecutive integers is always even .
Pause — copy the consecutive-integer divisibility fact ($n(n+1)$ always even) and show how it closes a divisibility-by-6 inductive step into your book.
Did you get this? True or false: in the induction proof that $n^3 - n$ is divisible by 6, the term $3k(k+1)$ is shown to be divisible by 6 because one of $k$ or $k+1$ is always even.
Worked examples · 3 in a row, reveal as you go
Prove by induction that $5^n - 2^n$ is divisible by 3 for all $n \geq 1$.
Prove by induction that $n(n+1)(n+2)$ is divisible by 6 for all $n \geq 1$.
Prove by induction that $4^n - 1$ is divisible by 3 for all $n \geq 1$. (HSC-style: write all steps explicitly.)
Fill the gap: In the proof that $7^n - 3^n$ is divisible by 4, after applying the add/subtract trick, the inductive step simplifies to $4(7M +$ $)$.
Misconceptions to fix · the 3 traps that cost marks
Did you get this? True or false: when applying the add/subtract trick to $7^{k+1} - 3^{k+1}$, the correct term to insert is $+7 \cdot 3^k - 7 \cdot 3^k$.
Activities · practice with the ideas
Prove by induction that $7^n - 3^n$ is divisible by 4 for all $n \geq 1$. Write all four steps explicitly.
In the add/subtract trick for $5^{k+1} - 2^{k+1}$: what zero do you insert? Write out the two resulting groups.
Prove by induction that $n^3 - n$ is divisible by 6 for all $n \geq 1$. Include the full justification that $k(k+1)$ is even.
Identify the error: "In the proof that $5^n - 2^n$ is divisible by 3, I insert $+2 \cdot 5^k - 2 \cdot 5^k$, giving $2(5^k - 2^k) + 5^k(2-5) = 2(3M) - 3 \cdot 5^k = 3(2M - 5^k)$." Is this approach valid?
Which of the following can be proved using the add/subtract trick? (a) $2^n + 1$ divisible by 3; (b) $6^n - 4^n$ divisible by 2; (c) $n^2 + n$ divisible by 2. For each, state your technique and why.
Odd one out: Three of these steps are from a correct divisibility induction proof. Which one is NOT a valid proof step?
Earlier you computed $7^n - 3^n$ for $n = 1, 2, 3$: you should have found 4, 40, and 316 — all multiples of 4.
The reason is that $7 - 3 = 4$, and this difference cascades through every power. The add/subtract trick makes this precise: $7^{k+1} - 3^{k+1} = 7(7^k - 3^k) + 3^k \cdot 4$. The first group is divisible by 4 (hypothesis); the second group contributes an explicit factor of 4 from $7 - 3$. Did the "inserting a zero" idea make sense? What was most surprising?
Pick your answer, then rate your confidence — that tells the system what to drill next. Each retry pulls a fresh mix from the bank.
Q1. State the identity used in the add/subtract trick for $a^{k+1} - b^{k+1}$. (1 mark)
Q2. Prove by induction that $7^n - 3^n$ is divisible by 4 for all $n \geq 1$. (3 marks)
Q3. Prove by induction that $n^3 - n$ is divisible by 6 for all $n \geq 1$. (3 marks)
Comprehensive answers (click to reveal)
Activity answers:
1. Base: $7-3=4$ ✓. Hypothesis: $7^k-3^k=4M$. Step: $7(4M)+4\cdot 3^k=4(7M+3^k)$. ✓
2. Insert $\pm 5 \cdot 2^k$; Group 1: $5(5^k-2^k)=5(3M)$; Group 2: $2^k(5-2)=3\cdot 2^k$; total $3(5M+2^k)$.
3. $(k+1)^3-(k+1) = (k^3-k)+3k(k+1) = 6M+3(2N) = 6(M+N)$. Key: state $k(k+1)=2N$. ✓
4. The insertion $\pm 2 \cdot 5^k$ is valid — it gives $2(5^k-2^k)+5^k(2-5) = 2(3M)-3\cdot 5^k = 3(2M-5^k)$. Both insertions work here. ✓
5. (a) $2^n+1$ — not $a^n-b^n$ form; use substitution. (b) $6^n-4^n$ — add/subtract; $6-4=2$ ✓. (c) $n^2+n$ — group-and-extract (polynomial).
Q1 (1 mark): $a^{k+1} - b^{k+1} = a(a^k - b^k) + b^k(a-b)$ [1].
Q2 (3 marks): Base: $7-3=4$ ✓ [1]. Hypothesis: $7^k-3^k=4M$ [1]. Step: $7(4M)+3^k \cdot 4 = 4(7M+3^k)$; conclude [1].
Q3 (3 marks): Base: $1-1=0$ ✓ [1]. Hypothesis: $k^3-k=6M$; step: expand and group, show $3k(k+1)=6N$ using consecutive integer fact [1]; $6(M+N)$; conclude [1].
Five timed questions. Beat the boss to bank a tier — gold (90% + speed), silver (75%), or bronze (50%). Replays welcome.
⚔ Enter the arenaClimb platforms by answering divisibility induction questions. Lighter alternative to the boss.
Mark lesson as complete
Tick when you've finished the practice and review.