Logic and Objects Language, Application and Implementation

Total Page:16

File Type:pdf, Size:1020Kb

Logic and Objects Language, Application and Implementation Logic and Objects Language, application and implementation Francis Gregory McCabe A thesis submitted to the University of London for the degree of Doctor of Philosophy Mon, 17 Apr, 1989 Department of computing Imperial College of Science and technology 180 Queens Gate London SW7 2BZ © 1988 F.G. MCCabe F ot Mary Ann and Jessica Abstract In this thesis we investigate a number of extensions to logic programming. In particular we look at the incorporation of concepts from functional and object oriented programming into logic programming. This is done by extending the regular syntax of logic programming to include notations for functions and classes. The object oriented extension — class template programming — allows us to see how we might compose logic programs into larger programs. Furthermore, it gives a sound basis for understanding what a program module might be in the context of logic programming. The various features commonly found in object oriented programming languages such as message passing and inheritance are given an interpretation in this framework. As a typical example of the power of class template programming we look at the representation of graphics in a logic programming context. This denotational graphics formalism shows how the relationship between terms and numbers can be used to construct an analogous relationship between terms and pictures. This allows us to describe pictures with terms. Furthermore, we can describe relations over pictures — such as a picture generator or the relation of ‘being inside a picture’ — as relations over those terms. Class templates are used as the programming formalism in which these relations can be expressed. The semantics of our extensions are carefully examined, and in particular we prove that class templates are a conservative extension of logic programming. This gives us a sound basis for our class template language and also allows us to inherit theorems and programming techniques from logic programming itself. We show a preprocessor which translates class template programs into efficient Prolog programs. We also investigate how a Prolog compiler might be modified to handle class tempaltes and give even better performance than that of native Prolog. Table of contents 5 Table of Contents Introduction 9 0.1 What is logic programming? 10 0.2 Structure of the chapters 16 0.3 Acknowledgements 17 1. Logic and equational programming 19 1.0 Introduction and motivation 19 1.0. 1 Intended interpretations are not always neutral 19 1.0. 2 Prolog programs may not be reversible 20 1.0. 3 The proliferation of intermediate variables 22 1.0. 4 Higher order functions and relations 22 1.0. 5 Incompleteness of functional programming 24 1.1 Conditional equalities 25 1.1.1 Mixed relational and functional styles 27 1.1.2 Do equations describe functions? 28 1.1.3 Quoted expressions 29 1.2 Higher order functions and relations 30 1.2.1 ^-expressions and function values 31 1.2.2 Set abstractions 35 1.2.3 Loop-free programming with map 37 1.2.4 Using the reduce function 38 1.2.5 The set abstraction interpretation of logic programs 39 1.3 Summary of equational programming 40 2. Logic and objects — the class template language 41 2.0 Introduction and motivation 41 2 .0 . 1 Large programs and modules 43 2.0. 1.1 Name based modules 43 2.0. 1.2 Predicate based modules 44 2.0. 1.3 Higher order modules 45 2.0. 2 What is object oriented programming? 45 2.1 What is an object? (from 1st principles) 46 2.1.1 Is an object a term or a set of assertions? 47 2.1.2 The theory of objects 48 2.1.3 Methods in a class template 49 2.1.4 Messages and deduction 50 6 Table of contents 2.2 Class template notation 51 2.2.1 Variable labels 53 2.3 Class templates and modules 54 2.3.1 More complex orderings 57 2.3.2 Variable labels and object search 58 2.4 Data driven programming 59 2.5 The structure of classes — inclusion 63 2.5.1 Broadcast messages 65 2.6 The structure of classes — specialization 68 2.6.1 Class rules and inheritance 68 2.6.2 Computing with class rules 70 2.6.3 Multiple inheritance 72 2.6.4 Overriding inheritance 73 2.6.5 s e l f reference 74 2.6.6 Error trapping and s e l f reference 78 2.6.7 The importance of being atomic 79 2.6.8 super reference 82 2.7 Mutable objects 83 2.7.1 assert, retract and class template programs 84 2.8 Related work 85 2.8.1 T he‘isa’ interpretation 85 2.8.2 Hayes'Logic of Frames 87 2.8.3 The POL system 88 2.8.4 Zaniolo's objects 92 2.8.5 LOGIN — logic with inheritance 93 2.8.6 Logical objects 95 2.8.7 Objects as intensions 98 2.8.8 Concurrent logic programming and objects 99 2.8.9 Metalogical objects 101 3 . Denotational graphics 103 3.0 Introduction 103 3.0.1 Objects versus command sequences 104 3.1 Denoting pictures by terms 105 3.1.1 Simple pictures 105 3.1.2 Computing with pictures 106 3.1.2.1 A simple graphics display processor 106 3.1.2.2 Drawing a simple picture 107 3.2 More complex pictures 111 Table of contents 7 3.2.1 Aggregate pictures 112 3.2.2 Using complex pictures 113 3.2.3 Drawing complex pictures 118 3.2.3.1 Pointwise inclusion in an aggregate picture 118 3.2.4 Drawing modified pictures 120 3.3 Graphics and applications 123 3.3.1 The link between an application and its tools 126 3.3.1.1 Drawing an selecting tool icons 127 3.3.2 Displaying graphic edit windows 129 3.4 Related work 131 3.4.1 Helm and Marriot 131 3.5 Summary 132 4. Semantics of equations 133 4.1 The logic of functions 133 4.1.1 Functions, terms and canonical forms 135 4.1.2 A simple evaluator for canon 139 4.1.3 The effect of evaluation order 140 4.1.4 Compiling expressions 141 4.1.5 Quoted expressions and evaluation 143 4.2 The logic of X's and set abstractions 144 4.2.1 Applying predicates to tuples 145 4.2.2 Giving away names 147 4.2.3 Set abstractions with free variables 148 4.2.4 Union set abstractions 149 4.2.5 Equality of relations 150 5. Semantics of class template programs 153 5.0 Introduction 153 5 .0 . 1 The fundamental intuition 15 3 5.0. 2 The approach to understanding 154 5.0 . 3 Class template programs 15 5 5.1 A proof theory for class template programs 156 5.1.1 The distribution of labels 157 5.1.2 Class body inference rules 158 5.1.3 Class rule inference rules 159 5.1.4 The logical connective inference rules 160 5.2 Mapping class template programs into clausal form 161 8 Table of contents 5.2.1 Equations and class templates 166 5.3 The soundness of class template inference 167 5.3.1 Soundness of label distribution 168 5.3.2 The soundness of the class body inference rules 169 5.3.3 The soundness of class rule inference 170 5.4 The completeness of class template inference 173 5.5 Conventional logic programs within class template programs 178 5.6 Class template programs and higher order functionals 180 6. Implementing class templates 185 6.1 A preprocessor for translating class templates into Prolog 185 6.1.1 Class bodies 186 6.1.2 Label variables 188 6.1.3 Labelled calls and class bodies 189 6.1.4 Class rules 191 6.1.5 Equations and expressions 195 6.1.6 Named functions 199 6.1.7 Object search 200 6.1.8 Representing class template programs 202 6.1.9 A comparison of class template programs with Prolog programs 204 6.2 Compiling class template programs 206 6.2.1 Choice point and call record structures 209 6.2.2 Class rules 211 6.2.3 Dynamically asserted clauses 213 6.3 Summary 213 Conclusion and future work 215 Appendix A. Syntax of class template programs 219 Appendix B. The class template preprocessor 223 Appendix C. Example class template programs 243 Glossary 249 Bibliography 255 Introduction 9 Introduction There are a number of reasons why logic programming is important in the field of computing. Principal amongst them is that logic programming offers the basis of a theory of computing as it might be. By this we mean that logic offers an expressive language in which we can build programs and yet which is mathematically tractable. One of the great successes of logic programming is undoubtedly the Prolog programming language, yet paradoxically Prolog is also a great failure. Prolog strives at an ideal but does not reach it. Much of the criticism directed at Prolog has been concentrated on the so-called ‘dirty’ features of Prolog, condemning the cut, the use of dynamically self-modifying programs1 and so forth. However one could rightly argue that a lot of Prolog's programming power (as a practical programming language) comes from these same features. In fact Prolog fails the ideal in many respects, not least of which is the fact that the simple flat structure of Horn clauses makes it difficult to construct large programs. In general one can argue that the more structural deficiencies such as the lack of properly constructed ‘higher order’ or ‘meta order’ aspects forced the early designers to make essentially ad-hoc decisions when these requirements arose.
Recommended publications
  • The Metamathematics of Putnam's Model-Theoretic Arguments
    The Metamathematics of Putnam's Model-Theoretic Arguments Tim Button Abstract. Putnam famously attempted to use model theory to draw metaphysical conclusions. His Skolemisation argument sought to show metaphysical realists that their favourite theories have countable models. His permutation argument sought to show that they have permuted mod- els. His constructivisation argument sought to show that any empirical evidence is compatible with the Axiom of Constructibility. Here, I exam- ine the metamathematics of all three model-theoretic arguments, and I argue against Bays (2001, 2007) that Putnam is largely immune to meta- mathematical challenges. Copyright notice. This paper is due to appear in Erkenntnis. This is a pre-print, and may be subject to minor changes. The authoritative version should be obtained from Erkenntnis, once it has been published. Hilary Putnam famously attempted to use model theory to draw metaphys- ical conclusions. Specifically, he attacked metaphysical realism, a position characterised by the following credo: [T]he world consists of a fixed totality of mind-independent objects. (Putnam 1981, p. 49; cf. 1978, p. 125). Truth involves some sort of correspondence relation between words or thought-signs and external things and sets of things. (1981, p. 49; cf. 1989, p. 214) [W]hat is epistemically most justifiable to believe may nonetheless be false. (1980, p. 473; cf. 1978, p. 125) To sum up these claims, Putnam characterised metaphysical realism as an \externalist perspective" whose \favorite point of view is a God's Eye point of view" (1981, p. 49). Putnam sought to show that this externalist perspective is deeply untenable. To this end, he treated correspondence in terms of model-theoretic satisfaction.
    [Show full text]
  • Church's Thesis As an Empirical Hypothesis
    Pobrane z czasopisma Annales AI- Informatica http://ai.annales.umcs.pl Data: 27/02/2019 11:52:41 Annales UMCS Annales UMCS Informatica AI 3 (2005) 119-130 Informatica Lublin-Polonia Sectio AI http://www.annales.umcs.lublin.pl/ Church’s thesis as an empirical hypothesis Adam Olszewski Pontifical Academy of Theology, Kanonicza 25, 31-002 Kraków, Poland The studies of Church’s thesis (further denoted as CT) are slowly gaining their intensity. Since different formulations of the thesis are being proposed, it is necessary to state how it should be understood. The following is the formulation given by Church: [CT] The concept of the effectively calculable function1 is identical with the concept of the recursive function. The conviction that the above formulation is correct, finds its confirmation in Church’s own words:2 We now define the notion, […] of an effectively calculable function of positive integers by identifying it with the notion of a recursive function of positive integers […]. Frege thought that the material equivalence of concepts is the approximation of their identity. For any concepts F, G: Concept FUMCS is identical with concept G iff ∀x (Fx ≡ Gx) 3. The symbol Fx should be read as “object x falls under the concept F”. The contemporary understanding of the right side of the above equation was dominated by the first order logic and set theory. 1Unless stated otherwise, the term function in this work always means function defined on the set natural numbers, that is, on natural numbers including zero. I would rather use the term concept than the term notion.
    [Show full text]
  • Mechanized Metatheory for the Masses: the POPLMARK Challenge
    University of Pennsylvania ScholarlyCommons Departmental Papers (CIS) Department of Computer & Information Science August 2005 Mechanized Metatheory for the Masses: The POPLMARK Challenge Brian E. Aydemir University of Pennsylvania Aaron Bohannon University of Pennsylvania Matthew Fairbairn University of Cambridge J. Nathan Foster University of Pennsylvania Benjamin C. Pierce University of Pennsylvania, [email protected] See next page for additional authors Follow this and additional works at: https://repository.upenn.edu/cis_papers Recommended Citation Brian E. Aydemir, Aaron Bohannon, Matthew Fairbairn, J. Nathan Foster, Benjamin C. Pierce, Peter Sewell, Dimitrios Vytiniotis, Geoffrey Washburn, Stephanie C. Weirich, and Stephan A. Zdancewic, "Mechanized Metatheory for the Masses: The POPLMARK Challenge", . August 2005. Postprint version. Published in Lecture Notes in Computer Science, Volume 3603, Theorem Proving in Higher Order Logics (TPHOLs 2005), pages 50-65. Publisher URL: http://dx.doi.org/10.1007/11541868_4 This paper is posted at ScholarlyCommons. https://repository.upenn.edu/cis_papers/235 For more information, please contact [email protected]. Mechanized Metatheory for the Masses: The POPLMARK Challenge Abstract How close are we to a world where every paper on programming languages is accompanied by an electronic appendix with machinechecked proofs? We propose an initial set of benchmarks for measuring progress in this area. Based on the metatheory of System F, a typed lambda-calculus with second-order polymorphism, subtyping, and records, these benchmarks embody many aspects of programming languages that are challenging to formalize: variable binding at both the term and type levels, syntactic forms with variable numbers of components (including binders), and proofs demanding complex induction principles.
    [Show full text]
  • 9 Alfred Tarski (1901–1983), Alonzo Church (1903–1995), and Kurt Gödel (1906–1978)
    9 Alfred Tarski (1901–1983), Alonzo Church (1903–1995), and Kurt Gödel (1906–1978) C. ANTHONY ANDERSON Alfred Tarski Tarski, born in Poland, received his doctorate at the University of Warsaw under Stanislaw Lesniewski. In 1942, he was given a position with the Department of Mathematics at the University of California at Berkeley, where he taught until 1968. Undoubtedly Tarski’s most important philosophical contribution is his famous “semantical” definition of truth. Traditional attempts to define truth did not use this terminology and it is not easy to give a precise characterization of the idea. The under- lying conception is that semantics concerns meaning as a relation between a linguistic expression and what it expresses, represents, or stands for. Thus “denotes,” “desig- nates,” “names,” and “refers to” are semantical terms, as is “expresses.” The term “sat- isfies” is less familiar but also plausibly belongs in this category. For example, the number 2 is said to satisfy the equation “x2 = 4,” and by analogy we might say that Aristotle satisfies (or satisfied) the formula “x is a student of Plato.” It is not quite obvious that there is a meaning of “true” which makes it a semanti- cal term. If we think of truth as a property of sentences, as distinguished from the more traditional conception of it as a property of beliefs or propositions, it turns out to be closely related to satisfaction. In fact, Tarski found that he could define truth in this sense in terms of satisfaction. The goal which Tarski set himself (Tarski 1944, Woodger 1956) was to find a “mate- rially adequate” and formally correct definition of the concept of truth as it applies to sentences.
    [Show full text]
  • Critique of the Church-Turing Theorem
    CRITIQUE OF THE CHURCH-TURING THEOREM TIMM LAMPERT Humboldt University Berlin, Unter den Linden 6, D-10099 Berlin e-mail address: lampertt@staff.hu-berlin.de Abstract. This paper first criticizes Church's and Turing's proofs of the undecidability of FOL. It identifies assumptions of Church's and Turing's proofs to be rejected, justifies their rejection and argues for a new discussion of the decision problem. Contents 1. Introduction 1 2. Critique of Church's Proof 2 2.1. Church's Proof 2 2.2. Consistency of Q 6 2.3. Church's Thesis 7 2.4. The Problem of Translation 9 3. Critique of Turing's Proof 19 References 22 1. Introduction First-order logic without names, functions or identity (FOL) is the simplest first-order language to which the Church-Turing theorem applies. I have implemented a decision procedure, the FOL-Decider, that is designed to refute this theorem. The implemented decision procedure requires the application of nothing but well-known rules of FOL. No assumption is made that extends beyond equivalence transformation within FOL. In this respect, the decision procedure is independent of any controversy regarding foundational matters. However, this paper explains why it is reasonable to work out such a decision procedure despite the fact that the Church-Turing theorem is widely acknowledged. It provides a cri- tique of modern versions of Church's and Turing's proofs. I identify the assumption of each proof that I question, and I explain why I question it. I also identify many assumptions that I do not question to clarify where exactly my reasoning deviates and to show that my critique is not born from philosophical scepticism.
    [Show full text]
  • Warren Goldfarb, Notes on Metamathematics
    Notes on Metamathematics Warren Goldfarb W.B. Pearson Professor of Modern Mathematics and Mathematical Logic Department of Philosophy Harvard University DRAFT: January 1, 2018 In Memory of Burton Dreben (1927{1999), whose spirited teaching on G¨odeliantopics provided the original inspiration for these Notes. Contents 1 Axiomatics 1 1.1 Formal languages . 1 1.2 Axioms and rules of inference . 5 1.3 Natural numbers: the successor function . 9 1.4 General notions . 13 1.5 Peano Arithmetic. 15 1.6 Basic laws of arithmetic . 18 2 G¨odel'sProof 23 2.1 G¨odelnumbering . 23 2.2 Primitive recursive functions and relations . 25 2.3 Arithmetization of syntax . 30 2.4 Numeralwise representability . 35 2.5 Proof of incompleteness . 37 2.6 `I am not derivable' . 40 3 Formalized Metamathematics 43 3.1 The Fixed Point Lemma . 43 3.2 G¨odel'sSecond Incompleteness Theorem . 47 3.3 The First Incompleteness Theorem Sharpened . 52 3.4 L¨ob'sTheorem . 55 4 Formalizing Primitive Recursion 59 4.1 ∆0,Σ1, and Π1 formulas . 59 4.2 Σ1-completeness and Σ1-soundness . 61 4.3 Proof of Representability . 63 3 5 Formalized Semantics 69 5.1 Tarski's Theorem . 69 5.2 Defining truth for LPA .......................... 72 5.3 Uses of the truth-definition . 74 5.4 Second-order Arithmetic . 76 5.5 Partial truth predicates . 79 5.6 Truth for other languages . 81 6 Computability 85 6.1 Computability . 85 6.2 Recursive and partial recursive functions . 87 6.3 The Normal Form Theorem and the Halting Problem . 91 6.4 Turing Machines .
    [Show full text]
  • Common Sense for Concurrency and Strong Paraconsistency Using Unstratified Inference and Reflection
    Published in ArXiv http://arxiv.org/abs/0812.4852 http://commonsense.carlhewitt.info Common sense for concurrency and strong paraconsistency using unstratified inference and reflection Carl Hewitt http://carlhewitt.info This paper is dedicated to John McCarthy. Abstract Unstratified Reflection is the Norm....................................... 11 Abstraction and Reification .............................................. 11 This paper develops a strongly paraconsistent formalism (called Direct Logic™) that incorporates the mathematics of Diagonal Argument .......................................................... 12 Computer Science and allows unstratified inference and Logical Fixed Point Theorem ........................................... 12 reflection using mathematical induction for almost all of Disadvantages of stratified metatheories ........................... 12 classical logic to be used. Direct Logic allows mutual Reification Reflection ....................................................... 13 reflection among the mutually chock full of inconsistencies Incompleteness Theorem for Theories of Direct Logic ..... 14 code, documentation, and use cases of large software systems Inconsistency Theorem for Theories of Direct Logic ........ 15 thereby overcoming the limitations of the traditional Tarskian Consequences of Logically Necessary Inconsistency ........ 16 framework of stratified metatheories. Concurrency is the Norm ...................................................... 16 Gödel first formalized and proved that it is not possible
    [Show full text]
  • METALOGIC METALOGIC an Introduction to the Metatheory of Standard First Order Logic
    METALOGIC METALOGIC An Introduction to the Metatheory of Standard First Order Logic Geoffrey Hunter Senior Lecturer in the Department of Logic and Metaphysics University of St Andrews PALGRA VE MACMILLAN © Geoffrey Hunter 1971 Softcover reprint of the hardcover 1st edition 1971 All rights reserved. No part of this publication may be reproduced or transmitted, in any form or by any means, without permission. First published 1971 by MACMILLAN AND CO LTD London and Basingstoke Associated companies in New York Toronto Dublin Melbourne Johannesburg and Madras SBN 333 11589 9 (hard cover) 333 11590 2 (paper cover) ISBN 978-0-333-11590-9 ISBN 978-1-349-15428-9 (eBook) DOI 10.1007/978-1-349-15428-9 The Papermac edition of this book is sold subject to the condition that it shall not, by way of trade or otherwise, be lent, resold, hired out, or otherwise circulated without the publisher's prior consent, in any form of binding or cover other than that in which it is published and without a similar condition including this condition being imposed on the subsequent purchaser. To my mother and to the memory of my father, Joseph Walter Hunter Contents Preface xi Part One: Introduction: General Notions 1 Formal languages 4 2 Interpretations of formal languages. Model theory 6 3 Deductive apparatuses. Formal systems. Proof theory 7 4 'Syntactic', 'Semantic' 9 5 Metatheory. The metatheory of logic 10 6 Using and mentioning. Object language and metalang- uage. Proofs in a formal system and proofs about a formal system. Theorem and metatheorem 10 7 The notion of effective method in logic and mathematics 13 8 Decidable sets 16 9 1-1 correspondence.
    [Show full text]
  • Object Language and Metalanguage Formal Languages • Sentence
    Object Language and Metalanguage Formal Languages • Sentence Logic and Predicate Logic are formal languages. • A formal language is a set of sentences generated by rules of formation from a vocabulary. • The sentences of Sentence Logic and Predicate Logic are not part of natural language (though some may resemble natural-language sentences). • The formal languages Sentence Logic and Predicate Logic are the objects of our study, and as such they are called object languages. The Metalanguage • If we are going to state anything about an object language, we must make use of a language. • We call a language used to study an object language a metalanguage. • In theory, the metalanguage may be identical to or include the object language. – We use English to study English in linguistics. • We will strictly separate our metalanguage (English with some extra technical vocabulary) from our object languages. • Keeping the languages separate allows us to avoid semantical paradox (Tarski). Use and Mention • When we talk about an item of language, we are said to mention it. • Whenever an item of any object language is mentioned, it must be placed within single quotation marks. • We may use English to mention an item of English. – ‘Bush’ has four letters and starts with a ‘B’. – ‘George W. Bush was born in Texas’ is false. – ‘This sentence is false’ is true. Metavariables • We may also use English to mention items of Sentence Logic and Predicate Logic. – ‘⊃’ is a connective of Sentence Logic. – ‘P ⊃ Q’ is a conditional. – If ‘P’ is true and ‘P ⊃ Q’ is true, then ‘Q’ is true.
    [Show full text]
  • The Meta-Language: a Reference Manual
    THE META-LANGUAGE: A REFERENCEMANUAL Cliff B.Jones Abstract: The recent work of the Vienna Laboratory on the sub= ject of semantic definitions has used the "denotational semantics" approach. Although this is a clear break with the earlier abstract interpreter approach, the newer meta-language has tried to preserve and even improve upon the readability of the earlier "VDL" no = tation. The meta-language described here has been used in the definitions of large programming languages and systems. This paper is not a tutorial; rather it pro = vides a reference document for the meta-language. CONTENTS 0. Introduction 220 I. Logic Notation 223 2. Elementary Objects 224 3. Composite Objects 225 3.1 Sets 226 3.2 Pairs 228 3.3 Maps 228 3.4 Tuples 230 3.5 Trees 231 3.6 Functions 232 3.7 Implicit Definition 235 4. Object Description 236 5. The r61e of "undefined" 239 6. Defining Semantics 240 6.1 States & State Transitions 241 6.2 A Macro-expansion Process 243 6.3 Simplifying Extended Expressions 251 6.4 Basic Combinators 258 6.5 Other Issues 258 APPENDICES I Concrete Syntax 261 II Conventions 265 III Example definition 266-277 220 0. INTRODUCTION Q This paper is intended to provide a reference document which describes the meta-language used throughout this volume. It is equally important to appreciate which objectives are not being aimed for here. On the one hand this document is definitely not a tutorial, neither for de- notational semantics nor for the specific meta-language used. In much of this paper no motivation at all is provided, the reader who is not familiar with the general ideas is recommended to read Bj~rner 78b be- fore attempting to use this paper.
    [Show full text]
  • Propositional Logic
    Propositional Logic LX 502 - Semantics September 19, 2008 1. Semantics and Propositions Natural language is used to communicate information about the world, typically between a speaker and an addressee. This information is conveyed using linguistic expressions. What makes natural language a suitable tool for communication is that linguistic expressions are not just grammatical forms: they also have content. Competent speakers of a language know the forms and the contents of that language, and how the two are systematically related. In other words, you can know the forms of a language but you are not a competent speaker unless you can systematically associate each form with its appropriate content. Syntax, phonology, and morphology are concerned with the form of linguistic expressions. In particular, Syntax is the study of the grammatical arrangement of words—the form of phrases but not their content. From Chomsky we get the sentence in (1), which is grammatical but meaningless. (1) Colorless green ideas sleep furiously Semantics is the study of the content of linguistic expressions. It is defined as the study of the meaning expressed by elements in a language and combinations thereof. Elements that contribute to the content of a linguistic expression can be syntactic (e.g., verbs, nouns, adjectives), morphological (e.g., tense, number, person), and phonological (e.g., intonation, focus). We’re going to restrict our attention to the syntactic elements for now. So for us, semantics will be the study of the meaning expressed by words and combinations thereof. Our goals are listed in (2). (2) i. To determine the conditions under which a sentence is true of the world (and those under which it is false) ii.
    [Show full text]
  • Church's Thesis As an Empirical Hypothesis
    Pobrane z czasopisma Annales AI- Informatica http://ai.annales.umcs.pl Data: 26/09/2021 13:13:22 Annales UMCS Annales UMCS Informatica AI 3 (2005) 119-130 Informatica Lublin-Polonia Sectio AI http://www.annales.umcs.lublin.pl/ Church’s thesis as an empirical hypothesis Adam Olszewski Pontifical Academy of Theology, Kanonicza 25, 31-002 Kraków, Poland The studies of Church’s thesis (further denoted as CT) are slowly gaining their intensity. Since different formulations of the thesis are being proposed, it is necessary to state how it should be understood. The following is the formulation given by Church: [CT] The concept of the effectively calculable function1 is identical with the concept of the recursive function. The conviction that the above formulation is correct, finds its confirmation in Church’s own words:2 We now define the notion, […] of an effectively calculable function of positive integers by identifying it with the notion of a recursive function of positive integers […]. Frege thought that the material equivalence of concepts is the approximation of their identity. For any concepts F, G: Concept FUMCS is identical with concept G iff ∀x (Fx ≡ Gx) 3. The symbol Fx should be read as “object x falls under the concept F”. The contemporary understanding of the right side of the above equation was dominated by the first order logic and set theory. 1Unless stated otherwise, the term function in this work always means function defined on the set natural numbers, that is, on natural numbers including zero. I would rather use the term concept than the term notion.
    [Show full text]