Review of Proof Strategies

Logic and Proofs

Proof strategies we know are:

Example

Two real numbers a,b are equal iff for all ε>0 it follows that |ab|<ε.

Proof
We prove the forward direction first. Suppose a=b. Then clearly |ab|=|aa|=|0|=0 so then if we let ε>0 be arbitrary then clearly ε>0=|ab| as required.

Now for the reverse direction . Notice that we get a as a given, which isn't great, so we should try proof by contradiction. Thus, suppose for all ε>0 that |ab|<ε. Assume for contradiction that ab. Then choose εo=|ab|>0. Then:

|ab|<εo|ab|<|ab|0<0⇒⇐

hence our assumption was incorrect, so then a=b instead.

Induction

The idea behind induction is to do the following:

  1. Show the base case that P(0) is true
  2. Have an inductive hypothesis that P(0),....,P(k) is true
  3. Prove that, using these hypotheses, that P(k+1) is true.
Example

Let x1=1 and for all nN that xn+1=(1/2)xn+1. Then xn is non-decreasing, or xnxn+1

Proof
Let's use induction:

  1. We know x1=1 and calculating the next term x2=(1/2)1+1=3/2 so clearly x1x2.
  2. Suppose for our inductive hypothesis that for some kN that all x1xk.
  3. Consider if xkxk+1. We know that xk1xk from our inductive hypothesis. Notice that if we start from there:
xk1xk12xk1+112xk+1xkxk+1

Hence, via the principle of mathematical induction, xn is a non-decreasing sequence.

References

  1. [[Abbott Real Analysis.pdf#page=21]]