Property Invariant Embedding for Automated Reasoning

Total Page:16

File Type:pdf, Size:1020Kb

Property Invariant Embedding for Automated Reasoning Property Invariant Embedding for Automated Reasoning Miroslav Olsˇak´ 1 and Cezary Kaliszyk 2 and Josef Urban 3 Abstract. Automated reasoning and theorem proving have recently TreeRNNs [6], and GraphNNs [9]. Most of the approaches, how- become major challenges for machine learning. In other domains, ever, cannot capture well the idea of a variable occurring multiple representations that are able to abstract over unimportant transfor- times in the formula and to abstract from the names of the variables. mations, such as abstraction over translations and rotations in vision, These issues were first addressed in FormulaNet [49] but even that are becoming more common. Standard methods of embedding math- architecture relies on knowing the names of function and predicate ematical formulas for learning theorem proving are however yet un- symbols. This makes it unsuitable for handling the large number of able to handle many important transformations. In particular, embed- problem-specific function and predicate symbols introduced during ding previously unseen labels, that often arise in definitional encod- the clausification.4 The same holds for large datasets of ATP prob- ings and in Skolemization, has been very weak so far. Similar prob- lems where symbol names are not used consistently, such as the lems appear when transferring knowledge between known symbols. TPTP library [43]. We propose a novel encoding of formulas that extends existing In this paper, we make further steps towards the abstraction of graph neural network models. This encoding represents symbols only mathematical clauses, formulas and proof states. We present a net- by nodes in the graph, without giving the network any knowledge of work that is invariant not only under renaming of variables, but also the original labels. We provide additional links between such nodes under renaming of arbitrary function and predicate symbols. It is also that allow the network to recover the meaning and therefore cor- invariant under replacement of the symbols by their negated versions. rectly embed such nodes irrespective of the given labels. We test This is achieved by a novel conversion of the input formulas into a the proposed encoding in an automated theorem prover based on the hypergraph, followed by a particularly designed graph neural net- tableaux connection calculus, and show that it improves on the best work (GNN) capable of maintaining the invariance under negation. characterizations used so far. The encoding is further evaluated on We experimentally demonstrate in three case studies that the network the premise selection task and a newly introduced symbol guessing works well on data coming from automated theorem proving tasks. task, and shown to correctly predict 65% of the symbol names. The paper is structured as follows. We first formally describe our network architecture in Section 2, and discuss its invariance proper- ties in Section 3. We describe an experiment using the network for 1 Introduction guiding leanCoP in Section 4, and two experiments done on a fixed Automated Theorem Provers (ATPs) [38] can be in principle used to dataset in Section 5. Section 6 contains the results of these three ex- attempt the proof of any provable mathematical conjecture. The stan- periments. dard ATP approaches have so far relied primarily on fast implemen- tation of manually designed search procedures and heuristics. How- 2 Network Architecture for Invariant Embedding ever, using machine learning for guidance in the vast action spaces of the ATP calculi is a natural choice that has been recently shown to This section describes the design and details of the proposed neural significantly improve over the unguided systems [26, 20]. architecture for invariant embeddings. The architecture gets as its in- The common procedure of a first-order ATP system – saturation- put a set of clauses C. It outputs an embedding for each of the clauses style or tableaux – is the following. The ATP starts with a set of first in C, each literal and subterm and each function and predicate sym- order axioms and a conjecture. The conjecture is negated and the for- bol present in C. The process consists of initially constructing a hy- mulas are Skolemized and clausified. The objective is then to derive pergraph out of the given set of clauses, and then several message a contradiction from the set of clauses, typically using some form of passing layers on the hypergraph. In Section 2.1 we first explain the resolution and related inference rules. The Skolemization as well as construction of a hypergraph from the input clauses. The details of introduction of new definitions during the clausification results in the the message passing are explained in Section 2.2 . introduction of many new function and predicate symbols. When guiding the proving process by statistical machine learn- 2.1 Hypergraph Construction ing, the state of the prover and the formulas, literals, and clauses, arXiv:1911.12073v1 [cs.AI] 27 Nov 2019 are typically encoded to vectors of real numbers. This has been so When converting the clauses to the graph, we aim to capture as much far mostly done with hand-crafted features resulting in large sparse relevant structure as possible. We roughly convert the tree structure vectors [27, 5, 1, 48, 23, 19], possibly reducing their dimension af- of the terms to a circuit by sharing variables, constants and also terwards [6]. Several experiments with neural networks have been bigger terms. The graph will be also interconnected through spe- made recently, in particular based on 1D convolutions, RNNs [16], cial nodes representing function symbols. Let nc denote the num- ber of clauses, and let the clauses be C = fC1;:::;Cnc g. Sim- 1 University of Innsbruck, Austria, email: [email protected] 2 University of Innsbruck, Austria, email: [email protected] 4 The ratio of such symbols in real-world clausal datasets is around 40%, see 3 Czech Technical Univ. in Prague, Czechia, email: [email protected] Section 5.2. ilarly, let S = fS1;:::;Sns g denote all the function and predi- In the following we first provide the formulas describing the com- cate symbols occurring at least once in the given set of clauses, and putation. The symbols used in them are explained afterwards. T = fT1;:::;Tnt g denote all the subterms and literals occurring at least once in the given set of clauses. Two subterms are considered to i i i be identical (and therefore represented by a single node) if they are ci+1;j = ReLU(Bc + Mc · ci;j + Mct · red (ti;a)) a2F j constructed the same way using the same functions and variables. If ct a;b;c i i i i Ti is a negative literal, the unnegated form of Ti is not automatically xi = Bts + Mts;1 · ti;a + Mts;2 · ti;b + Mts;3 · ti;c added to T but all its subterms are. i i 0 a;b;c si+1;j = tanh(Ms · si;j + Mts · red (g · xi )) The sets C; S; T represent the nodes of our hypergraph. The hy- j (a;b;c;g)2Fst pergraph will also contain two sets of edges: Binary edges Ect ⊂ ya;b;c;g = Bi + M 1;d · t + M 2;d · t + M 3;d · s · g C×T between clauses and literals, and 4-ary oriented labeled edges i;d st st;i i;a st;i i;b st;i i;c 2 i a;b;c;g Est ⊂ S × T × (T [ fT0g) × f1; −1g. Here T0 is a specially cre- zi;j;d = Mst;d · red (ReLU(y )) j i;d ated and added term node disjoint from all actual terms and serving (a;b;c;g)2Fts;d in the arity-related encodings described below. The label is present i vi;j = Mtc · red (ci;a) j at the last position of the 5-tuple. The set Ect contains all the pairs a2Ftc (Ci;Tj ) where Tj is a literal contained in Ci. Note that this encod- i i X t = ReLU(B + M · t + v + z ) ing makes the order of the literals in the clauses irrelevant, which i+1;j t t i;j i;j i;j;d corresponds to the desired semantic behavior. d2f1;2;3g The set Est is constructed by the following procedure applied to every literal or subterm Ti that is not a variable. If Ti is a negative literal, we set σ = 1, and interpret Ti as Ti = :Sj (t1; : : : ; tn), Here, all the B symbols represent learnable vectors (biases), and otherwise we set σ = −1 and interpret Ti as Ti = Sj (t1; : : : ; tn), all the M symbols represent learnable matrices. Their sizes are listed where Sj 2 S, n is the arity of Sj and t1; : : : ; tn 2 T. If n = 0, we in Fig. 1. add (Sj ;Ti;T0;T0; σ) to Est. If n = 1, we add (Sj ;Ti; t1;T0; σ) i i+1 i i+1 i i+1 i i+1 to Est. And finally, if n ≥ 2, we extend Est by all the tuples Bc : dc Bts : ds Bst : dt Bt : dt i i+1 i i i+1 i i i+1 i (Sj ;Ti; tk; tk+1; σ) for k = 1; : : : ; n − 1. Mc : dc × dc Mt : dt × dt Mts;j : ds × dt i i+1 i i i+1 i i i+1 i+1 This encoding is used instead of just (Sj ;Ti; tk; σ) to (reasonably) Mct : dc × 2dt Mtc : dt × 2dc Mst;j : dt × 2dt M i : di+1 × di M i : di+1 × 2di+1 k;j i+1 i maintain the order of function and predicate arguments. For example, s s s ts s s Mst;i : dt × dt for two non-isomorphic (i.e., differently encoded) terms t1 and t2, Figure 1.
Recommended publications
  • Why Machines Don't
    KI - Künstliche Intelligenz https://doi.org/10.1007/s13218-019-00599-w SURVEY Why Machines Don’t (yet) Reason Like People Sangeet Khemlani1 · P. N. Johnson‑Laird2,3 Received: 15 February 2019 / Accepted: 19 June 2019 © This is a U.S. government work and not under copyright protection in the U.S.; foreign copyright protection may apply 2019 Abstract AI has never come to grips with how human beings reason in daily life. Many automated theorem-proving technologies exist, but they cannot serve as a foundation for automated reasoning systems. In this paper, we trace their limitations back to two historical developments in AI: the motivation to establish automated theorem-provers for systems of mathematical logic, and the formulation of nonmonotonic systems of reasoning. We then describe why human reasoning cannot be simulated by current machine reasoning or deep learning methodologies. People can generate inferences on their own instead of just evaluating them. They use strategies and fallible shortcuts when they reason. The discovery of an inconsistency does not result in an explosion of inferences—instead, it often prompts reasoners to abandon a premise. And the connectives they use in natural language have diferent meanings than those in classical logic. Only recently have cognitive scientists begun to implement automated reasoning systems that refect these human patterns of reasoning. A key constraint of these recent implementations is that they compute, not proofs or truth values, but possibilities. Keywords Reasoning · Mental models · Cognitive models 1 Introduction problems for mathematicians). Their other uses include the verifcation of computer programs and the design of com- The great commercial success of deep learning has pushed puter chips.
    [Show full text]
  • An Overview of Automated Reasoning
    An overview of automated reasoning John Harrison Intel Corporation 3rd February 2014 (10:30{11:30) Talk overview I What is automated reasoning? I Early history and taxonomy I Automation, its scope and limits I Interactive theorem proving I Hobbes (1651): \Reason . is nothing but reckoning (that is, adding and subtracting) of the consequences of general names agreed upon, for the marking and signifying of our thoughts." I Leibniz (1685) \When there are disputes among persons, we can simply say: Let us calculate [calculemus], without further ado, to see who is right." Nowadays, by `automatic and algorithmic' we mean `using a computer program'. What is automated reasoning? Attempting to perform logical reasoning in an automatic and algorithmic way. An old dream! I Leibniz (1685) \When there are disputes among persons, we can simply say: Let us calculate [calculemus], without further ado, to see who is right." Nowadays, by `automatic and algorithmic' we mean `using a computer program'. What is automated reasoning? Attempting to perform logical reasoning in an automatic and algorithmic way. An old dream! I Hobbes (1651): \Reason . is nothing but reckoning (that is, adding and subtracting) of the consequences of general names agreed upon, for the marking and signifying of our thoughts." Nowadays, by `automatic and algorithmic' we mean `using a computer program'. What is automated reasoning? Attempting to perform logical reasoning in an automatic and algorithmic way. An old dream! I Hobbes (1651): \Reason . is nothing but reckoning (that is, adding and subtracting) of the consequences of general names agreed upon, for the marking and signifying of our thoughts." I Leibniz (1685) \When there are disputes among persons, we can simply say: Let us calculate [calculemus], without further ado, to see who is right." What is automated reasoning? Attempting to perform logical reasoning in an automatic and algorithmic way.
    [Show full text]
  • Automated Reasoning for Explainable Artificial Intelligence∗
    EPiC Series in Computing Volume 51, 2017, Pages 24–28 ARCADE 2017. 1st International Workshop on Automated Reasoning: Challenges, Appli- cations, Directions, Exemplary Achievements Automated Reasoning for Explainable Artificial Intelligence∗ Maria Paola Bonacina1 Dipartimento di Informatica Universit`adegli Studi di Verona Strada Le Grazie 15 I-37134 Verona, Italy, EU [email protected] Abstract Reasoning and learning have been considered fundamental features of intelligence ever since the dawn of the field of artificial intelligence, leading to the development of the research areas of automated reasoning and machine learning. This paper discusses the relationship between automated reasoning and machine learning, and more generally be- tween automated reasoning and artificial intelligence. We suggest that the emergence of the new paradigm of XAI, that stands for eXplainable Artificial Intelligence, is an oppor- tunity for rethinking these relationships, and that XAI may offer a grand challenge for future research on automated reasoning. 1 Artificial Intelligence, Automated Reasoning, and Ma- chine Learning Ever since the beginning of artificial intelligence, scientists concurred that the capability to learn and the capability to reason about problems and solve them are fundamental pillars of intelligent behavior. Similar to many subfields of artificial intelligence, automated reasoning and machine learning have grown into highly specialized research areas. Both have experienced the dichotomy between the ideal of imitating human intelligence, whereby the threshold of success would be the indistinguishability of human and machine, as in the Turing’s test [12], and the ideal that machines can and should learn and reason in their own way. According to the latter ideal, the measure of success is independent of similarity to human behavior.
    [Show full text]
  • The Ratiolog Project: Rational Extensions of Logical Reasoning
    The RatioLog Project: Rational Extensions of Logical Reasoning Ulrich Furbach · Claudia Schon · Frieder Stolzenburg · Karl-Heinz Weis · Claus-Peter Wirth Abstract Higher-level cognition includes logical reasoning 1 Rational Reasoning and Question Answering and the ability of question answering with common sense. The RatioLog project addresses the problem of rational rea- The development of formal logic played a big role in the soning in deep question answering by methods from auto- field of automated reasoning, which led to the development mated deduction and cognitive computing. In a first phase, of the field of artificial intelligence (AI). Applications of au- we combine techniques from information retrieval and ma- tomated deduction in mathematics have been investigated chine learning to find appropriate answer candidates from from the early years on. Nowadays automated deduction the huge amount of text in the German version of the free techniques are successfully applied in hard- and software encyclopedia “Wikipedia”. In a second phase, an automated verification and many other areas (for an overview see [2]). theorem prover tries to verify the answer candidates on In contrast to formal logical reasoning, however, human the basis of their logical representations. In a third phase reasoning does not strictly follow the rules of classical logic. — because the knowledge may be incomplete and inconsis- Reasons may be incomplete knowledge, incorrect beliefs, tent —, we consider extensions of logical reasoning to im- and inconsistent norms. From the very beginning of AI re- prove the results. In this context, we work toward the appli- search, there has been a strong emphasis on incorporating cation of techniques from human reasoning: We employ de- mechanisms for rationality, such as abductive or defeasible feasible reasoning to compare the answers w.r.t.
    [Show full text]
  • Automated Reasoning on the Web
    Automated Reasoning on the Web Slim Abdennadher1, Jos´eJ´ulioAlves Alferes2, Grigoris Antoniou3, Uwe Aßmann4, Rolf Backofen5, Cristina Baroglio6, Piero A. Bonatti7, Fran¸coisBry8, W lodzimierz Drabent9, Norbert Eisinger8, Norbert E. Fuchs10, Tim Geisler11, Nicola Henze12, Jan Ma luszy´nski4, Massimo Marchiori13, Alberto Martelli14, Sara Carro Mart´ınez15, Wolfgang May16, Hans J¨urgenOhlbach8, Sebastian Schaffert8, Michael Schr¨oder17, Klaus U. Schulz8, Uta Schwertel8, and Gerd Wagner18 1 German University in Cairo (Egypt), 2 New University of Lisbon (Portugal), 3 Institute of Computer Science, Foundation for Research and Technology – Hel- las (Greece), 4 University of Link¨oping (Sweden), 5 University of Jena (Germany), 6 University of Turin (Italy), 7 University of Naples (Italy), 8 University of Mu- nich (Germany), 9 Polish Academy of Sciences (Poland), 10 University of Zurich (Switzerland), 11 webXcerpt (Germany), 12 University of Hannover (Germany), 13 University of Venice (Italy), 14 University of Turin (Italy), 15 Telef´onica Investi- gaci´ony Desarollo (Spain), 16 University of G¨ottingen(Germany), 17 University of Dresden (Germany), 18 University of Eindhoven (The Netherlands) Abstract Automated reasoning is becoming an essential issue in many Web systems and applications, especially in emerging Semantic Web applications. This article first discusses reasons for this evolution. Then, it presents research issues currently investigated towards automated reasoning on the Web and it introduces into selected applications demonstrating the practical impact of the approach. Finally, it introduces a research endeavor called REWERSE (cf. http://rewerse.net) recently launched by the authors of this article which is concerned with developing automated reasoning methods and tools for the Web as well as demonstrator applications.
    [Show full text]
  • Frege's Influence on the Modern Practice of Doing Mathematics
    논리연구 20-1(2017) pp. 97-112 Frege’s influence on the modern practice of doing mathematics 1) Gyesik Lee 【Abstract】We discuss Frege’s influence on the modern practice of doing mathematical proofs. We start with explaining Frege’s notion of variables. We also talk of the variable binding issue and show how successfully his idea on this point has been applied in the field of doing mathematics based on a computer software. 【Key Words】Frege, Begriffsschrift, variable binding, mechanization, formal proofs Received: Nov. 11, 2016. Revised: Feb. 10, 2017. Accepted: Feb. 11, 2017. 98 Gyesik Lee 1. Introduction Around the turn of the 20th century, mathematicians and logicians were interested in a more exact investigation into the foundation of mathematics and soon realized that ordinary mathematical arguments can be represented in formal axiomatic systems. One prominent figure in this research was Gottlob Frege. His main concern was twofold: (1) whether arithmetical judgments could be proved in a purely logical manner, and (2) how far one could progress in arithmetic merely by using the laws of logic. In Begriffsschrift (Frege, 1879), he invented a special kind of language system, where statements can be proved as true based only upon some general logical laws and definitions. This system is then used later in the two volumes of Grundgesetze der Arithmetik (Frege, 1893, 1903), where he provided and analyzed a formal system for second order arithmetic. Although the system in (Frege, 1893, 1903) is known to be inconsistent, it contains all of the essential materials to provide a fundamental basis for dealing with propositions of arithmetic based on an axiomatic system.
    [Show full text]
  • Reasoning-Driven Question-Answering for Natural Language Understanding Daniel Khashabi University of Pennsylvania, [email protected]
    University of Pennsylvania ScholarlyCommons Publicly Accessible Penn Dissertations 2019 Reasoning-Driven Question-Answering For Natural Language Understanding Daniel Khashabi University of Pennsylvania, [email protected] Follow this and additional works at: https://repository.upenn.edu/edissertations Part of the Artificial Intelligence and Robotics Commons Recommended Citation Khashabi, Daniel, "Reasoning-Driven Question-Answering For Natural Language Understanding" (2019). Publicly Accessible Penn Dissertations. 3271. https://repository.upenn.edu/edissertations/3271 This paper is posted at ScholarlyCommons. https://repository.upenn.edu/edissertations/3271 For more information, please contact [email protected]. Reasoning-Driven Question-Answering For Natural Language Understanding Abstract Natural language understanding (NLU) of text is a fundamental challenge in AI, and it has received significant attention throughout the history of NLP research. This primary goal has been studied under different tasks, such as Question Answering (QA) and Textual Entailment (TE). In this thesis, we investigate the NLU problem through the QA task and focus on the aspects that make it a challenge for the current state-of-the-art technology. This thesis is organized into three main parts: In the first part, we explore multiple formalisms to improve existing machine comprehension systems. We propose a formulation for abductive reasoning in natural language and show its effectiveness, especially in domains with limited training data. Additionally, to help reasoning systems cope with irrelevant or redundant information, we create a supervised approach to learn and detect the essential terms in questions. In the second part, we propose two new challenge datasets. In particular, we create two datasets of natural language questions where (i) the first one requires reasoning over multiple sentences; (ii) the second one requires temporal common sense reasoning.
    [Show full text]
  • 6.2 Presenting Formal and Informal Mathematics
    PDF hosted at the Radboud Repository of the Radboud University Nijmegen The following full text is a publisher's version. For additional information about this publication click this link. http://hdl.handle.net/2066/119001 Please be advised that this information was generated on 2021-09-27 and may be subject to change. Documentation and Formal Mathematics Web Technology meets Theorem Proving Proefschrift ter verkrijging van de graad van doctor aan de Radboud Universiteit Nijmegen, op gezag van de rector magnificus prof. mr. S.C.J.J. Kortmann, volgens besluit van het college van decanen in het openbaar te verdedigen op dinsdag 17 december 2013 om 12.30 uur precies door Carst Tankink geboren op 21 januari 1986 te Warnsveld Promotor: Prof. dr. J.H. Geuvers Copromotor: Dr. J.H. McKinna Manuscriptcommissie: Prof. dr. H.P. Barendregt Prof. dr. M. Kohlhase (Jacobs University, Bremen) Dr. M. Wenzel (Université Paris Sud) ISBN:978-94-6191-963-2 This research has been carried out under the auspices of the research school IPA (Institute for Programming research and Algorithmics). The author was supported by the Netherlands Organisation for Scientific Research (NWO) under the project “MathWiki: a Web-based Collaborative Authoring Environment for Formal Proofs”. cbaThis work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License. The source code of this thesis is available at https://bitbucket.org/Carst/thesis. Contents Contents iii Preface vii 1 Introduction 1 1.1 Wikis and other Web Technology . .2 1.2 Tools of the Trade: Interactive Theorem Provers . .4 1.3 Collaboration or Communication .
    [Show full text]
  • Ontology to Appear in the Encyclopedia of Database Systems, Ling Liu and M
    Ontology to appear in the Encyclopedia of Database Systems, Ling Liu and M. Tamer Özsu (Eds.), Springer-Verlag, 2008. TITLE OF ENTRY Ontology BYLINE Tom Gruber, http://tomgruber.org. Formerly of Stanford University, Intraspect Software, and RealTravel.com. SYNONYMS computational ontology, semantic data model, ontological engineering DEFINITION In the context of computer and information sciences, an ontology defines a set of representational primitives with which to model a domain of knowledge or discourse. The representational primitives are typically classes (or sets), attributes (or properties), and relationships (or relations among class members). The definitions of the representational primitives include information about their meaning and constraints on their logically consistent application. In the context of database systems, ontology can be viewed as a level of abstraction of data models, analogous to hierarchical and relational models, but intended for modeling knowledge about individuals, their attributes, and their relationships to other individuals. Ontologies are typically specified in languages that allow abstraction away from data structures and implementation strategies; in practice, the languages of ontologies are closer in expressive power to first-order logic than languages used to model databases. For this reason, ontologies are said to be at the "semantic" level, whereas database schema are models of data at the "logical" or "physical" level. Due to their independence from lower level data models, ontologies are used for integrating heterogeneous databases, enabling interoperability among disparate systems, and specifying interfaces to independent, knowledge-based services. In the technology stack of the Semantic Web standards [1], ontologies are called out as an explicit layer. There are now standard languages and a variety of commercial and open source tools for creating and working with ontologies.
    [Show full text]
  • A Classification Approach for Automated Reasoning Systems--A Case Study in Graph Theory Rong Lin Old Dominion University
    Old Dominion University ODU Digital Commons Computer Science Theses & Dissertations Computer Science Spring 1989 A Classification Approach for Automated Reasoning Systems--A Case Study in Graph Theory Rong Lin Old Dominion University Follow this and additional works at: https://digitalcommons.odu.edu/computerscience_etds Part of the Artificial Intelligence and Robotics Commons Recommended Citation Lin, Rong. "A Classification Approach for Automated Reasoning Systems--A Case Study in Graph Theory" (1989). Doctor of Philosophy (PhD), dissertation, Computer Science, Old Dominion University, DOI: 10.25777/5qk4-1w09 https://digitalcommons.odu.edu/computerscience_etds/115 This Dissertation is brought to you for free and open access by the Computer Science at ODU Digital Commons. It has been accepted for inclusion in Computer Science Theses & Dissertations by an authorized administrator of ODU Digital Commons. For more information, please contact [email protected]. A CLASSIFICATION APPROACH FOR AUTOMATED REASONING SYSTEMS - A CASE STUDY IN GRAPH THEORY By Rong Lin A THESIS SUBMITTED TO THE FACULTY OF OLD DOMINION UNIVERSITY N PARTIAL FULFILLMENT OF TIIE REQUIREMENTS FOR THE DEGREE OF DOCTOR OF PHILOSOPHY COMPUTER SCIENCE Norfolk, Virginia April, 1989 Approved by: Shunichi Toida (Director) Reproduced with permission of the copyright owner. Further reproduction prohibited without permission. ABSTRACT Reasoning systems which create classifications of structured objects face the problem of how object descriptions can be used to reflect their components as well as relations among these com­ ponents. Current reasoning sysLcms on grapli theory do not adequately provide models to discover complex relations among mathematical concepts (eg: relations involving subgraphs) mainly due to the inability to solve this problem.
    [Show full text]
  • Review of Automated Reasoning: Thirty-Three Basic Research
    Book Reviews AI Magazine Volume 10 Number 3 (1989) (© AAAI) BookReviews Automated Reasoning: author writes with a freshness and an price of a (computer science) book is Thirty-Three Basic obvious love for logic. inversely proportional to its content. Between the listing of the prob- This book confirms this law: It is Research Problems lems and their detailed discussion is delightfully low priced. As Georg Ulrich Wend1 a review of AR. It seems to be too Christoph Lichtenberg, a German sketchy for the novice, but a com- physicist of the eighteenth century To read the book Automated Reason- panion book by the same author said: “If you have two trousers, sell ing: Thirty-Three Basic Research Prob- (Wos, L.; Overbeek, R.; Lusk, E.; and one, and buy this book.” lems (Prentice Hall, Englewood Cliffs, Boyle, J. 1984. Automated Reasoning: Ulrich Wend1 is at the SCS Information- N.J., 1987, 300 pp., $11.00) by Larry Introduction and Applications. Engle- stechnik GmbH, Hoerselbergstr. 3, 8000 Wos “it is not necessary to be an wood Cliffs, N.J.: Prentice-Hall.) gives Munchen 80. expert in mathematics or logic or far more details. computer science” (from the preface). Chapter 5, the in-depth discussion, However, even if you are such an is remarkable for its style. It is fasci- expert, you will read it with interest, nating to immerse oneself into the Logical Foundations of and likely, with enjoyment. details guided more by questions Artificial Intelligence The book is outstanding for its pre- from the author than answers; sentation of the theme. Following the indeed, a whole paragraph consists of Drew McDermott introductory chapter, Wos discusses nothing but questions! You will some obstacles to the automation of enjoy this chapter and the whole Knowledge is important to intelligent reasoning in Chapter 2.
    [Show full text]
  • Automated Reasoning
    Automated Reasoning Maria Paola Bonacina Alberto Martelli Dipartimento di Informatica Dipartimento di Informatica Universita` degli Studi di Verona Universita` degli Studi di Torino A central problem in automated reasoning is to deter- automated model building. mine whether a conjecture ϕ, that represents a property to In classical first-order logic, deductive theorem proving be verified, is a logical consequence of a set S of assump- is semi-decidable, while inductive theorem proving and tions, which express properties of the object of study (e.g., model building are not even semi-decidable. It is signif- a system, a circuit, a program, a data type, a communica- icant that while books in theorem proving date from the tion protocol, a mathematical structure). early seventies [22, 48, 16, 27, 77, 44, 70], the first book A conjoint problem is that of knowledge representation, on model building appeared only recently [21]. Most ap- or finding suitable formalisms for S and ϕ to represent as- proaches to automated model building belong to one of the pects of the real world, such as action, space, time, men- following three classes, or combine their principles: tal events and commonsense reasoning. While classical logic has been the principal formalism in automated rea- 1. Enumeration methods generate interpretations and soning, and many proof techniques have been studied and test whether they are models of the given set of for- implemented, non-classical logics, such as modal, tempo- mulæ; ral, description or nonmonotonic logics, have been widely 2. Saturation methods extract models from the finite set investigated to represent knowledge.
    [Show full text]