Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Automated theorem proving

From Wikipedia, the free encyclopedia
(Redirected fromList of theorem provers)
Subfield of automated reasoning and mathematical logic

Automated theorem proving (also known asATP orautomated deduction) is a subfield ofautomated reasoning andmathematical logic dealing with provingmathematical theorems bycomputer programs. Automated reasoning overmathematical proof was a major motivating factor for the development ofcomputer science.

Logical foundations

[edit]

While the roots of formalizedlogic go back toAristotle, the end of the 19th and early 20th centuries saw the development of modern logic and formalized mathematics.Frege'sBegriffsschrift (1879) introduced both a completepropositional calculus and what is essentially modernpredicate logic.[1] HisFoundations of Arithmetic, published in 1884,[2] expressed (parts of) mathematics in formal logic. This approach was continued byRussell andWhitehead in their influentialPrincipia Mathematica, first published 1910–1913,[3] and with a revised second edition in 1927.[4] Russell and Whitehead thought they could derive all mathematical truth usingaxioms andinference rules of formal logic, in principle opening up the process to automation. In 1920,Thoralf Skolem simplified a previous result byLeopold Löwenheim, leading to theLöwenheim–Skolem theorem and, in 1930, to the notion of aHerbrand universe and aHerbrand interpretation that allowed(un)satisfiability of first-order formulas (and hence thevalidity of a theorem) to be reduced to (potentially infinitely many) propositional satisfiability problems.[5]

In 1929,Mojżesz Presburger showed that thefirst-order theory of thenatural numbers with addition and equality (now calledPresburger arithmetic in his honor) isdecidable and gave an algorithm that could determine if a givensentence in thelanguage was true or false.[6][7]

However, shortly after this positive result,Kurt Gödel publishedOn Formally Undecidable Propositions of Principia Mathematica and Related Systems (1931), showing that in any sufficiently strong axiomatic system, there are true statements that cannot be proved in the system. This topic was further developed in the 1930s byAlonzo Church andAlan Turing, who on the one hand gave two independent but equivalent definitions ofcomputability, and on the other gave concrete examples ofundecidable questions.

First implementations

[edit]

In 1954,Martin Davis programmed Presburger's algorithm for aJOHNNIACvacuum-tube computer at theInstitute for Advanced Study in Princeton, New Jersey. According to Davis, "Its great triumph was to prove that the sum of two even numbers is even".[7][8] More ambitious was theLogic Theorist in 1956, a deduction system for thepropositional logic of thePrincipia Mathematica, developed byAllen Newell,Herbert A. Simon andJ. C. Shaw. Also running on a JOHNNIAC, the Logic Theorist constructed proofs from a small set of propositional axioms and three deduction rules:modus ponens, (propositional)variable substitution, and the replacement of formulas by their definition. The system usedheuristic guidance, and managed to prove 38 of the first 52 theorems of thePrincipia.[7]

The "heuristic" approach of the Logic Theorist tried to emulate human mathematicians, and could not guarantee that a proof could be found for every valid theorem even in principle. In contrast, other, more systematic algorithms achieved, at least theoretically,completeness for first-order logic. Initial approaches relied on the results ofHerbrand andSkolem to convert a first-order formula into successively larger sets ofpropositional formulae by instantiating variables withterms from theHerbrand universe. The propositional formulas could then be checked for unsatisfiability using a number of methods. Gilmore's program used conversion todisjunctive normal form, a form in which the satisfiability of a formula is obvious.[7][9]

Decidability of the problem

[edit]
This sectiondoes notcite anysources. Please helpimprove this section byadding citations to reliable sources. Unsourced material may be challenged andremoved.(April 2010) (Learn how and when to remove this message)

Depending on the underlying logic, the problem of deciding the validity of a formula varies from trivial to impossible. For the common case ofpropositional logic, the problem is decidable butco-NP-complete, and hence onlyexponential-time algorithms are believed to exist for general proof tasks. For afirst-order predicate calculus,Gödel's completeness theorem states that the theorems (provable statements) are exactly the semantically validwell-formed formulas, so the valid formulas arecomputably enumerable: given unbounded resources, any valid formula can eventually be proven. However,invalid formulas (those that arenot entailed by a given theory), cannot always be recognized.

The above applies to first-order theories, such asPeano arithmetic. However, for a specific model that may be described by a first-order theory, some statements may be true but undecidable in the theory used to describe the model. For example, byGödel's incompleteness theorem, we know that any consistent theory whose axioms are true for the natural numbers cannot prove all first-order statements true for the natural numbers, even if the list of axioms is allowed to be infinite enumerable. It follows that an automated theorem prover will fail to terminate while searching for a proof precisely when the statement being investigated is undecidable in the theory being used, even if it is true in the model of interest. Despite this theoretical limit, in practice, theorem provers can solve many hard problems, even in models that are not fully described by any first-order theory (such as theintegers).

Related problems

[edit]

A simpler, but related, problem isproof verification, where an existing proof for a theorem is certified valid. For this, it is generally required that each individual proof step can be verified by aprimitive recursive function or program, and hence the problem is always decidable.

Since the proofs generated by automated theorem provers are typically very large, the problem ofproof compression is crucial, and various techniques aiming at making the prover's output smaller, and consequently more easily understandable and checkable, have been developed.

Proof assistants require a human user to give hints to the system. Depending on the degree of automation, the prover can essentially be reduced to a proof checker, with the user providing the proof in a formal way, or significant proof tasks can be performed automatically. Interactive provers are used for a variety of tasks, but even fully automatic systems have proved a number of interesting and hard theorems, including at least one that has eluded human mathematicians for a long time, namely theRobbins conjecture.[10][11] However, these successes are sporadic, and work on hard problems usually requires a proficient user.

Another distinction is sometimes drawn between theorem proving and other techniques, where a process is considered to be theorem proving if it consists of a traditional proof, starting with axioms and producing new inference steps using rules of inference. Other techniques would includemodel checking, which, in the simplest case, involves brute-force enumeration of many possible states (although the actual implementation of model checkers requires much cleverness, and does not simply reduce to brute force).

There are hybrid theorem proving systems that use model checking as an inference rule. There are also programs that were written to prove a particular theorem, with a (usually informal) proof that if the program finishes with a certain result, then the theorem is true. A good example of this was the machine-aided proof of thefour color theorem, which was very controversial as the first claimed mathematical proof that was essentially impossible to verify by humans due to the enormous size of the program's calculation (such proofs are callednon-surveyable proofs). Another example of a program-assisted proof is the one that shows that the game ofConnect Four can always be won by the first player.

Applications

[edit]

Commercial use of automated theorem proving is mostly concentrated inintegrated circuit design and verification. Since thePentium FDIV bug, the complicatedfloating point units of modern microprocessors have been designed with extra scrutiny.AMD,Intel and others use automated theorem proving to verify that division and other operations are correctly implemented in their processors.[12]

Other uses of theorem provers includeprogram synthesis, constructing programs that satisfy aformal specification.[13] Automated theorem provers have been integrated withproof assistants, includingIsabelle/HOL.[14]

Applications of theorem provers are also found innatural language processing andformal semantics, where they are used to analyzediscourse representations.[15][16]

First-order theorem proving

[edit]

In the late 1960s agencies funding research in automated deduction began to emphasize the need for practical applications.[citation needed] One of the first fruitful areas was that ofprogram verification whereby first-order theorem provers were applied to the problem of verifying the correctness of computer programs in languages such asPascal,Ada, etc. Notable among early program verification systems was the Stanford Pascal Verifier developed byDavid Luckham atStanford University.[17][18][19] This was based on the Stanford Resolution Prover also developed at Stanford usingJohn Alan Robinson'sresolution principle. This was the first automated deduction system to demonstrate an ability to solve mathematical problems that were announced in theNotices of the American Mathematical Society before solutions were formally published.[citation needed]

First-order theorem proving is one of the most mature subfields of automated theorem proving. The logic is expressive enough to allow the specification of arbitrary problems, often in a reasonably natural and intuitive way. On the other hand, it is still semi-decidable, and a number of sound and complete calculi have been developed, enablingfully automated systems.[20] More expressive logics, such ashigher-order logics, allow the convenient expression of a wider range of problems than first-order logic, but theorem proving for these logics is less well developed.[21][22]

Relationship with SMT

[edit]

There is substantial overlap between first-order automated theorem provers andSMT solvers. Generally, automated theorem provers focus on supporting full first-order logic with quantifiers, whereas SMT solvers focus more on supporting various theories (interpreted predicate symbols). ATPs excel at problems with lots of quantifiers, whereas SMT solvers do well on large problems without quantifiers.[23] The line is blurry enough that some ATPs participate in SMT-COMP, while some SMT solvers participate inCASC.[24]

Benchmarks, competitions, and sources

[edit]

The quality of implemented systems has benefited from the existence of a large library of standardbenchmark examples—theThousands of Problems for Theorem Provers (TPTP) Problem Library[25]—as well as from theCADE ATP System Competition (CASC), a yearly competition of first-order systems for many important classes of first-order problems.

Some important systems (all have won at least one CASC competition division) are listed below.

The Theorem Prover Museum[27] is an initiative to conserve the sources of theorem prover systems for future analysis, since they are important cultural/scientific artefacts. It has the sources of many of the systems mentioned above.

Popular techniques

[edit]
This articleis inlist format but may read better asprose. You can help byconverting this article, if appropriate.Editing help is available.(December 2023)

Software systems

[edit]
See also:Proof assistant § Comparison, andCategory:Theorem proving software systems
Comparison
NameLicense typeWeb serviceLibraryStandaloneLast update(YYYY-mm-dd format)
ACL23-clause BSDNoNoYesMay 2019
Prover9/OtterPublic DomainViaSystem on TPTPYesNo2009
Jape GPLv2YesYesNoMay 15, 2015
PVS GPLv2NoYesNoJanuary 14, 2013
EQP?NoYesNoMay 2009
PhoX?NoYesNoSeptember 28, 2017
EGPLViaSystem on TPTPNoYesJuly 4, 2017
SNARK Mozilla Public License 1.1NoYesNo2012
VampireVampire LicenseViaSystem on TPTPYesYesDecember 14, 2017
Theorem Proving System (TPS)TPS Distribution AgreementNoYesNoFebruary 4, 2012
SPASSFreeBSD licenseYesYesYesNovember 2005
IsaPlannerGPLNoYesYes2007
KeYGPLYesYesYesOctober 11, 2017
Z3 Theorem ProverMIT LicenseYesYesYesNovember 19, 2019

Free software

[edit]

Proprietary software

[edit]

See also

[edit]

Notes

[edit]
  1. ^Frege, Gottlob (1879).Begriffsschrift. Verlag Louis Neuert.
  2. ^Frege, Gottlob (1884).Die Grundlagen der Arithmetik(PDF). Breslau: Wilhelm Kobner. Archived fromthe original(PDF) on 2007-09-26. Retrieved2012-09-02.
  3. ^Russell, Bertrand; Whitehead, Alfred North (1910–1913).Principia Mathematica (1st ed.). Cambridge University Press.
  4. ^Russell, Bertrand; Whitehead, Alfred North (1927).Principia Mathematica (2nd ed.). Cambridge University Press.
  5. ^Herbrand, J. (1930).Recherches sur la théorie de la démonstration (PhD) (in French). University of Paris.
  6. ^Presburger, Mojżesz (1929). "Über die Vollständigkeit eines gewissen Systems der Arithmetik ganzer Zahlen, in welchem die Addition als einzige Operation hervortritt".Comptes Rendus du I Congrès de Mathématiciens des Pays Slaves. Warszawa:92–101.
  7. ^abcdDavis, Martin (2001)."The Early History of Automated Deduction".Robinson & Voronkov 2001. Archived fromthe original on 2012-07-28. Retrieved2012-09-08.
  8. ^Bibel, Wolfgang (2007)."Early History and Perspectives of Automated Deduction"(PDF).Ki 2007. LNAI (4667). Springer:2–18.Archived(PDF) from the original on 2022-10-09. Retrieved2 September 2012.
  9. ^Gilmore, Paul (1960). "A proof procedure for quantification theory: its justification and realisation".IBM Journal of Research and Development.4:28–35.doi:10.1147/rd.41.0028.
  10. ^McCune, W. W. (1997). "Solution of the Robbins Problem".Journal of Automated Reasoning.19 (3):263–276.doi:10.1023/A:1005843212881.S2CID 30847540.
  11. ^Kolata, Gina (December 10, 1996)."Computer Math Proof Shows Reasoning Power".The New York Times. Retrieved2008-10-11.
  12. ^Goel, Shilpi; Ray, Sandip (2022), Chattopadhyay, Anupam (ed.),"Microprocessor Assurance and the Role of Theorem Proving",Handbook of Computer Architecture, Singapore: Springer Nature Singapore, pp. 1–43,doi:10.1007/978-981-15-6401-7_38-1,ISBN 978-981-15-6401-7, retrieved2024-02-10
  13. ^Basin, D.; Deville, Y.; Flener, P.; Hamfelt, A.; Fischer Nilsson, J. (2004). "Synthesis of programs in computational logic". In M. Bruynooghe and K.-K. Lau (ed.).Program Development in Computational Logic. LNCS. Vol. 3049. Springer. pp. 30–65.CiteSeerX 10.1.1.62.4976.
  14. ^Meng, Jia; Paulson, Lawrence C. (2008-01-01)."Translating Higher-Order Clauses to First-Order Clauses".Journal of Automated Reasoning.40 (1):35–60.doi:10.1007/s10817-007-9085-y.ISSN 1573-0670.S2CID 7716709.
  15. ^Bos, Johan."Wide-coverage semantic analysis with boxer." Semantics in text processing. step 2008 conference proceedings. 2008.
  16. ^Muskens, Reinhard."Combining Montague semantics and discourse representation." Linguistics and philosophy (1996): 143-186.
  17. ^Luckham, David C.; Suzuki, Norihisa (Mar 1976).Automatic Program Verification V: Verification-Oriented Proof Rules for Arrays, Records, and Pointers (Technical Report AD-A027 455).Defense Technical Information Center.Archived from the original on August 12, 2021.
  18. ^Luckham, David C.; Suzuki, Norihisa (Oct 1979)."Verification of Array, Record, and Pointer Operations in Pascal".ACM Transactions on Programming Languages and Systems.1 (2):226–244.doi:10.1145/357073.357078.S2CID 10088183.
  19. ^Luckham, D.; German, S.; von Henke, F.; Karp, R.; Milne, P.; Oppen, D.; Polak, W.; Scherlis, W. (1979).Stanford Pascal verifier user manual (Technical report). Stanford University. CS-TR-79-731.
  20. ^Loveland, D. W. (1986). "Automated theorem proving: Mapping logic into AI".Proceedings of the ACM SIGART international symposium on Methodologies for intelligent systems. Knoxville, Tennessee, United States: ACM Press. p. 224.doi:10.1145/12808.12833.ISBN 978-0-89791-206-8.S2CID 14361631.
  21. ^Kerber, Manfred. "How to prove higher order theorems in first order logic." (1999).
  22. ^Benzmüller, Christoph, et al. "LEO-II-a cooperative automatic theorem prover for classical higher-order logic (system description)." International Joint Conference on Automated Reasoning. Berlin, Germany and Heidelberg: Springer, 2008.
  23. ^Blanchette, Jasmin Christian; Böhme, Sascha; Paulson, Lawrence C. (2013-06-01)."Extending Sledgehammer with SMT Solvers".Journal of Automated Reasoning.51 (1):109–128.doi:10.1007/s10817-013-9278-5.ISSN 1573-0670.S2CID 5389933.ATPs and SMT solvers have complementary strengths. The former handle quantifiers more elegantly, whereas the latter excel on large, mostly ground problems.
  24. ^Weber, Tjark; Conchon, Sylvain; Déharbe, David; Heizmann, Matthias; Niemetz, Aina; Reger, Giles (2019-01-01)."The SMT Competition 2015–2018".Journal on Satisfiability, Boolean Modeling and Computation.11 (1):221–259.doi:10.3233/SAT190123.In recent years, we have seen a blurring of lines between SMT-COMP and CASC with SMT solvers competing in CASC and ATPs competing in SMT-COMP.
  25. ^Sutcliffe, Geoff."The TPTP Problem Library for Automated Theorem Proving". Retrieved15 July 2019.
  26. ^"History".vprover.github.io.
  27. ^"The Theorem Prover Museum".Michael Kohlhase. Retrieved2022-11-20.
  28. ^Bundy, Alan (1999).The automation of proof by mathematical induction(PDF) (Technical report). Informatics Research Report. Vol. 2. Division of Informatics, University of Edinburgh.hdl:1842/3394.
  29. ^Gabbay, Dov M., and Hans Jürgen Ohlbach."Quantifier elimination in second-order predicate logic." (1992).

References

[edit]

External links

[edit]
General
Theorems (list)
 and paradoxes
Logics
Traditional
Propositional
Predicate
Set theory
Types ofsets
Maps and cardinality
Set theories
Formal systems (list),
language and syntax
Example axiomatic
systems
 (list)
Proof theory
Model theory
Computability theory
Related
Authority control databases: NationalEdit this at Wikidata
Retrieved from "https://en.wikipedia.org/w/index.php?title=Automated_theorem_proving&oldid=1283005449#Comparison"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp