MMLC Runtime 1.0.0

Erdős–Straus Bench v0.2

Five million exact witnesses, and not a proof.

The Erdős–Straus bench is MMLC's first serious application: recover formulas from search certificates, verify them symbolically, lift them to larger moduli, and audit the whole thing. Every number below is finite verification. None of it is a proof of the conjecture, and the report says so first.

The problem

The Erdős–Straus conjecture says that for every integer n ≥ 2 there are positive integers x, y, z with

4/n = 1/x + 1/y + 1/z

A witness is an exact triple. The bench produces witnesses two ways: directly from a periodic formula, or by searching for a factor certificate when no formula covers the residue class.

Results

MeasureValue
Discovery range2 ≤ n ≤ 1,000,000
Streaming verification range2 ≤ n ≤ 5,000,000
Integers tested4,999,999
Exact witnesses4,999,999
Formula witnesses4,952,917
Search witnesses47,082
Invalid witnesses0
Largest observed x offset14, at n = 118,801
Throughput48,648 values of n per second
Unresolved values0

The witness stream hashes to a single value, so the whole 5,000,000-integer run is one comparable object:

text
e13790fe5d7abcbda27a08433c9e42b640b605dda9f828e3e175f52ed602f160

Formula recovery

The interesting result is not the count of witnesses. It is how many search cases became formulas. Same machine, same range, same search budget:

Measurev0.1v0.2
Solved directly by formula978,571990,582
Solved by search21,4289,417
Unresolved00
Elapsed14.619 s11.444 s
established

12,011 of the 21,428 search cases were recovered as direct formula witnesses — a 56.05% reduction in search load, on the same range under the same budget.

The mechanism is a pipeline, not an insight. Cluster the out-of-formula certificates by (x offset, d, a), derive the period, build a candidate formula, verify it symbolically, then lift the modulus.

Candidate selection

Greedy selection over the base modulus 840 chose three candidates on its own, and they matched the formulas already frozen into the runtime exactly.

CandidateObservationsPeriodNew classes mod 840
h=1, d=10, a=791328073, 193
h=1, d=5, a=7867140433, 673
h=1, d=20, a=7740280313, 793
established

selection_matches_runtime = true. The automatic selector and the frozen library agreed without being told to.

The coverage ladder

Adding prime certificates at q = 11, 17, 23 required lifting the modulus, because their periods 44, 68 and 92 do not divide 840.

StageModulusCoveredUncoveredRatio
v0.1 formula library8408221897.857143%
add h=1, d=5,10,208408281298.571429%
add q=119,2409,13210898.831169%
add q=17157,080155,4601,62098.968678%
add q=233,612,8403,578,82034,02099.058359%
declared

Uncovered counts across different moduli are not comparable. The bench stores the before-and-after marginal coverage at each lift under the same new modulus, precisely so the rising uncovered column cannot be read as regression.

Symbolic verification

Each valid residue class inside a formula's period is expanded into its own symbolic case, rather than verifying the abstract identity once and waving at the integrality conditions.

MeasureResult
Formula families14
Symbolic cases32
Zero symbolic residual32 / 32
MMLC symbolic ledger statusPASS
Substitution scenarios4
Symbolic–numeric exchange cells640
Exchange failures0

The tolerance negative control

This is the most useful thing the bench found, and it is about MMLC rather than about number theory.

A deliberately tampered witness at n = 4565 — z shifted to z+1 — produces an exact residual that is tiny but not zero. Under numeric_tolerance = 1e-12, the audit missed it. Under the exact profile, it was caught every time.

established

For pure-mathematics ledgers the numeric tolerance must be exactly 0. A tolerance that is merely small is a false-negative generator, and the bench keeps the failing case as a permanent negative control.

Alongside it: 256 clean witnesses all passed, 32 zz+1 tampers were located with precision and recall 1.0, and 32 signed-residual cases summed to zero globally while every local error was still found.

What this is not

  • Zero unresolved values up to 5,000,000a proof for all integers
  • Coverage density inside a lifted modulusa natural-density proof, or the truth of the conjecture
  • A residue class the formulas do not covera counterexample — a search certificate may still exist
  • A recovered formulaa claim of first appearance in the mathematical literature
  • An exhausted search budgeta counterexample — it reports UNRESOLVED UNDER BUDGET

The discovery range and the verification range are kept separate. That is not a statistically independent test set; it only prevents the formula library from being edited mid-scan while the results are being watched.

Next

After the v0.2 library was frozen, the 12 remaining search classes mod 840 in the five-million range fall into three groups by factor:

FactorClasses mod 840
d = 13121, 289, 481, 649
d = 261, 169, 601, 769
d = 52241, 361, 409, 529

All three need a lift to modulus 10,920. That is the priority research node for v0.3, and until it is done none of those classes can be claimed as covered.

The methodology document is explicit about the remaining formal gap: the period conditions are program-internal period certificates. A formal proof still requires porting the divisibility and congruence conditions to Lean or Coq.