A prime in every short interval above 1.1 * 10^10 (Ramare-Saouter)
OpenTaoFivePrimes.prime_in_short_intervalFor every real there is a prime with ; that is, the interval always contains a prime.
This is Theorem 8.1 of Tao's paper, quoted from Ramar'e and Saouter. Combined with the Goldbach verification (Theorem 1.6) it settles the five-prime claim for all odd numbers up to , which is what reduces the main theorem to the range handled by the circle method.
The Ramar'e-Saouter proof itself depends on the numerical verification of the Riemann hypothesis recorded in Theorem 1.5, so this milestone is not independent of it.
import Mathlib
namespace TaoFivePrimes
theorem prime_in_short_interval (x : ℝ) (hx : 1.1 * 10 ^ 10 ≤ x) :
∃ p : ℕ, p.Prime ∧ (p : ℝ) ≤ x ∧ x - p ≤ x / (2.8 * 10 ^ 7) := by
sorry
end TaoFivePrimesRead-back
What the Lean code literally says, in plain math · claude-opus-5
The statement fixes one explicit real variable , subject to the single hypothesis
where the left-hand side is the real number (a real numeric literal multiplied by the real power ). There are no other hypotheses, no implicit arguments, and no typeclass assumptions. The hypothesis is satisfiable — every real meets it — so the claim is not vacuous, and note that ranges over all such reals, not merely integers; is bounded below but not above.
Under that hypothesis the claim is a plain existence assertion (existence only, not uniqueness): there exists a natural number such that all three of the following hold simultaneously.
- is prime in the sense of (so in particular , ruling out and ).
- Viewing as a real number via the canonical cast , , a non-strict inequality, so is permitted when happens to be a prime integer.
- The gap between and , computed as real subtraction (not truncated natural subtraction, so it may in principle be negative, though the previous item forces it to be ), satisfies
again non-strict, where the denominator is the real number . This is ordinary real division by a nonzero constant, so no division-by-zero junk value arises.
Combining the last two items, the two inequalities together say exactly that lies in the closed real interval
an interval of length , which under the hypothesis is at least and grows proportionally with . Nothing asserts that is the largest prime not exceeding , that is unique, that there is more than one such prime, or anything about primes above ; the assertion is only that at least one prime falls in that interval below . The bound is relative (a fixed fraction of ) rather than an absolute gap, and the statement is a single implication from the lower bound on to that existence claim, with no converse direction claimed.
Confirmed by the mission captain (proposal self-audit).