Skip to main content

Section 5.4 Strong Induction

In this section we look at a variation on induction called strong induction. This is really just regular induction except we make a stronger assumption in the induction hypothesis. It is possible that we need to show more than one base case as well, but for the moment we will just look at how and why we may need to change the assumption.

Strong Induction.

Let P(n) be a property defined for integers n. If
  1. P(1),P(a) are true for some a, and
  2. if P(i) is true for all 1ik, then P(k+1) is true;
then we can conclude P(n) is true for all n1.
As in the previous sections on induction, we will assume nZ.
Strong induction requires a change in how we write our induction assumption, so we need a slight change to our standard structure for a strong induction proof.

Structure of a Strong Induction Proof.

  1. Base Step.
    Assume P(1) is true.
  2. Induction Step.
    Assume P(i) is true for all 1ik. Show P(k+1) is true.
For now, we can use a=1 in the base step and just do one base step as before. But we might need to show, say, P(1) and P(2).
The only real difference between strong induction and regular induction is that instead of assuming P(k), we assume P(1),P(2),P(k). In notation, this is P(i) for all 1ik.
Why can we change the assumption? Well, remember how induction works, first we show P(1), then the induction step gets us to P(2), which then gets us to P(3), etc. But once we get to, say, P(4), we already know P(1),P(2),P(3). Thus, we may as well assume we have P(i) for everything up to P(k).
To see the necessity of a stronger assumption, we revisit Theorem 4.3.5, by using induction to prove every integer n>1 is divisible by a prime. First we will attempt to use regular induction and see why it isn’t enough.

Example 5.4.1. Trying Regular Induction.

Prove for all integers n>1, n is divisible by a prime.
First we try to do the proof using regular induction.

Proof.

Base Step: Let n=2. Then 22 and 2 is prime.
Thus, n is divisible by a prime.
Induction Step:
Assume k is divisible by a prime for some k2.
Show k+1 is divisible by a prime.
“Proof” of induction step:
Case 1: k+1 is prime. Now, k+1k+1 and hence k+1 is divisible by a prime.
Case 2: k+1 is not prime. This is were we get stuck, since although we know k is divisible by a prime, that doesn’t tell us anything about k+1. In fact, we showed that any prime dividing k cannot divide k+1.
Thus, regular induction is not going to work for this proof.
Now we can show how to do the proof with strong induction.

Example 5.4.2. Strong Induction.

Prove for all integers n>1, n is divisible by a prime.
The only change in the structure is to the induction assumption.

Proof.

Base Step: Let n=2. Then 22 and 2 is prime.
Thus, n is divisible by a prime.
Induction Step:
Assume i is divisible by a prime for all 2ik and for some k2.
Show k+1 is divisible by a prime.
Proof of induction step:
Case 1: k+1 is prime. Now, k+1k+1 and hence k+1 is divisible by a prime.
Case 2: k+1 is not prime. Thus k+1=ab where 1<a<k+1. Then 2ak. By our induction assumption, a must be divisible by a prime. Since ak+1 and a is divisible by a prime, k+1 is divisible by a prime.
Thus, by induction, every n>1 is divisible by a prime.
In regular induction, we use that we know the statement holds for k to get that it holds for k+1. Strong induction is useful when we need to use some smaller case (not just k) to get the statement for k+1.

Activity 5.4.1.

Let a0,a1,a2, be the sequence defined as
a0=1,a1=2,a2=3
ak=ak1+ak2+ak3,k3.

(a)

Write out the first 6 terms of the sequence.

(b)

Convince yourself that for the first six terms of the sequence, an3n.

(c)

Now try to write a standard induction proof to prove an3n for all n0. Does anything go wrong?

(d)

The proof requires strong induction. For the base step, how many previous terms do you need before you can first compute ak using the formula provided in defining the sequence? You need to show the base step for each of these initial terms since the induction won’t apply to them. Check the base step for each of these terms.

(e)

Write the “assume” and “show” statements for the inductive step. Make sure your “assume” statement is in the form for strong induction.

(f)

Now prove the inductive step.
For the remainder of the section, we are going to switch gears a bit, a prove the existence part of the Quotient-Remainder Theorem. Before we do that we need the Well-Ordering Principle, which we will state without a proof.
To check that the Well-Ordering Principle applies, you need to check three things:
  1. S
  2. SZ
  3. Every element of S is greater than some fixed integer.

Example 5.4.4. Well-Ordering Principle.

First note that the Well-Ordering Principle does not apply if the set is not integers. For example,
{1/n:nZ,n1}.
This is not a subset of the integers and does not have a least element, even though every element is greater than 0.
Now consider S={2k+1:k0}. Check each of the conditions.
  1. S since 1S.
  2. SZ since 2k+1Z.
  3. Every element of S is greater than some fixed integer since 2k+11 when k0.

Activity 5.4.2.

Determine if the conditions of the Well-Ordering Principle apply to each of the following sets.

(b)

Let k,jZ, S={2k+3j:2k+3j0}.

Activity 5.4.3.

Give three elements of each set, then determine if the conditions of the Well-Ordering Principle apply to each of the following sets.

(a)

S={73k:73k0,kZ}.

(b)

S={83k:83k0,kZ}.

(c)

Let n,dZ, and d>0, S={ndk:ndk0,kZ}.
We now prove the existence part of the Quotient-Remainder Theorem.
Theorem 4.4.1: Given any n,dZ with d>0, there exist q,r such that n=dq+r and 0r<d.

Proof.

Let S={ndk:ndk0,kZ}. Show S satisfies the Well-Ordering Principle. Clearly S is a set of integers, and by definition, every element is greater than or equal to 0. So we just need to show that S.
If n0, we can let k=0. Then ndk=n0. Hence nS.
If n<0, let k=n. Then ndn=n(1d). But n<0 and 1d0. Thus, ndn0. Hence ndnS.
Thus, S is nonempty and satisfies the conditions of the Well-Ordering Principle. Hence, S has a least element. Call it r.
Since rS, r=ndk for some kZ. Let k=q. Then r=ndq, and so n=dq+r.
We just need to show that 0r<d. Well, r0 since rS.
We will use contradiction to show r<d. Assume rd. Then
nd(q+1)=ndqd=rd0, since rd.
But then nd(q+1)S and nd(q+1)<ndq=r. This contradicts that r was the smallest element of S. Therefore, r<d.

Reading Questions Check Your Understanding

1.

    True or false: S={3n+14:nZ,n0} satisfies the conditions of the Well-Ordering Principle.
  • True.

  • The elements aren’t all integers.
  • False.

  • The elements aren’t all integers.

2.

    True or false: S={3n:nZ,n0} satisfies the conditions of the Well-Ordering Principle.
  • True.

  • Check that the set satifies the three conditions.
  • False.

  • Check that the set satifies the three conditions.

3.

    True or false: S={n:nZ,n0} satisfies the conditions of the Well-Ordering Principle.
  • True.

  • The elements aren’t all greater that some integer.
  • False.

  • The elements aren’t all greater that some integer.

4.

    True or false: S={3nk:n,kZ,3nk0} satisfies the conditions of the Well-Ordering Principle.
  • True.

  • Check that the set satifies the three conditions.
  • False.

  • Check that the set satifies the three conditions.

5.

    True or false: S={(1)n:nZ} satisfies the conditions of the Well-Ordering Principle.
  • True.

  • Check that the set satifies the three conditions.
  • False.

  • Check that the set satifies the three conditions.

Exercises Exercises

1.

Let a1,a2,a3, be the sequence defined as
a1=1,a2=3,
ak=ak2+2ak1,k3.
Prove that an is odd for all integers n1.

2.

Let b1,b2,b3, be the sequence defined as
b1=4,b2=12,
bk=bk2+bk1,k3.
Prove that bn is divisible by 4 for all integers n1.

3.

Let c1,c2,c3, be the sequence defined as
c1=3,c2=5,
ck=3ck12ck2,k3.
Prove that cn=2n+1 for all integers n1.

4.

Let a1,a2,a3, be the sequence defined as
a1=1,a2=3,
ak=ak1+ak2,k3.
Use strong induction to prove that an(74)n for all integers n1.
You have attempted of activities on this page.