n        1  2  3   4   5   6   7
     --------------------------------
     S(n)     1  3  6  10  15  21  28
       2 S(1) =  2  =  1 X 2
     2 S(2) =  6  =  2 X 3 
     2 S(3) = 12  =  3 X 4
     2 S(4) = 20  =  4 X 5
     2 S(5) = 30  =  5 X 6
     2 S(6) = 42  =  6 X 7
       S(k+1) = S(k) + (k+1) 
            = (k/2)(k+1) + (k+1)
            = (k+1)(k/2 + 1)
            = ( (k+1)(k+2) ) / 2
and the formula holds for k + 1. QED 
  3 3 3 3 Let S(n) = 1 + 2 + 3 + ... + n .
     n        1  2   3    4
     -----------------------
     S(n)     1  9  36  100
        3                              2
     1                   =   1  =   1
      3    3                         2
     1  + 2              =   9  =   3
      3    3    3                    2
     1  + 2  + 3         =  36  =   6
      3    3    3    3               2
     1  + 2  + 3  + 4    = 100  =  10
 
                                 2
Conjecture that S(n) = (n(n+1)/2)
  Let P(n) be the statement -- the sum S(n) of the first n cubes
                      2
is equal to (n(n+1)/2) .
3 2 Since S(1) = 1 = (1(1+1)/2) , the formula is true for n = 1.
Assume that P(n) is true for n = k, that is 
        3    3          3             2
S(k) = 1  + 2  + ... + k  = (k(k+1)/2) .
		
  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 (n+2) (2n+1) 6 + 7is divisible by 43 for each positive integer n.
(n+2) (2n+1) Let P(n) be the statement ( 6 + 7 ) = 43x.
(1+2) (2+1) 3 3 Since ( 6 + 7 ) = 6 + 7 = 559 = 43 X 13, the formula is true for n = 1.
(k+2) (2k+1) Assume that P(n) is true for n = k, that is 6 + 7 = 43x for some integer x.
Now show that the formula is true for n = k + 1. 
Observe that 
          (k+1+2)    (2(k+1)+1)
P(k+1) = 6        + 7
          (k+3)    (2k+3)
       = 6      + 7
              (k+2)    2    (2k+1)
       = 6 X 6      + 7  X 7
              (k+2)             (2k+1)
       = 6 X 6      + (6+43) X 7
              (k+2)        (2k+1)         (2k+1)
       = 6 X 6      + 6 X 7       + 43 X 7
                (k+2)    (2k+1)           (2k+1)
       = 6 X ( 6      + 7       ) + 43 X 7
                              (2k+1)
       = 6 X ( P(k) ) + 43 X 7
	Since each component of this sum is divisible by 43 so is the entire 
    sum and the formula holds for k + 1. QED