Advanced Logic: Proof Strategies and Uniqueness
351 words
2 min read
Visual companion
Python
Type and operator map
Python Week 1: the first filter for runtime behavior
View
Revision summary
What this note is really saying
Short form
# Advanced Logic: Proof Strategies and Uniqueness ## 8.1 Proving Universal Statements **Strategy:** "Let $x$ be arbitrary" — choose an arbitrary element and prove the property holds. **Example:** Prove $n^2 \geq n$ for all integers $n \geq 1$.

Advanced Logic: Proof Strategies and Uniqueness
8.1 Proving Universal Statements
Strategy: "Let x be arbitrary" — choose an arbitrary element and prove the property holds.
Example: Prove n2≥n for all integers n≥1.
Proof: Let n be an arbitrary integer with n≥1. Then n2−n=n(n−1)≥0 because n≥1 implies n≥0 and n−1≥0. Thus n2≥n. □
8.2 Proving Existential Statements
Strategy: Find one example (constructive) or show existence without construction (non-constructive).
Constructive: "There exists an even prime" — the number 2.
Non-constructive: "There exist irrational a,b such that ab is rational." Consider 22. If it's rational, done. If it's irrational, then (22)2=22=2 is rational. Either way, such numbers exist.
8.3 Proving Uniqueness
Show existence and uniqueness.
Example: Prove there is a unique solution to 3x+5=0.
Proof:
- Existence: x=−35 satisfies 3(−35)+5=0.
- Uniqueness: If 3x+5=0 and 3y+5=0, then 3x+5=3y+5⟹3x=3y⟹x=y.
8.4 Induction with Inequalities
Example: Prove 3n≥2n+1 for n≥1.
Base (n=1): 3≥2+1=3. ✓ IH: 3k≥2k+1. Step: 3k+1=3⋅3k≥3(2k+1)=3⋅2k+3=2k+1+2k+3≥2k+1+1. □
8.5 Proof by Minimum Counterexample
Assume the statement is false and let n be the smallest counterexample. Show this leads to contradiction.
Example: Every integer ≥2 is a product of primes.
Proof: Let n be the smallest integer ≥2 that is not a product of primes. Then n is not prime (else it would be a product), so n=ab with 2≤a,b<n. Since a,b are smaller, they are products of primes. Their product gives a prime factorization of n. Contradiction. □
Join Discord
PreviousModular Arithmetic DeepNextCardinality and Countability