yangzhch6 / Automatic-Theorem-Proving-Papers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Automatic Theorem Proving Papers

Proof Assistant

  1. MetaMath
    Metamath is based on a single substitution rule. In Metamath, each theorem is proved sequentially. The original theorem to be proved is first formalized as a goal. At each step of the proof process, a goal or subgoal is converted into other subgoals by a proof step which is formed by the simple substitution rule. Sometimes more than one subgoal is decomposed from a single goal, so the proof path is often tree-structured. When all of the subgoal reaches the very bottom of the metamath formal system (axioms of logic and set theory—the starting point for all of mathematics), the theorem is proved.
  2. Lean
  3. Isabelle

Proof Procedural

A proof step in proof assistant can be formalized as:

goal -> tatic -> [subgoals]

Here, the goal can be a theorem or just an intermediate step in the proof process. The tatic is a step/mechanism that, with the help of proof assistant, the current goal will be decomposed into subgoal(s). If there is no subgoal to be generated, then the current goal is successfully proven (In Metamath, a tatic is composed of a theorem and its correspoding substitution).

For a theorem, it self will be considered as a root goal in the proof assistant, our ultimate destination is to repeat the above proof step until all decomposed subgoals to be proven.

For Automatic Theorem Proving (ATP), we need to achieve an AI to automatically generate tatics for each given goal, and design an efficient search algorithm to quickly reach the end of the proof.

Paper List

  1. Generative Language Modeling For Automated Theorem Proving [paper]
  2. miniF2F: A Cross-System Benchmark for Formal Olympiad-level Mathematics [paper]
  3. Proof Artifact Co-Training For Theorem Proving With Language Models [paper]
  4. Formal Mathematics Statement Curriculum Learning [paper]
  5. HyperTree Proof Search for Neural Theorem Proving [paper]
  6. Draft, Sketch, and Prove: Guiding Formal Theorem Provers with Informal Proofs [paper]

Resources

  1. A Course of Dependent Type Theory [link]

About