Section 1.2 Logic and Proof Techniques
Mathematical statements can typically be phrased as an implication- Direct proof: Assume
is true, then prove is true. - Contrapositive: Assume
is true, then prove is true. - Contradiction: Assume the conclusion is false, then use this to arrive at a statement that contradicts one of the assumptions.
Activity 1.2.1. Review of Proofs.
Prove each statement, noting which proof technique you used. Explain all your steps clearly, as if you are writing for the current batch of MAT102 students.
- The sum of two odd numbers is even.
- The square of an even number is divisible by 4.
- The equation
has no rational solutions. - For integer
if is odd, then is even. - There is no smallest positive rational number.
- Every multiple of 4 can be written as
for some - The sum of a rational number and an irrational number is irrational.
- A three-digit natural number is divisible by 9 if and only if the sum of its digits is divisible by 9.
- If
and are defined as in Checkpoint 1.1.2, then
Theorem 1.2.1. Principle of Mathematical Induction.
Let
is true;- For all
is true.
then
One can also replace the second condition with the following:
b.* For all
This is called strong induction, where one assumes the induction step holds for all natural numbers from 1 to
Checkpoint 1.2.2. Practice Induction.
Prove the following statements using induction:
- \(1^2 + 2^2 + 3^2 + \cdots + n^2 = \frac{1}{6}n(n+1)(2n+1)\) for all \(n \in \mathbb{N}\text{.}\)
- \(2^n \geq n^2\) for all \(n \in \mathbb{N}, n \geq 4\text{.}\)
- \(4^{2n} -1\) is divisible by 5 for every \(n \in \mathbb{N}\text{.}\)
Checkpoint 1.2.3. Fibonacci Sequence.
The Fibonacci sequence \(\{F_n\}\) is defined recursively as
Prove that
using strong induction.
Checkpoint 1.2.4. Tiling.
Let \(T_n\) be the number of ways one can tile a \(2 \times n\) grid with \(1 \times 2\) rectangles. For example, \(T_2 = 2\) since there are two tilings of a \(2 \times 2\) grid using only \(1 \times 2\) rectangles.
Find a recurrence relation for \(T_n\) and prove that \(T_n = F_{n+1}\) as defined in Checkpoint 1.2.3.