Skip to main content
Mathematics LibreTexts

6.2: Basic Induction

  • Page ID
    60216
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    Suppose we want to show that \(n!\) is at least \(2^n − 2\), for every \(n ≥ 1\) (where \(n\) must be an integer). We could start verifying this fact for each of the possible values for \(n\):

    \[\begin{equation} \begin{split} 1!&= 1 ≥ 2^1 − 2 = 0; \\ 2!&= 2 ≥ 2^2 − 2 = 2; \\ 3!&= 6 ≥ 2^3 − 2 = 6; \\ 4!&= 24 ≥ 2^4 − 2 = 14. \end{split} \end{equation} \]

    We could continue verifying the values one at a time, but the process would go on forever, so we’d never be able to complete the proof.

    Instead, think about the following method. We know that the inequality holds for \(n = 1\). Let’s suppose that the inequality holds for some value \(n = k\), i.e. that

    \[k! ≥ 2^k − 2.\]

    Now let’s use the fact that we can easily calculate \((k+1)!\) from \(k!\) together with our supposition, to deduce that the inequality holds when \(n = k + 1\), i.e. that

    \[(k + 1)! ≥ 2^{k+1} − 2.\]

    This is enough to prove the inequality for every integer \(n ≥ 1\) because applying our supposition and deduction enough times will prove the inequality for any value at all that interests us! For example, if we wanted to be sure that the inequality holds for \(n = 100\), we could take the fact that we know it holds for \(1\), to deduce that it holds for \(2\), then the fact that it holds for \(2\) allows us to deduce that it holds for \(3\). By repeating this \(97\) more times, eventually we see that since it holds for \(99\), we can deduce that it holds for \(100\).

    Theorem \(\PageIndex{1}\): Principle of Mathematical Induction

    Let \(P(n)\) be an assertion about the integer \(n\). If we know that

    1. The assertion \(P(n_0)\) is true for some particular integer \(n_0\); and
    2. For any integer \(k ≥ n_0\), if \(P(k)\) is true then \(P(k + 1)\) must also be true, then \(P(n)\) is true for every integer \(n ≥ n_0\).

    Definition: Inductive Hypothesis

    In a proof by induction, determining that \(P(n_0)\) is true for some particular integer \(n_0\) is called the base case. Proving the conditional statement that \(P(k) ⇒ P(k + 1)\) for every \(k ≥ n_0\) is called the inductive step. The assumption we make in the inductive step, that \(P(k)\) is true for some arbitrary \(k ≥ n_0\), is called the inductive hypothesis, and can be referred to by (IH) when it is being used in the proof.

    Now that we’ve gone through the formalities, let’s write a proper proof by induction for the inequality we used to introduce this idea.

    Example \(\PageIndex{1}\)

    Prove by induction that \(n! ≥ 2^n − 2\), for every integer \(n ≥ 2\). (This inequality is actually true for every \(n ≥ 0\), but the proof is considerably simpler if we restrict our attention to \(n ≥ 2\)).

    Solution

    Base case: \(n = 2\). We have \(n! = 2! = 2\), and

    \(2^n − 2 = 2^2 − 2 = 4 − 2 = 2.\)

    Certainly \(2 ≥ 2\), so the inequality holds for \(n = 2\). This completes the proof of the base case.

    Inductive step: We begin with the inductive hypothesis. Let \(k ≥ 2\) be arbitrary, and suppose that the inequality holds for \(n = k\); that is, assume that \(k! ≥ 2^k − 2\).

    Now we want to deduce that

    \((k + 1)! ≥ 2^{k+1} − 2.\)

    Let’s start from the left-hand side of this inequality. By the definition of factorial, we know that

    \((k + 1)! = (k + 1)k!\)

    Now that we have \(k!\) in the expression, we’re in a position to apply the inductive hypothesis; that is,

    \((k + 1)! = (k + 1)k! ≥ (k + 1)(2^k − 2).\)

    Since \(k ≥ 2\), we have \(k + 1 ≥ 3\), so

    \((k + 1)(2^k − 2) ≥ 3(2^k − 2) = 2(2^k ) + 2^k − 6 = 2^{k+1} + 2^k − 6.\)

    Again, since \(k ≥ 2\), we have \(2k ≥ 4\), so \(2k − 6 ≥ −2\). Hence

    \((k + 1)! ≥ 2^{k+1} + 2^k − 6 ≥ 2^{k+1} − 2\)

    which is what we wanted to deduce. This completes the proof of the inductive step.

    By the Principle of Mathematical Induction, \(n! ≥ 2^n − 2\) for every integer \(n ≥ 2\).

    Proofs by induction work very naturally with recursively-defined sequences, since the recurrence relation gives us information about the \((k + 1)^{\text{st}}\) term of the sequence, based on previous terms.

    Example \(\PageIndex{2}\)

    Consider the sum of the first \(n\) integers. We can think about this as a recursively-defined sequence, by defining \(s_1 = 1\), and \(s_n = s_{n−1} + n\), for every \(n ≥ 2\). Thus, \(s_2 = 1 + 2\);

    \(s_3 = s_2 + 3 = 1 + 2 + 3\),

    and so on. Prove by induction that \(s_n = \dfrac{n(n + 1)}{2}\), for every \(n ≥ 1\).

    Solution

    Base case: \(n = 1\). We have \(s_n = s_1 = 1\), and

    \(\dfrac{n(n + 1)}{2} = \dfrac{1(2)}{2} = 1\),

    so the equality holds for \(n = 1\). This completes the proof of the base case.

    Inductive step: We begin with the inductive hypothesis. Let \(k ≥ 1\) be arbitrary, and suppose that the equality holds for \(n = k\); that is, assume that \(s_k = \dfrac{k(k + 1)}{2}\).

    Now we want to deduce that

    \(s_{k+1} = \dfrac{(k + 1)(k + 2)}{2}\).

    Using the recursive relation, we have \(s_{k+1} = s_k + (k+ 1)\) since \(k+ 1 ≥ 2\), and using the inductive hypothesis, we have \(s_k = \dfrac{k(k + 1)}{2}\), so putting these together, we see that

    \(s_{k+1} = \dfrac{k(k + 1)}{2} + (k + 1)\).

    Taking out a common factor of \(k + 1\) gives

    \(s_{k+1} = (k + 1)(\dfrac{k}{2} + 1) = \dfrac{(k + 1)(k + 2)}{2}\),

    which is what we wanted to deduce. This completes the proof of the inductive step.

    By the Principle of Mathematical Induction, \(s_n = \dfrac{n(n + 1)}{2}\) for every \(n ≥ 1\).

    Note

    The steps of a proof by induction are precisely defined, and if you leave any of them out, or forget the conditions required, things can go badly wrong. The base case may seem obvious, but can’t be left out; also, the hypothesis that \(k ≥ n_0\) may be critical to the proof, as we saw in Example 6.2.1.

    Let’s look at an example where, by forgetting to include the base case, we can give a “proof by induction” of something that is clearly false.

    Example \(\PageIndex{3}\)

    Here is a “proof by induction” (without a base case) that every integer \(n\) is at least \(1000\).

    Solution

    Inductive step: We begin with the inductive hypothesis. Let \(k\) be arbitrary, and suppose that \(k ≥ 1000\).

    Now we want to deduce that \(k + 1 ≥ 1000\). But clearly,

    \(k + 1 ≥ k ≥ 1000\)

    (by our inductive hypothesis), which is what we wanted to deduce. This completes the proof of the inductive step.

    By the Principle of Mathematical Induction, \(n ≥ 1000\) for every integer \(n\).

    Now it’s your turn to try a few, but don’t leave out any of the steps!

    Exercise \(\PageIndex{1}\)

    Use the Principle of Mathematical Induction to prove the following:

    1) For the recursively-defined sequence given by \(b_1 = 5\) and \(b_n = b_{n−1} + 4\) for all \(n ≥ 2\), prove that for every integer \(n ≥ 1\), \(b_n = 5 + 4(n − 1)\).

    2) For the recursively-defined sequence given by \(c_1 = 3\) and \(c_n = c_{n−1} + 3 · 2^{n−1}\) for all \(n ≥ 2\), prove that for every integer \(n ≥ 1\), \(c_n = 3(2^n − 1)\).

    3) Prove that for every integer \(n ≥ 0\), \(n! ≥ n\).

    4) Prove that for every integer \(n ≥ 0\), \(4^n − 1\) is divisible by \(3\).

    5) Starting with \(n = 2\) and increasing n from there, calculate the first few values for the product

    \(t_n = \prod_{j=2}^{n} \left( 1 - \dfrac{1}{j} \right)\)

    Conjecture a closed formula for \(t_n\) based on the values you have calculated, and use induction to prove that your formula is correct.

    6) Prove that for every integer \(n ≥ 1\),

    \(\sum_{j=1}^{n} j! ≤ \dfrac{1}{2} (n + 1)!\)

    7) Define \(c_0 = 1\) and for \(n ≥ 1\), define \(c_n = nc_{n−1} + 1\). Prove by induction: for \(n ≥ 0\),

    \(c_n = \sum_{j=0}^{n} \dfrac{n!}{(n-j)!}\)


    This page titled 6.2: Basic Induction is shared under a CC BY-NC-SA license and was authored, remixed, and/or curated by Joy Morris.

    • Was this article helpful?