Mission
home

1.3 Proof and Reasoning

Tags
Proof
Induction
Deduction
Contradiction
Counterexample
Simple deductive proof, numerical and algebraic; how to lay out a left-hand side to right-hand side (LHS to RHS) proof. (1.6)
The symbols and notation for equality and identity.
Proof by mathematical induction (AHL 1.15)
Proof by contradiction
Use of a counterexample to show that a statement is not always true.
Notation
Definition
NN
The set of natural numbers
ZZ
The set of integers
QQ
The set of rational numbers (quotients)
RR
The set of real numbers
Terminology
Definition
Proposition
A True of False statement
Not ¬\neg
Simply, a negation.  For instance, ¬p\neg p will be false if pp is true.
And \land
Both propositions pp and qq must be true for “pp and qq” statement to be true.
Or \lor
Either one of pp or q q can be true for “pp or qq” statement to be true.
Implication
pqp⇒ q denotes “If pp, then qq”.
Antecedent
The sufficient condition in the implication, i.e. pp in pqp⇒ q
Consequent
The necessary condition in the implication, i.e. pqp⇒ q
Logical Equivalence
pqp \Leftrightarrow q . This is also written as “if and only if”, or “iff”.
Converse
A converse of logical statement; the converse of pqp⇒q is qpq⇒p The converse is not necessarily true even if pqp⇒q is true; i.e.  pqqpp⇒ q ⇏ q⇒ p
Contrapositive
A negated converse of logical statements. The contrapositive of pqp⇒q is ¬q¬p\neg{q}⇒\neg{p}. This has the same truth value as the statement pqp⇒q.
Methods
Steps
Direct proof
Given pqp⇒q, start from pp to arrive at qq. When you are proving pqp⇒q, never assume qq when beginning your proof. You cannot start from the consequent and derive the antecedent. If it seems easy to prove the converse qpq⇒p, use backward reasoning if possible. Note that you have to prove both implications pqp⇒q and qpq⇒p when proving pqp\Leftrightarrow q. Direct proof questions typically involve demonstrating that a statement holds true for all integers, consecutive integers, or specific subsets such as even or odd numbers. You can start from letting an integer equal to or either 2n2n (even integer) or 2n+12n+1 (odd integer) for conventions.
Proof by contradiction
1. Given pp, assume ¬p\neg p is true. • nn is rational ⇒ Assume nn is irrational. • If n2n^2 is odd then nn is odd ⇒ Assume n2n^2 is odd and nn is even. 2. Find a contradiction in this logical statement. 3. Therefore, conclude that p is indeed true. Common questions include: • Irrational numbers • Prime numbers • Odds and evens • Maximum and minimum values
Proof of the contrapositive
Given pqp⇒q, prove ¬q¬p\neg{q}⇒\neg{p} instead, and use the property of the contrapositive.
Proof by induction
Give the proposition PnP_n, defined for nan ≥ a for aZa∈Z: 1. Prove the base case; i.e. n=an=a 2. Suppose/ assume that PkP_k is true, and prove PkPk+1P_k \Rightarrow P_{k+1} •Suppose n=kn=k is true forka k≥ a for a ℤ •Let n=k+1  n=k+1  3.As PaP_a is true and Pk+1P_{k+1} is true whenever PkP_k is true, PnP_n must be true for all nan ≥ a. Common questions include: •Sums of sequences r=1nf(r)=g(n)\sum_{r=1}^nf(r)=g(n), then use r=1k+1f(r)=f(k+1)+r=1kf(r)\sum_{r=1}^{k+1} f(r) = f(k+1) + \sum_{r=1}^{k} f(r) for induction •Divisibility of an expression f(n)=mqnf(n)=m\cdot q_n where mm and qnq_n are integers, then use ak+1=aaka^{k+1}=a \cdot a^k for induction •Complex numbers  de Moivre’s theorem •Derivatives f(n)(x)=g(x)f^{(n)}(x)=g(x), then use f(k+1)(x)=ddx(f(k)(x))f^{(k+1)}(x)=\frac {d}{dx}(f^{(k)}(x)) for induction