There are instances in which we would like to approach a problem by Induction, but we are not explicitly given the Induction hypothesis. In such instances, we need to guess the Induction hypothesis before we can proceed. Consider the following example:
What is the sum Sn=1×1!+2×2!+3×3!+…+n×n!?
Trying small cases, we see: S1=1,S2=5,S3=23,S4=119,S5=719, which strongly suggests that Sn=(n+1)!−1. Now, we can treat this problem as a standard summation question and proceed via induction.
In other instances, the given statement doesn't seem to yield to Induction. Consider the following example:
Show that 121+221+321+…+n21≤2.
This may be recognizable to some readers who know the infinite sum of the reciprocal of squares is 6π2≈1.645. If so, showing that it is bounded by 2 should give us some leeway. Let's consider what happens when we want to prove this by induction. The base case n=1 is obvious and true. However, when we try and work on the induction step, knowing that
121+221+321+…+k21≤2
doesn't show
121+221+321+…+k21+(k+1)21≤2.
We have added an additional term to the summation. If we had equality initially, then the LHS would be greater than 2, and hence induction will not work.
In Stronger Induction, we modify the statement and strengthen it (aka prove something which tells us much more). This gives us more information to work with in the Induction step. We are sacrificing the simplicity of the base case, to make the Induction hypothesis much easier to deal with. As a example of this usage, Carsten Thomassen showed in 1993 that Every Planar Graph is 5-Choosable, using "The trick is to find an appropriate extension". It had previously stumped mathematicians like Paul Erdos, who couldn't push through their proofs.
Note: The term 'stronger induction' is not common usage. Some people simply refer to it as "Strengthen the Induction Hypothesis".
Worked Examples
1. Prove that 121+221+321+…+n21≤2−n1.
Solution: Base case: n=1
LHS =121=1.
RHS =2−11=1.
Since 1≤1, hence the base case is true.
Induction step: Suppose the statement is true for some k, so we know that 121+221+321+k21≤2−k1. If so,
121+221+321+…+k21+(k+1)21≤2−k1+(k+1)21≤2−k+11
Hence, we are done.
Note: The reason why n1 works nicely here, is because n1−n+11=n(n+1)1>(n+1)21.
2. a,b are positive integers such that a2+b22ab=sinθ, show that (a2+b2)nsinnθ is an integer.
First, let's try this problem and see where we get stuck.
Base case: n=1.
This statement is clearly true, since (a2+b2)1sinθ=2ab is an integer.
Induction step: Suppose the statement is true for some k. Consider
Now, the induction hypothesis tells us that the sin terms will result in integers, but we know nothing about the cos terms. There is no guarantee that they will play nice and give us a sum that is an integer.
Thus cosθ=±a2+b2(a−b)(a+b), hence (a2+b2)cosθ is also an integer. However, this does not tell us how to deal with coskθ, which will always appear in the induction step.
As such, this suggests that we should prove the following stronger statement: a,b are positive integers such that a2+b22ab=sinθ. Then (a2+b2)nsinnθ and (a2+b2)ncosnθ are both integers.
Solution: Base case: n=1.
This was already dealt with above. Both (a2+b2)sinθ and (a2+b2)cosθ are integers.
Then, each of the terms on the right hand side are integers, so the left hand side are also integers.
3. For an integer n, prove that 234…n<3.
An attempt to blindly induct on n leads to almost immediate failure, since we are increasing the LHS while keeping the RHS constant. We cannot copy Worked Example 1, as there is no clear adjustment to the RHS. Instead, we perform the following induction:
Fix integer n≥2. For all integer values of 2≤k≤n, k(k+1)…n<k+1.
The trick in this induction, is that we apply it going from k to k−1, as opposed to the typical induction step of n to n+1.
The base case is obvious. When k=n, (remember that n is fixed) we have k<k+1.
For the induction step, we have
(k−1)kk+1…n<(k−1)(k+1)<k
Hence, this complete the induction, and the result follows
Give yourself a pat on the back for making it all the way through this long post!
As a challenge, show that
234…n<2.8
Hint: I've done all the heavy lifting already.
This concludes the series of posts on Induction techniques. You should read the Proof of AM-GM to learn how to apply Forward-Backward Induction.
This discussion board is a place to discuss our Daily Challenges and the math and science
related to those challenges. Explanations are more than just a solution — they should
explain the steps and thinking strategies that you used to obtain the solution. Comments
should further the discussion of math and science.
When posting on Brilliant:
Use the emojis to react to an explanation, whether you're congratulating a job well done , or just really confused .
Ask specific questions about the challenge or the steps in somebody's explanation. Well-posed questions can add a lot to the discussion, but posting "I don't understand!" doesn't help anyone.
Try to contribute something new to the discussion, whether it is an extension, generalization or other idea related to the challenge.
Stay on topic — we're all here to learn more about math and science, not to hear about your favorite get-rich-quick scheme or current world events.
Markdown
Appears as
*italics* or _italics_
italics
**bold** or __bold__
bold
- bulleted - list
bulleted
list
1. numbered 2. list
numbered
list
Note: you must add a full line of space before and after lists for them to show up correctly
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
There are no comments in this discussion.