Mathematical Induction



Introduction

The Principle of Mathematical Induction

General Case

Three Steps to a Proof using Induction

  1. Basis of Induction
  2. Inductive Hypothesis
  3. Inductive Step

Example 1

Example 2

  1. Basis of Induction
                  3             2
    Since S(1) = 1  = (1(1+1)/2) , the formula is true for n = 1.
    		
  2. Inductive Hypothesis
    Assume that P(n) is true for n = k, that is 
            3    3          3             2
    S(k) = 1  + 2  + ... + k  = (k(k+1)/2) .
    		
  3. Inductive Step
    Now show that the formula is true for n = k + 1. 
    
    Observe that 
              3    3          3        3               3
    S(k+1) = 1  + 2  + ... + k  + (k+1)  = S(k) + (k+1) .
    		
    Using the inductive hypothesis, 
     3    3          3        3             2        3
    1  + 2  + ... + k  + (k+1)  = (k(k+1)/2)  + (k+1)
    
                                       2        2
                                = (k+1)  ( (k/2) + k + 1 )
    
                                       2    2
                                = (k+1)  ( k / 4 + k + 1 )
    
                                       2     2
                                = (k+1)  ( (k  + 4k + 4) / 4 )
    
                                       2          2
                                = (k+1)  ((k+2)/2)
    
                                                  2
                                = ((k+1)(k+2) / 2)
    and the formula holds for k + 1.  
    		
    QED

Example 3

Example 4

Summary