Summary (Overview)
- Main result: The paper confirms the Burris-Yeats conjecture that the smallest countermodels to Wilkie's identity (an identity valid over positive integers but not derivable from Tarski's high school axioms) have exactly 12 elements.
- Enumeration: The authors prove there are exactly countermodels of size 12 up to isomorphism, providing a complete classification via a template with independent parameters.
- SAT approach outperforms dedicated tools: The lower bound (no countermodels of size ≤ 11) is established in ~10 minutes, while a 12-element countermodel is found in ~50 minutes—dramatically faster than prior approaches using Mace4 and SEM which required weeks/months.
- Formal verification: The authors use autoformalization with ChatGPT 5.5 Pro to generate a Lean formalization, proving the correctness of their main result with a verified LRAT certificate.
- Key techniques: The success relies on symmetry-breaking constraints (lex-leader), auxiliary variables to reduce encoding size, and problem-specific lemmas from prior literature.
Introduction and Theoretical Foundation
Tarski's High School Algebra Problem asks whether every true identity about addition, multiplication, and exponentiation of positive integers follows from 11 elementary axioms:
Wilkie's Identity (1981) is valid over but does NOT follow from HSI axioms:
The identity holds because and , but subtraction is not in the language, so this reasoning cannot be carried out within the axiomatic system.
Historical bounds: Gurevič (1985) found the first countermodel of size 59; Burris and Yeats (2004) reduced the upper bound to 12; Zhang (2005) proved a lower bound of 11. These bounds are summarized in Table 1.
| Author(s) | Upper Bound | Lower Bound | Year |
|---|---|---|---|
| R. Gurevič | 59 | 1985 | |
| S. Burris | 28 | 1988 | |
| R. Gurevič | 33 | 1990 | |
| S. Burris | 16 | 1990 | |
| S. Lee | 15 | 1991 | |
| S. Burris and S. Lee | 15 | 7 | 1992 |
| J. Zhang and H. Zhang | 9 | 1995 | |
| M. Jackson | 14 | 8 | 1996 |
| S. Burris and K. Yeats | 13 | 2001 | |
| S. Burris and K. Yeats | 12 | 2001 | |
| J. Zhang | 11 | 2005 | |
| Subercaseaux & Przybocki | 12 | 2026 |
Methodology
SAT Encoding of HSI Algebras
The authors encode the existence of an HSI algebra of size as a CNF formula. Elements are identified with , with variables:
- : (only for due to commutativity)
- : (only for )
- : (all )
Functionality constraints (each operation must yield exactly one result):
Key optimization: Instead of the naïve encoding for associativity (HSI 2), the authors introduce auxiliary variables representing whether or , reducing to clauses.
Encoding Wilkie's Identity Negation
The authors fix the failing pair to be without loss of generality (justified by Lemma 4.1 ensuring 1, a, b, 1+1, 1+1+1 are all distinct). They build variables for each subexpression of LHS and RHS, culminating in:
Additional Constraints
Key lemmas incorporated to speed up search:
- Lemma 4.1: Elements are all distinct
- Lemma 4.2: 16 inequalities (e.g., , , etc.)
- Lemma 4.3: Non-divisibility conditions , , , where , , ,
- Lemma 4.4: for integers
Symmetry Breaking
Lex-leader constraints enforce that for each pair of indistinguishable elements with :
Empirical Validation / Results
Experimental Performance
The full formula was solved with Kissat 4.0.4 on a MacBook Pro M5:
| n | #variables | #clauses | outcome | runtime [s] |
|---|---|---|---|---|
| 7 | 10,581 | 404,292 | UNSAT | 1.38 |
| 8 | 18,571 | 819,202 | UNSAT | 1.79 |
| 9 | 30,921 | 1,540,377 | UNSAT | 7.45 |
| 10 | 49,110 | 2,726,169 | UNSAT | 65.84 |
| 11 | 74,845 | 4,589,476 | UNSAT | 626.52 |
| 12 | 110,061 | 7,409,052 | SAT | 3,053.55 |
Without symmetry breaking, the formula performs significantly worse (e.g., n=10 takes 1,843.52s vs 65.84s), confirming the importance of lex-leader constraints.
Lean Verification
The authors generated a DRAT proof (368 MB, verified in 3,781s) and converted it to LRAT (2.2 GB, imported in 757s via LRAT-Catcher). They formalized the entire encoding in Lean, proving:
theorem no_generalCountermodel_of_order_le_eleven {n : Nat} (hn : n ≤ 11) :
¬ ∃ A, GeneralCountermodel n A
Classification of 12-Element Countermodels
The classification consists of:
- Addition table: 3 options for α-parameters × independent choices for β-parameters = 768 possibilities
- Multiplication table: Fixed, no free parameters
- Exponentiation table: 3 options for γ-parameters × choices for δ-parameters × 16 choices for ε-parameters = 11,664 possibilities
Total: models, all non-isomorphic.
Theoretical and Practical Implications
-
Resolution of the Burris-Yeats conjecture: The smallest countermodels to Wilkie's identity have exactly 12 elements, confirming the conjecture from 2004.
-
Methodological contributions: The paper demonstrates that modern SAT solvers with proper symmetry breaking and encoding optimizations dramatically outperform dedicated finite model finders (Mace4, SEM) for this class of problems. Zhang's claim that "SAT-based tools are not so advantageous" is directly refuted.
-
Formal verification pipeline: The paper showcases a workflow combining autoformalization (via ChatGPT), SAT solving, and interactive theorem proving (Lean) to produce fully verified mathematical results—addressing concerns about the trustworthiness of computational proofs.
-
New mathematical insights: The classification enables deriving new results, e.g., showing there are exactly countermodels to a univariate identity obtained by substituting , and confirming Gurevič's conjecture about the minimality of the identity with by finding a 13-element countermodel.
Conclusion
The paper establishes that the smallest HSI algebras in which Wilkie's identity fails have exactly 12 elements, confirming the Burris-Yeats conjecture, and provides a complete classification of the such algebras up to isomorphism. The SAT-based approach, enhanced with lex-leader symmetry breaking and auxiliary variables, outperforms dedicated finite model finders by orders of magnitude, and the results are formally verified in Lean.
Open questions:
- Question 1: What is the smallest for which there exists an HSI algebra of order that does not satisfy ALL identities valid over ? The best published lower bound is 3 (Asa04), with 12 as the current upper bound.
- The authors suggest their techniques could be applied to other algebraic problems, such as the equational theories project's open implication question about magmas.
Related papers
- AI4AI-Bench: Benchmarking LLM Agents in Algorithmic Design for Recursive Self-Improvement
AI4AI-Bench shows LLM agents rarely improve training algorithms, scoring 0.166 on average, yet algorithmic changes yield the largest performance gains.
- Beyond Geometric Complementarity: Coherent Overlap in Sparse Mixture-of-Experts Routing
Sparse MoE routing works through coherent overlap, not geometric complementarity, as selected experts share subspaces yet still improve prediction, making geometric similarity alone insufficient for pruning decisions.
- Quantifying Hyperparameter Transfer and the Importance of Embedding Layer Learning Rate
Setting the embedding layer learning rate to Θ(1) instead of Θ(1/n) lets standard parameterization match μP's hyperparameter transfer quality in Transformers, making the full μP prescription unnecessary.