Well-Ordering Principle

What is the Well-Ordering Principle?

Every non-empty set of positive integers has a smallest element.


Examples:

SetSmallest element
{3,7,15,2}\{3, 7, 15, 2\}22
All even numbers: {2,4,6,8,}\{2, 4, 6, 8, \ldots\}22
All primes: {2,3,5,7,11,}\{2, 3, 5, 7, 11, \ldots\}22
All numbers greater than 100100101101

No matter what collection of positive integers you pick, there’s always a smallest one.


Why is This Useful?

It gives us a proof technique: proof by minimal counterexample.

Instead of proving something is true directly, we:

  1. Assume it’s false for some numbers
  2. By well-ordering, there’s a smallest number where it fails
  3. Show this leads to a contradiction
  4. Conclude it must be true for all numbers

Assume failure exists. Find the smallest failure. Show it’s impossible.


Example 1: A Simple Example

This example is obvious, but it shows how the technique works.

Claim: Every positive integer is either 11, or greater than 11.


Proof:

Suppose some positive integers are NOT “either 11 or greater than 11.”

By well-ordering, there’s a smallest such number. Call it nn.

But wait:

  • If n=1n = 1, then nn IS 11. So it satisfies the claim.
  • If n>1n > 1, then nn IS greater than 11. So it satisfies the claim.

There’s no other option for a positive integer. Contradiction.

So every positive integer is either 11 or greater than 11.


Example 2: 2\sqrt{2} is Irrational

This is a famous proof. We’ll use well-ordering to show 2\sqrt{2} cannot be written as a fraction.

Claim: There are no positive integers aa and bb such that ab=2\frac{a}{b} = \sqrt{2}.


What does this mean?

If 2=ab\sqrt{2} = \frac{a}{b}, then squaring both sides:

2=a2b22 = \frac{a^2}{b^2}

a2=2b2a^2 = 2b^2

So we’re really proving: there are no positive integers where a2=2b2a^2 = 2b^2.


Proof:

Suppose there ARE positive integers where a2=2b2a^2 = 2b^2.

Consider the set of all such aa values. This is a non-empty set of positive integers.

By well-ordering, there’s a smallest such aa. Call it a0a_0, with corresponding b0b_0.

So: a02=2b02a_0^2 = 2b_0^2, and a0a_0 is the smallest aa that works.


Now we find a contradiction.

From a02=2b02a_0^2 = 2b_0^2, we know a02a_0^2 is even.

If a02a_0^2 is even, then a0a_0 is even. (We proved this in contrapositive.)

So a0=2ka_0 = 2k for some integer kk.


Substitute back:

(2k)2=2b02(2k)^2 = 2b_0^2

4k2=2b024k^2 = 2b_0^2

2k2=b022k^2 = b_0^2

So b02=2k2b_0^2 = 2k^2.

This means b02b_0^2 is even, so b0b_0 is even.

So b0=2mb_0 = 2m for some integer mm.


Now we have:

b02=2k2(2m)2=2k24m2=2k22m2=k2\begin{aligned} b_0^2 &= 2k^2 \\ (2m)^2 &= 2k^2 \\ 4m^2 &= 2k^2 \\ 2m^2 &= k^2 \end{aligned}

So k2=2m2k^2 = 2m^2.


What did we just find?

We found a new pair: kk and mm, where k2=2m2k^2 = 2m^2.

But k<a0k < a_0 (since a0=2ka_0 = 2k).

So kk is a smaller positive integer that satisfies a2=2b2a^2 = 2b^2.

But we said a0a_0 was the smallest. Contradiction.


Conclusion:

There is no smallest aa where a2=2b2a^2 = 2b^2.

By well-ordering, if such aa values existed, there would be a smallest.

So no such aa exists at all.

Therefore 2\sqrt{2} is irrational.


The Technique: Infinite Descent

This proof technique is called infinite descent. Fermat invented it.

The pattern:

  1. Assume a solution exists
  2. Find the smallest solution (well-ordering)
  3. Construct an even smaller solution
  4. Contradiction — so no solution exists

If you can always go smaller, but there must be a smallest, then nothing exists.


Well-Ordering vs Induction

They’re actually equivalent — two ways of thinking about the same thing.

InductionWell-Ordering
Build up from the base caseAssume failure, find smallest failure
“If it works for kk, it works for k+1k+1“The smallest failure can’t exist”
Constructive: prove it worksContradiction: prove failure is impossible

Both are valid. Sometimes one is easier to think about than the other.