đ The Detectiveâs Toolkit: Proof Techniques in Number Theory
Imagine youâre a detective. Your job? Proving things are TRUE beyond any doubt. Today, youâll learn the secret tools that mathematicians use to solve mysteries about numbers!
đ The Big Picture
Think of proof techniques like different tools in a detectiveâs toolkit:
- Well-Ordering Principle â âFind the smallest suspectâ
- Mathematical Induction â âDomino chain reactionâ
- Strong Induction â âUse ALL past cluesâ
- Infinite Descent â âThe impossible shrinking trickâ
- Pigeonhole Principle â âToo many pigeons, not enough holesâ
- Irrationality Proofs â âProof by contradictionâ
Letâs explore each one through stories!
đ 1. Well-Ordering Principle
The Story
Imagine a classroom where every student has a different number of candies. The teacher says: âWill the student with the FEWEST candies please stand up?â
Can someone always stand up? YES!
This is the Well-Ordering Principle: Every non-empty set of positive integers has a smallest element.
Why It Matters
It sounds obvious, but itâs POWERFUL. Hereâs how detectives use it:
The Crime: Someone claims thereâs a positive integer that canât be written as a sum of ones.
The Detective Work:
- Assume such âbadâ numbers exist
- By Well-Ordering, find the SMALLEST bad number (call it n)
- But wait⌠n-1 is smaller, so it CAN be written with ones
- Just add one more 1 to get n!
- Contradiction! No bad numbers exist.
Simple Example
Prove: Every positive integer ⼠2 has a prime divisor.
Proof:
- Take any n ⼠2
- Look at all divisors of n that are ⼠2
- This set is non-empty (n itself is there!)
- By Well-Ordering, pick the SMALLEST divisor, call it p
- p must be prime! (If p = aĂb with a,b < p, then a divides n too, contradicting âsmallestâ)
⨠Magic: We found a prime without searchingâjust by trusting that a smallest one exists!
đ˛ 2. Mathematical Induction
The Story
Picture a row of dominoes. You know two things:
- The first domino falls (Base Case)
- If any domino falls, it knocks down the next one (Inductive Step)
What happens? ALL dominoes fall!
graph TD A["đĄ Domino 1 Falls<br>#40;Base Case#41;"] --> B["đĄ Domino 2 Falls"] B --> C["đĄ Domino 3 Falls"] C --> D["đĄ ... All Fall!"]
The Recipe
To prove something is true for ALL positive integers:
- Base Case: Show itâs true for n = 1
- Inductive Step: Assume itâs true for n = k, then prove itâs true for n = k+1
Simple Example
Prove: 1 + 2 + 3 + ⌠+ n = n(n+1)/2
Base Case (n = 1):
- Left side: 1
- Right side: 1(1+1)/2 = 1 â
Inductive Step:
- Assume: 1 + 2 + ⌠+ k = k(k+1)/2
- Prove: 1 + 2 + ⌠+ k + (k+1) = (k+1)(k+2)/2
Proof:
1 + 2 + ... + k + (k+1)
= k(k+1)/2 + (k+1) [by assumption]
= k(k+1)/2 + 2(k+1)/2 [common denominator]
= (k+1)(k+2)/2 [factor out (k+1)]
Done! đ
đŞ 3. Strong Induction
The Story
Regular induction is like climbing stairs one step at a time. Strong induction is like having a jetpackâyou can use ALL the steps below you, not just the last one!
The Difference
- Regular Induction: Assume P(k) is true, prove P(k+1)
- Strong Induction: Assume P(1), P(2), âŚ, P(k) are ALL true, prove P(k+1)
When to Use It
Use strong induction when proving P(k+1) needs information from MORE than just P(k).
Simple Example
Prove: Every integer n ⼠2 can be written as a product of primes.
Base Case (n = 2): 2 is prime. So 2 = 2 â
Strong Inductive Step:
- Assume: Every integer from 2 to k can be written as a product of primes
- Prove: k+1 can too
Proof:
- Case 1: k+1 is prime â Done! Itâs a product of one prime.
- Case 2: k+1 is composite â k+1 = a Ă b where 2 ⤠a, b ⤠k
- By strong assumption, both a and b are products of primes
- So k+1 = (primes from a) Ă (primes from b) â
đŻ Key insight: We needed info about a and b, which could be ANY numbers less than k+1, not just k!
đ 4. Proof by Infinite Descent
The Story
Imagine someone tells you: âI have a magic staircase going down forever.â
You say: âShow me!â They walk down⌠and down⌠and downâŚ
But waitâif you start at step 5, you can only go down 5 times! Thereâs no infinite staircase of positive integers!
This is Fermatâs method of Infinite Descent: If assuming something leads to an infinite decreasing sequence of positive integers, that assumption must be FALSE.
graph TD A["Start: nâ"] --> B["Smaller: nâ"] B --> C["Even smaller: nâ"] C --> D["nâ < nâ < nâ < nâ"] D --> E["đŤ IMPOSSIBLE!<br>Can't go forever"]
Simple Example
Prove: â2 is irrational.
Assume the opposite: â2 = a/b where a and b are positive integers with no common factors.
The Descent:
- â2 = a/b means 2b² = a²
- So a² is even, which means a is even
- Write a = 2c
- Then 2b² = 4c², so b² = 2c²
- So b is even too!
- But waitâboth a and b are even, contradicting âno common factorsâ
- Actually, we can keep finding SMALLER pairs with the same property
- This descent canât go on forever â Contradiction!
đŚ 5. Pigeonhole Principle
The Story
You have 10 pigeons and 9 pigeonholes. Every pigeon needs a hole.
What happens? At least one hole has 2 or more pigeons!
This simple idea is INCREDIBLY powerful.
The Rule
If n+1 objects go into n containers, at least one container has 2+ objects.
Generalized: If kn+1 objects go into n containers, at least one container has k+1 or more objects.
Simple Example 1
Problem: In any group of 13 people, at least 2 share a birthday month.
Proof:
- Pigeons = 13 people
- Holes = 12 months
- 13 > 12, so at least 2 people share a month! â
Simple Example 2
Problem: Pick any 5 integers. Prove that 2 of them have the same remainder when divided by 4.
Proof:
- Pigeons = 5 integers
- Holes = 4 possible remainders (0, 1, 2, 3)
- 5 > 4, so at least 2 integers share a remainder! â
A Magical Application
Problem: In any sequence of n²+1 distinct numbers, there exists either an increasing subsequence of n+1 numbers OR a decreasing subsequence of n+1 numbers.
This is the famous ErdĹsâSzekeres theorem, proven using pigeonhole!
đŽ 6. Irrationality Proofs
The Big Idea
How do you prove a number CANâT be written as a fraction? You use proof by contradiction!
Assume it CAN be written as p/q (in lowest terms), then find something impossible.
Classic Example: â2 is Irrational
The Setup: Assume â2 = p/q where gcd(p,q) = 1 (lowest terms).
The Magic Trick:
- Square both sides: 2 = p²/q²
- So p² = 2q²
- This means p² is even
- So p is even (if p were odd, p² would be odd)
- Write p = 2k
- Then 4k² = 2q², so 2k² = q²
- So q² is even, meaning q is even
- But BOTH p and q are even! This contradicts gcd(p,q) = 1
Conclusion: Our assumption was wrong. â2 is irrational! đ
Another Example: â3 is Irrational
Assume: â3 = p/q with gcd(p,q) = 1
The Proof:
- 3 = p²/q², so p² = 3q²
- p² is divisible by 3, so p is divisible by 3
- Let p = 3k, then 9k² = 3q², so q² = 3k²
- q² is divisible by 3, so q is divisible by 3
- Both p and q divisible by 3 â Contradicts gcd(p,q) = 1!
Result: â3 is irrational! â
đŻ Summary: Which Tool When?
| Situation | Use This Tool |
|---|---|
| Need to find a âsmallestâ example | Well-Ordering |
| Proving for all n = 1, 2, 3, ⌠| Induction |
| Need info from multiple smaller cases | Strong Induction |
| Show something leads to impossibility | Infinite Descent |
| Too many things, not enough categories | Pigeonhole |
| Prove something ISNâT a fraction | Irrationality Proof |
đ The Detectiveâs Wisdom
These six tools are like superpowers:
- Well-Ordering â âThe smallest one exists!â
- Induction â âKnock down all dominoes!â
- Strong Induction â âUse ALL your history!â
- Infinite Descent â âImpossible infinite stairs!â
- Pigeonhole â âSomething must overlap!â
- Irrationality â âAssume and explode!â
With these tools, you can prove things that seem impossible to check directly. You donât need to verify infinityâyou just need clever reasoning!
Now go forth, young detective, and prove some truths! đâ¨