Bertrand's Postulate
Statement
Bertrand's postulate (proved by Chebyshev in 1852): for every positive integer there exists a prime satisfying
Equivalently, the gap between consecutive primes never exceeds the smaller prime: for all .
Visualization
For each from to , the smallest prime in the interval :
| Interval | Prime | |
|---|---|---|
| 1 | 2 | |
| 2 | 3 | |
| 3 | 5 | |
| 4 | 5 | |
| 5 | 7 | |
| 6 | 7 | |
| 7 | 11 | |
| 8 | 11 | |
| 9 | 11 | |
| 10 | 11 | |
| 11 | 13 | |
| 12 | 13 | |
| 13 | 17 | |
| 14 | 17 | |
| 15 | 17 | |
| 16 | 17 | |
| 17 | 19 | |
| 18 | 19 | |
| 19 | 23 | |
| 20 | 23 |
Proof Sketch
Chebyshev's proof uses the central binomial coefficient .
- Lower bound. grows exponentially.
- Upper bound without Bertrand. If no prime lies in , every prime power in the factorisation of is at most . Using estimates on how many times each prime divides (each at most times, each prime divides exactly once, and so on), one obtains an upper bound.
- Contradiction. For large , the lower bound exceeds the upper bound. Small cases () are verified by exhibiting explicit primes: each lie in the required interval.
Connections
The postulate gives a lower bound on the Prime Counting Function π(n)Prime Counting Function π(n)π(n) counts primes up to n and satisfies π(n) ~ n/ln(n) by the Prime Number TheoremRead more →: for all . It is also used to prove Chebyshev's Bounds for π(n)Chebyshev's Bounds for π(n)The prime counting function satisfies c₁·n/ln(n) ≤ π(n) ≤ c₂·n/ln(n) for explicit constantsRead more →: iterating Bertrand gives .
Lean4 Proof
import Mathlib.NumberTheory.Bertrand
/-- Bertrand's postulate: for every positive n, there is a prime p with n < p ≤ 2n.
Direct alias of `Nat.exists_prime_lt_and_le_two_mul` in Mathlib. -/
theorem bertrand (n : ℕ) (hn : n ≠ 0) :
∃ p, Nat.Prime p ∧ n < p ∧ p ≤ 2 * n :=
Nat.exists_prime_lt_and_le_two_mul n hn
/-- Concrete instance: there is a prime p with 10 < p ≤ 20. -/
theorem bertrand_10 : ∃ p, Nat.Prime p ∧ 10 < p ∧ p ≤ 20 :=
⟨11, by norm_num, by norm_num, by norm_num⟩Referenced by
- Prime Counting Function π(n)Number Theory
- Chebyshev's Bounds for π(n)Number Theory
- Chebyshev's Bounds for π(n)Number Theory