2026-08-11
Published in Nature, DeepMind's AlphaProof is a 3B-parameter network that learns formal Lean proofs by RL over about 80M auto-formalized problems, scoring 28/42 (silver-medal level) at IMO 2024.
LLMs write more math than ever, but a natural-language proof cannot be machine-checked, so correctness is a human judgment call and RL gets no clean signal. Formal languages like Lean verify proofs automatically, and RL is a mechanism for learning in a verifiable environment. The question this paper (published in Nature, November 2025) asks is whether the AlphaZero recipe of policy-value networks, self-play, and search transfers to formal mathematical proof at the olympiad level. The scorecard is the 2024 International Mathematical Olympiad (IMO): AlphaProof solved three of the five non-geometry problems, and with AlphaGeometry 2 taking the geometry problem, the combined system scored 4/6 and 28 points, in the silver-medal band and one point short of gold. It is the first AI system to reach medal level at the IMO.
AlphaProof casts proving in Lean as a sequential RL problem it calls the Lean environment: the state is the current Lean tactic state (all hypotheses and open goals), an action is one tactic, each step costs reward negative one to encourage short proofs, and the agent maximizes cumulative return. The pieces:
State-of-the-art across the formal benchmarks (miniF2F, formal-imo, PutnamBench-test), competitive even at just 2 TPU-minutes of search per problem and especially strong on PutnamBench-test. formal-imo is a newly curated set of 258 non-geometry historical IMO problems (107 algebra, 77 combinatorics, 74 number theory). The IMO 2024 breakdown:
| Problem | Solved by | Result |
| P1, P2, P6 | AlphaProof | Full marks (judged by Timothy Gowers and Joseph Myers under IMO rules) |
| P4 (geometry) | AlphaGeometry 2 | Solved |
| P3, P5 | n/a | Not solved |
The total is 4/6 and 28/42, silver-medal band, one point below the gold line. Two caveats matter: the model was frozen before the competition and the proofs were scored by independent experts under official rules, so this is not self-grading; and each AlphaProof problem took days of compute, far beyond a human contestant's 4.5 hours. For answer-style problems the system generated k=500 candidate answers, hit the correct one in every applicable case, and AlphaProof filtered them in a low-compute refutation mode.
This is the first AI system to score at medal level at the IMO, and it shows that learning from grounded, verifiable self-experience generalizes from games to mathematical reasoning. For practitioners, the real signal is that formal languages give RL a clean 0/1 truth reward, sidestepping the old problem that natural-language proofs cannot be auto-judged; TTRL is a concrete recipe that trades compute for per-problem depth, using variants plus specialized training to crack problems a general model cannot. The article is open access (CC BY 4.0), and the corrected miniF2F and the formal-imo benchmark are released.
The authors are candid. The compute floor is enormous: about 80,000 TPU-days for the main loop and about 100,000 TPU-days for auto-formalization, a scale that puts the bespoke learning phase out of reach for most academic groups. TTRL takes days of inference per hard problem, so speed is a real constraint. The capability is also bounded: results sit within advanced high-school and undergraduate competition math on a fixed, known concept library with thematic consistency, and generalizing to open research-level math is a considerable next step. Geometry could not even be stated in Lean at the time because of gaps in Mathlib's higher-level geometry library (incircles, congruence), so it went to the separate AlphaGeometry 2. Finally, auto-formalization is the foundation of the whole pipeline, and its 33.3% pass@1 on combinatorics means that error directly caps what can be proved.