<< Chapter < Page Chapter >> Page >

   else

     if ( w = w1 ∨w2 or w1 ⋀w2 or w1 size 12{ rightarrow } {} w2 or w1 size 12{↔} {} w2 ) and

       Proposition(w1) = Yes and   Proposition(w2) = Yes

     then return Yes

     else return No

end

Proof by induction

Mathematical induction -- first principle

As we have seen in recursion, the set of natural numbers can be defined recursively, and its elements can be generated one by one starting with 0 by adding 1. Thus the set of natural numbers can be described completely by specifying the basis element (0), and the process of generating an element from a known element in the set.

Taking advantage of this, natural numbers can be proven to have certain properties as follows:

First it is proven that the basis element, that is 0, has the property in question (basis step). You prove that the seeds (the first generation elements) have the property. Then it is proven that if an arbitrary natural number, denote it by n, has the property in question, then the next element, that is n + 1, has that property (inductive step). Here you prove that the property is inherited from one generation (n) to the next generation (n + 1).

When these two are proven, then it follows that all the natural numbers have that property. For since 0 has the property by the basis step, the element next to it, which is 1, has the same property by the inductive step. Then since 1 has the property, the element next to it, which is 2, has the same property again by the inductive step. Proceeding likewise, any natural number can be shown to have the property. This process is somewhat analogous to the knocking over a row of dominos with knocking over the first domino corresponding to the basis step.

More generally mathematical statements involving a natural number n such as 1 + 2 + ... + n = n( n + 1 )/2 can be proven by mathematical induction by the same token.

To prove that a statement P(n) is true for all natural number n≥n0, where n0 is a natural number, we proceed as follows:

Basis Step: Prove that P(n0) is true.

Induction: Prove that for any integer k≥n0, if P(k) is true (called induction hypothesis), then P(k+1) is true.

The first principle of mathematical induction states that if the basis step and the inductive step are proven, then P(n) is true for all natural number n≥n0.

As a first step for proof by induction,   it is often a good idea to restate P(k+1) in terms of P(k) so that P(k), which is assumed to be true, can be used.

Example:

      Prove that for any natural number n,   0 + 1 + ... + n = n( n + 1 )/2 .

Proof:

Basis Step: If n = 0, then LHS = 0, and RHS = 0 * (0 + 1) = 0 .

Hence LHS = RHS.

Induction: Assume that for an arbitrary natural number n, 0 + 1 + ... + n = n( n + 1 )/2 .

-------- Induction Hypothesis

To prove this for n+1,   first try to express LHS for n+1   in terms of LHS for n,   and somehow use the induction hypothesis.

Here let us try

      LHS for n + 1 = 0 + 1 + ... + n + (n + 1) = (0 + 1 + ... + n) + (n + 1).

Using the induction hypothesis, the last expression can be rewritten as

      n( n + 1 )/2 + (n + 1) .

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Discrete structures. OpenStax CNX. Jul 29, 2009 Download for free at http://cnx.org/content/col10768/1.1
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Discrete structures' conversation and receive update notifications?

Ask