This repository gives a proof and reproducible finite verification for an extension of Theorem D in Claude's paper More Than Two Thirds of the Zeros of the Riemann Zeta Function Lie on the Critical Line.
Proof (PDF) · LaTeX source · Verifier
Let
Anthropic's Theorem D proves
The additional argument in this repository gives two explicit improvements:
| Argument | Certified inequality | Lower bound |
|---|---|---|
| 3 consecutive zeros | 67.2519767% | |
| 7 consecutive zeros | six-variable bound |
67.3008528% |
Both use the analytic estimates and the optimized test family from the Anthropic paper.
The rank–trace step in the paper uses the rank, inertia, and two traces of a Hermitian matrix. Its equality case permits the vectors associated with simple zeros to be mutually orthogonal. For the vectors produced by the optimized test family, however, each inner product is determined by the difference between two zero ordinates.
The proof keeps this extra information through a stability refinement of the rank–trace inequality.
If the consecutive gaps are
Seven consecutive zeros have 21 pairwise differences determined by six gaps. The verifier proves a weighted lower bound for all six nonnegative gaps using Arb interval arithmetic and exhaustive subdivision. Averaging this estimate over consecutive blocks yields the 67.3008528% bound.
The full proof is in paper/riemann.pdf.
docs/proof.md is a shorter web outline.
| Component | Contents |
|---|---|
paper/riemann.pdf (source) |
Full proof and exact constants |
| Anthropic paper and Lean artifact | Theorem D, the optimized test family, the zero-side decomposition, and the prime-side trace estimates |
docs/proof.md |
Short web outline of the argument |
docs/verifier.md |
Interval enclosures, subdivision algorithms, and trust base |
src/ |
Verifier source |
certificates/three-point.txt |
Recorded 3-point verification |
certificates/seven-point.txt |
Recorded 7-point verification |
The verifier checks the two finite inequalities used by the new argument. It reconstructs every transcendental enclosure from the formulas on each run.
Python 3.9 or later is required.
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -e .
# Fast 3-point verification
zeta-zero-verify three
# Exhaustive 7-point verification; allow a few minutes
zeta-zero-verify seven --progress-every 1000000Run the tests with:
python3 -m unittest discover -s tests -vResearch draft generated by GPT-5.6 Sol. Independent verification and peer review are welcome.
MIT