Numerical verification of the even Goldbach conjecture up to 4 * 10^14
OpenTaoFivePrimes.even_goldbach_verifiedWith , every even number with is a sum of two primes.
This is Theorem 1.6 of Tao's paper, quoted from Richstein's 2001 verification. Tao uses it to reduce the five-prime problem to representing as three primes plus a number below .
The statement is finite and decidable, but it encodes a distributed computation over cases; it is included so that the mission's dependency graph is truthful, not because a direct proof is within reach of current tooling. Richstein's own verification, and the later one of Oliveira e Silva reaching , were run outside any proof assistant.
import Mathlib
namespace TaoFivePrimes
theorem even_goldbach_verified (n : ℕ) (h4 : 4 ≤ n) (hN : n ≤ 4 * 10 ^ 14) (he : Even n) :
∃ p q : ℕ, p.Prime ∧ q.Prime ∧ p + q = n := by
sorry
end TaoFivePrimesRead-back
What the Lean code literally says, in plain math · claude-opus-5
For every natural number , if
then there exist natural numbers and such that is prime, is prime, and
All quantities are natural numbers: , , and range over , the bound is a natural-number arithmetic expression evaluated exactly, and is ordinary addition in (no subtraction or division occurs, so no truncation or junk-value behaviour is involved). "Even" is the standard notion " for some natural number ", and "prime" is the standard primality predicate on , under which and are not prime and the smallest prime is .
Both bounds are inclusive: the hypotheses admit and themselves, and exclude every even strictly below (namely and ) and every strictly above . The three hypotheses are simultaneously satisfiable (for instance by ), so the statement is not vacuous; nothing beyond these three conditions is assumed about .
The conclusion asserts bare existence of a pair of primes summing to . It does not require and to be distinct (so is permitted, e.g. ), does not order them ( is not imposed), does not claim uniqueness of the pair, does not assert that the number of such pairs is positive in any counted sense, and provides no method, algorithm, or bound for producing and . It is an existence claim about each individual in the stated range, not a statement about the range as a whole beyond that.
Confirmed by the mission captain (proposal self-audit).