Skip to main content

ax-prover

A minimal agent for automated theorem proving in Lean 4

CI Python 3.11+ License: AGPL-3.0 PyPI version arXiv

A simple, modular agent that proves Lean 4 theorems through iterative refinement. It uses off-the-shelf LLMs (no fine-tuning) with a feedback loop, a memory system, and library search tools to achieve competitive results against highly-engineered systems that rely on specialized training and orders of magnitude more compute.

Key Results

Benchmark AxProverBase Best Comparable
PutnamBench 54.7% (pass@1) 13.0% (Goedel V2, pass@184)
FATE-M 98.0% 62.7% (DeepSeek V2, pass@64)
FATE-H 66.0% 3.0% (DeepSeek V2)
FATE-X 24.0% 0.0% (all others)
LeanCat 59.0% 14.0% (Gemini 3 Pro)

All results with Claude Opus 4.5, 50 iterations, pass@1. See our paper for full details and comparisons.

How It Works

ax-prover architecture

The agent runs an iterative loop:

  1. Proposer — An LLM writes Lean 4 proof code, optionally using tools (LeanSearch, web search) to find relevant Mathlib lemmas
  2. Compiler — Builds the code with lake; extracts goal states at sorry locations to provide structured feedback
  3. Reviewer — Verifies statement preservation and proof validity (no sorry, no cheating tactics)
  4. Memory — Summarizes lessons from failed attempts into a concise "lab notebook" to prevent repeating mistakes

The loop continues until the proof is complete or the iteration budget is exhausted (default: 50).

Quick Start

pip install ax-prover
# Configure your API keys
ax-prover configure

# Navigate to a Lean 4 project
cd /path/to/lean4-project

# Prove a theorem
ax-prover prove MyModule:my_theorem

Installation

pip install ax-prover
# or
uv add ax-prover

# For development (includes ruff, pytest, pre-commit)
pip install -e ".[dev]"
Prerequisites
  • Python 3.11+
  • Lean 4 with lake available on PATH (installation guide)
  • LLM API key — at least one of:
    • ANTHROPIC_API_KEY (recommended — Claude Opus 4.5 gives best results)
    • OPENAI_API_KEY
    • GOOGLE_API_KEY
  • Tavily API key (optional, for web search) — TAVILY_API_KEY

Set up your API keys interactively:

ax-prover configure

Or export them directly in your shell:

export ANTHROPIC_API_KEY=sk-ant-...

Usage

Proving theorems

# Prove a specific theorem by module path
ax-prover prove MyModule.Path:theorem_name

# Prove a specific theorem by file path
ax-prover prove MyProject/Algebra/Ring.lean:theorem_name

# Prove the theorem at a specific line
ax-prover prove MyProject/Algebra/Ring.lean#L42

# Prove all unproven theorems in a file
ax-prover prove MyProject/Algebra/Ring.lean

# Skip lake build (if repo is already built)
ax-prover prove MyModule:theorem_name --skip-build

# Save JSON output to file (for scripting/automation)
ax-prover prove MyModule:theorem_name -o result.json

Running experiments

Run batch evaluations on LangSmith datasets:

# Run experiment on a dataset
ax-prover experiment dataset_name

# With custom concurrency
ax-prover experiment dataset_name --max-concurrency 8
Configuration

Customize behavior with YAML config files and CLI overrides:

# my_config.yaml
prover:
  max_iterations: 75
  prover_llm:
    model: "anthropic:claude-opus-4-20250514"
    temperature: 0.5
    thinking:
      type: enabled
      budget_tokens: 32000
# Use a config file
ax-prover --config my_config.yaml prove MyModule:theorem

# Override values from the CLI
ax-prover prove MyModule:theorem prover.max_iterations=100

# Save your current configuration for later reuse
ax-prover --save-config my_setup prove MyModule:theorem

Contributing

We welcome contributions of all kinds — bug reports, feature requests, documentation, and code. See our Contributing Guide to get started.

License

This project is licensed under the AGPL-3.0.

Citation

If you use ax-prover in your research, please cite:

@article{axproverbase2026,
  title={A Minimal Agent for Automated Theorem Proving},
  author={Requena Pozo, Borja and Letson, Austin and Nowakowski, Krystian and Beltran Ferreiro, Izan and Sarra, Leopoldo},
  year={2026},
  eprint={2602.24273},
  archivePrefix={arXiv},
  url={https://arxiv.org/abs/2602.24273}
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ax_prover-0.2.0.tar.gz (549.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ax_prover-0.2.0-py3-none-any.whl (81.4 kB view details)

Uploaded Python 3

File details

Details for the file ax_prover-0.2.0.tar.gz.

File metadata

  • Download URL: ax_prover-0.2.0.tar.gz
  • Upload date:
  • Size: 549.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ax_prover-0.2.0.tar.gz
Algorithm Hash digest
SHA256 0dc8263a8d92abeec37daf22098d9a8ca4068070a985220076ac9994b3d86a56
MD5 89057443e2580d2ef66d38415f478ef4
BLAKE2b-256 263047fcb6b6511eae220fcec0cdce2ea09ade91d9120fd85d1e84144e0db558

See more details on using hashes here.

Provenance

The following attestation bundles were made for ax_prover-0.2.0.tar.gz:

Publisher: publish.yml on Axiomatic-AI/ax-prover-base

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ax_prover-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: ax_prover-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 81.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for ax_prover-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5cd8171befd309881eea16d827b9f0e8a248158ec1981f6636250e0b1b5ac732
MD5 4517c9ebcbe33072377db5744c199595
BLAKE2b-256 4c532aa5f98ee33b8add9fbc4ae523f1c7518d988af70c0488cf9019c6138253

See more details on using hashes here.

Provenance

The following attestation bundles were made for ax_prover-0.2.0-py3-none-any.whl:

Publisher: publish.yml on Axiomatic-AI/ax-prover-base

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

0.1.1

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page