Euclid's Theorems — Definition, Formula & Examples
Euclid's theorems are a collection of foundational results attributed to the ancient Greek mathematician Euclid, most notably the proof that there are infinitely many prime numbers and the algorithm for finding the greatest common divisor of two integers.
Among the principal results: (1) The Infinitude of Primes — for any finite list of primes , the number is not divisible by any , so at least one additional prime must exist. (2) The Division Algorithm — for integers and , there exist unique integers and with and . (3) Euclid's Lemma — if a prime divides , then or .
How It Works
The proof that primes are infinite works by contradiction. Assume only finitely many primes exist, multiply them all together, and add 1. The resulting number leaves remainder 1 when divided by every prime on the list, so it must have a prime factor not on the list — a contradiction. The Euclidean algorithm uses repeated division to find the GCD: divide the larger number by the smaller, replace the larger with the remainder, and repeat until the remainder is 0. The last nonzero remainder is the GCD.
Worked Example
Problem: Use the Euclidean algorithm to find GCD(252, 105).
Step 1: Divide 252 by 105.
Step 2: Divide 105 by the remainder 42.
Step 3: Divide 42 by the remainder 21.
Answer: The last nonzero remainder is 21, so GCD(252, 105) = 21.
Why It Matters
Euclid's theorem on the infinitude of primes is a cornerstone of number theory and underpins modern cryptography, including RSA encryption. The Euclidean algorithm is one of the oldest known algorithms still in active use — it appears in computer science courses, competition math, and whenever you need to simplify fractions or solve modular equations.
Common Mistakes
Mistake: Assuming that is itself always prime.
Correction: The proof only guarantees this product-plus-one has a prime factor not already on the list. For example, , which is composite.
