CPSC 220 Fall 2006
HW 13: Proof By Induction

  1. Use mathematical induction to prove the following property:
    n  
    å (4i-3) = n(2n-1), n>=1
    i=1  

    Note that we could also have written this as follows:

    1 + 5 + 9 + ... + (4n-3) = n(2n-1)
    

  2. Use structural induction on trees to prove the following property:

    A binary tree of height h has at most 2h leaves.

    Hints: