The form of argument for induction is: P(1) forall k, P(k) --> P(k+1) ------------------------- forall n>0, P(n).
So, for kinds of problems can induction work for? It can work on natural numbers, or integers greater than zero. Can it work on real numbers? Can it work on rational numbers?
You can induct over any set that is "Well ordered". A set is "well ordered" if any finite subset of the set has an minimum element.
Ok, so now let's do a quick warm up problem ...a generic induction problem that might (some day) let you solve a problem quickly. This also introduces us to the summation notation:
Prove: a0 + a1 + a2 + an =
(an+1 - 1) / (a-1)
strong induction
The form of argument for strong induction is:
P(1)
forall k, (P(1) ^ P(2) ^ P(3) ^ ... P(k-1) ^ P(k)) --> P(k+1)
-------------------------
forall n, P(n).
That is, when we prove P(k+1), we get to use any of the P(??) that
come before.