๐ค AI Summary
This work presents the first complete formalization of Wolstenholmeโs theorem in Lean 4, establishing that for any prime \( p \geq 5 \), the congruence \( \binom{2p}{p} \equiv 2 \pmod{p^3} \) holds. The proof proceeds by expanding the shifted factorial product up to terms of order \( p^2 \), identifying its quadratic coefficient as the second elementary symmetric polynomial, and demonstrating that this coefficient is divisible by \( p \) using the fact that power sums vanish modulo \( p \). Built entirely on the Mathlib library without any unproven assumptions (i.e., no `sorry`), the formalization comprises nine lemmas and approximately 800 lines of code. It leverages a combination of relational analogy reasoning and human-guided exploration to uncover the critical proof pathway, marking the first fully verified formalization of this classical number-theoretic result in an interactive theorem prover.
๐ Abstract
We present a formal verification of Wolstenholme's theorem -- $\binom{2p}{p} \equiv 2 \pmod{p^3}$ for prime $p \geq 5$ -- in Lean~4 with Mathlib. The proof proceeds by expanding the shifted factorial product $\prod_{k=1}^{p-1}(p+k)$ to second order in $p$, identifying the quadratic coefficient as the second elementary symmetric product, and showing its divisibility by $p$ via power sum vanishing in $\mathbb{Z}/p\mathbb{Z}$. The formalization comprises nine lemmas across approximately 800 lines of Lean, with zero \texttt{sorry} declarations. To our knowledge, this is the first formal verification of Wolstenholme's theorem in Lean~4. The proof was discovered through a collaboration between a relational analogy engine for theorem proving and human-directed formalization.