Teaching Kids Programming: Videos on Data Structures and Algorithms
How to Prove √2 Is Irrational — Two Methods (Proof by Contradiction & Geometric Infinite Descent)
Introduction
The statement “√2 is irrational” means there are no integers
Method 1 — Proof by Contradiction
Assume, for contradiction, that
Squaring both sides gives:
From
Substitute back:
Thus
Therefore both
Method 2 — Geometric Infinite Descent (Median / Perpendicular Construction) geometric construction and argument
Consider an isosceles right triangle
Let
Then
The crucial point is similarity (a fixed scale), not literal subtraction of whole sides. The small triangle is a constant fraction of the original.
From the
Then
Hence every time you repeat the same construction (take the midpoint of a triangle leg and draw the perpendicular to the hypotenuse), you obtain a new isosceles right triangle similar to the original with all side lengths multiplied by a factor
This produces the infinite-descent contradiction in the integer setting: if you started with integer side lengths satisfying
Conclusion
Both methods prove that
- Method 1 (proof by contradiction) uses parity to show any assumed fraction in lowest terms leads to both numerator and denominator being even.
- Method 2 (geometric infinite descent) uses a similarity construction inside an isosceles right triangle to produce a smaller integer solution, contradicting minimality.
Either argument gives a clear, rigorous proof that
Last Post: Turn Your Raspberry Pi into a Family Network Drive: 2TB WD Hard Drive Setup for Kids’ Macs
Next Post: Detecting Compile-time vs Runtime in C++: if consteval vs std::is_constant_evaluated()