Syntax of Predicate Logic

Total Page:16

File Type:pdf, Size:1020Kb

Syntax of Predicate Logic Syntax of Predicate Logic Syntax of Predicate Logic 1/25 The Language of Predicate Logic • Domain: a non-empty set of objects • Constants: concrete objects in the domain • Variables: placeholders for concrete objects in the domain • Functions: takes objects in the domain as arguments and returns an object of the domain. • Predicates: takes objects in the domain as arguments and returns true or false. They describe properties of objects or relationships between objects. • Quantifiers: for how many objects in the domain is the statement true? Syntax of Predicate Logic 2/25 A question on functions Consider two translations of the sentence “every child is younger than its mother.” 1. (∀푥 (∀푦 ((퐶ℎ푖푙푑(푥) ∧ 푀표푡ℎ푒푟(푦, 푥)) → 푌 표푢푛푔푒푟(푥, 푦)))) 2. (∀푥 (퐶ℎ푖푙푑(푥) → 푌 표푢푛푔푒푟(푥, 푚표푡ℎ푒푟(푥)))) Which of the following is the best answer? a. Both are wrong. b. 1 is correct and 2 is wrong. c. 2 is correct and 1 is wrong. d. Both are correct. 1 is better. e. Both are correct. 2 is better. The domain is the set of people. 퐶ℎ푖푙푑(푥) means 푥 is a child. 푀표푡ℎ푒푟(푥, 푦) means 푥 is 푦’s mother. 푌 표푢푛푔푒푟(푥, 푦) means 푥 is younger than 푦. 푚표푡ℎ푒푟(푥) returns 푥’s mother. Syntax of Predicate Logic 3/25 Functions Using functions allows us to avoid ugly/inelegant predicate logic formulas. Try translating the following sentence with and without functions. “Andy and Paul have the same maternal grandmother.” Syntax of Predicate Logic 4/25 The Language of Predicate Logic The seven kinds of symbols: 1. Constant symbols. Usually 푐, 푑, 푐1, 푐2, … , 푑1, 푑2 … 2. Variables. Usually 푥, 푦, 푧, … 푥1, 푥2, … , 푦1, 푦2 … 3. Function symbols. Usually 푓, 푔, ℎ, … 푓1, 푓2, … , 푔1, 푔2,… 4. Predicate symbols. 푃 , 푄,…푃1, 푃2, …, 푄1, 푄2,… 5. Connectives: ¬, ∧, ∨, →, and ↔ 6. Quantifiers: ∀ and ∃ 7. Punctuation: ‘(’, ‘)’, and ‘,’ Function symbols and predicate symbols have an assigned arity—the number of arguments required. For example, • 푓(1): 푓 is a unary function. • 푃 (2): 푃 is a binary predicate. Syntax of Predicate Logic Symbols 5/25 Two kinds of expressions In predicate logic, we need to consider two kinds of expressions: • those that refer to an object of the domain, called terms, and • those that can have a truth value, called formulas. Syntax of Predicate Logic Terms and Formulas 6/25 Terms Each term refers to an object of the domain. We define the set of terms inductively as follows. 1. Each constant symbol is an atomic term. 2. Each variable is an atomic term. 3. 푓(푡1, … , 푡푛) is a term if 푡1, … , 푡푛 are terms and 푓 is an 푛-ary function symbol. (If 푓 is a binary function symbol, then we may write (푡1 푓 푡2) instead of 푓(푡1, 푡2).) 4. Nothing else is a term. Syntax of Predicate Logic Terms and Formulas 7/25 Which expressions are terms? A term refers to an object of the domain. Which of the following expressions is a term? a. 푔(푑, 푑) b. 푃 (푓(푥, 푦), 푑) c. 푓(푥, 푔(푦, 푧), 푑) d. 푔(푥, 푓(푦, 푧), 푑) Let 푑 be a constant symbol. Let 푃 be a predicate symbol with 2 arguments. Let 푓 be a function symbol with 2 arguments and 푔 be a function symbol with 3 arguments. Let 푥, 푦, and 푧 be variable symbols. Syntax of Predicate Logic Terms and Formulas 8/25 Is this a term? True or False: The expression (2 − 푓(푥)) + (푦 ∗ 푥) is a term. a. True b. False c. Not enough information to tell The domain is the set of integers. +, − and ∗ are binary functions. 푓 is a unary function. 푥 and 푦 are variables and 2 is a constant. Syntax of Predicate Logic Terms and Formulas 9/25 Well-Formed Predicate Logic Formulas We define the set of well-formed formulas of predicate logic inductively as follows. 1. 푃 (푡1, … , 푡푛) is an atomic formula if 푃 is an 푛-ary predicate symbol and each 푡푖 is a term (1 ≤ 푖 ≤ 푛). 2. (¬훼) is a formula if 훼 is a formula. 3. (훼 ⋆ 훽) is a formula if 훼 and 훽 are formulas and ⋆ is a binary connective symbol. 4. Each of (∀푥 훼) and (∃푥 훼) is a formula if 훼 is a formula and 푥 is a variable. 5. Nothing else is a formula. Syntax of Predicate Logic Terms and Formulas 10/25 Determine whether a formula is well-formed 푚 is a constant and 푥 and 푦 are variables. 푃 (2) and 푄(2) are binary predicates. 푓(1) is a unary function. Which of the following is a well-formed predicate logic formula? a. (푓(푥) → 푃 (푥, 푦)) b. ∀푦 푃 (푚, 푓(푦)) c. 푃 (푥, 푦) → 푄(푄(푥)) d. 푄(푚, 푓(푚)) e. 푃 (푚, 푓(푄(푥, 푦))) Syntax of Predicate Logic Terms and Formulas 11/25 Determine whether a formula is well-formed Things to consider: • Are there enough brackets? Are the brackets in the right places? • Is each unary/binary connective applied to the right number of predicates? • Does every function have the right number and type of arguments? • Does every predicate have the right number and type of arguments? Syntax of Predicate Logic Terms and Formulas 12/25 Comparing the Definitions of WFFs Let’s compare and contrast the definitions of WFFs for propositional and predicate logic. • Which parts of the two definitions are the same? • The definition of WFF for propositional logic says that a propositional variable is an atomic WFF. Is this still the case for predicate logic? • What is new in the definition of WFF for predicate logic compared to the definition of WFF for propositional logic? • If we were to prove that every WFF for predicate logic has a property P by structural induction, what does the proof look like? What are the base case(s) and what are the cases in the induction step? Syntax of Predicate Logic Terms and Formulas 13/25 Parse Trees of Predicate Logic Formulas New elements in the parse tree: • Quantifiers ∀푥 and ∃푦 has one subtree, similar to the unary connective negation. • A predicate 푃 (푡1, 푡2, … , 푡푛) has a node labelled 푃 with a sub-tree for each of the terms 푡1, 푡2, … , 푡푛. • A function 푓(푡1, 푡2, … , 푡푛) has a node labelled 푓 with a sub-tree for each of the terms 푡1, 푡2, … , 푡푛. Example 1: (∀푥 (푃 (푥) ∧ 푄(푥))) → (¬(푃 (푓(푥, 푦)) ∨ 푄(푦))) Example 2: (∀푥 ((푃 (푥) ∧ 푄(푥)) → (¬(푃 (푓(푥, 푦)) ∨ 푄(푦))))) Syntax of Predicate Logic Terms and Formulas 14/25 Evaluating a Formula To evaluate the truth value of a formula, we need to replace the variables by concrete objects in the domain. However, we don’t necessarily have to perform this substitution for every variable. There are two types of variables in a formula: • A variable may be free. To evaluate the formula, we need to replace a free variable by an object in the domain. • A variable may be bound by a quantifier. The quantifier tells us how to evaluate the formula. We need to understand how to determine whether a variable is free/bound and how to replace a free variable with an object in the domain. Syntax of Predicate Logic Free and Bound Variables 15/25 Free and Bound Variables In a formula (∀푥 훼) or (∃푥 훼), the scope of a quantifier is the formula 훼. A quantifier binds its variable within its scope. An occurrence of a variable in a formula is bound if it lies in the scope of some quantifier of the same variable. Otherwise the occurrence ofthis variable is free. • If a variable occurs multiple times, we need to consider each occurrence of the variable separately. • The variable symbol immediately after ∃ or ∀ is neither free nor bound. A formula with no free variables is called a closed formula or sentence. Syntax of Predicate Logic Free and Bound Variables 16/25 Determine whether a variable is free or bound Determine whether a variable is free or bound using a parse tree. 1. Draw the parse tree for the formula. 2. Choose the leaf node for an occurrence of a variable. 3. Walk up the tree. Stop as soon as we encounter a quantifier for this variable or we reach the root of the tree. 4. If we encountered a quantifier for the variable, this occurrence of the variable is bound. 5. If we reached the root of the tree which is not a quantifier for the variable, this occurrence of the variable is free. Example 1: (∀푥 (푃 (푥) ∧ 푄(푥))) → (¬(푃 (푓(푥, 푦)) ∨ 푄(푦))) Example 2: (∀푥 ((푃 (푥) ∧ 푄(푥)) → (¬(푃 (푓(푥, 푦)) ∨ 푄(푦))))) Syntax of Predicate Logic Free and Bound Variables 17/25 Substitution When writing natural deduction proofs in predicate logic, it is often useful to replace a variable in a formula with a term. Suppose that the following sentences are true: (∀푥 (Fish(푥) → Swim(푥))) (1) Fish(Nemo) (2) To conclude that Nemo can swim, we need to replace every occurence of the variable x in the implication Fish(푥) → Swim(푥) by the term Nemo. This gives us (Fish(Nemo) → Swim(Nemo)) (3) By modus ponens on (2) and (3), we conclude that Swim(Nemo). Formally, we use substitution to refer to the process of replacing 푥 by Nemo in the formula ∀푥 Fish(푥) → Swim(푥). Syntax of Predicate Logic Substitution 18/25 Substitution Intuitively, 훼[푡/푥] answers the question, “What happens to 훼 if 푥 has the value specified by term 푡?” For a variable 푥, a term 푡, and a formula 훼, 훼[푡/푥] denotes the resulting formula by replacing each free occurrence of 푥 in 훼 with 푡.
Recommended publications
  • Chapter 2 Introduction to Classical Propositional
    CHAPTER 2 INTRODUCTION TO CLASSICAL PROPOSITIONAL LOGIC 1 Motivation and History The origins of the classical propositional logic, classical propositional calculus, as it was, and still often is called, go back to antiquity and are due to Stoic school of philosophy (3rd century B.C.), whose most eminent representative was Chryssipus. But the real development of this calculus began only in the mid-19th century and was initiated by the research done by the English math- ematician G. Boole, who is sometimes regarded as the founder of mathematical logic. The classical propositional calculus was ¯rst formulated as a formal ax- iomatic system by the eminent German logician G. Frege in 1879. The assumption underlying the formalization of classical propositional calculus are the following. Logical sentences We deal only with sentences that can always be evaluated as true or false. Such sentences are called logical sentences or proposi- tions. Hence the name propositional logic. A statement: 2 + 2 = 4 is a proposition as we assume that it is a well known and agreed upon truth. A statement: 2 + 2 = 5 is also a proposition (false. A statement:] I am pretty is modeled, if needed as a logical sentence (proposi- tion). We assume that it is false, or true. A statement: 2 + n = 5 is not a proposition; it might be true for some n, for example n=3, false for other n, for example n= 2, and moreover, we don't know what n is. Sentences of this kind are called propositional functions. We model propositional functions within propositional logic by treating propositional functions as propositions.
    [Show full text]
  • COMPSCI 501: Formal Language Theory Insights on Computability Turing Machines Are a Model of Computation Two (No Longer) Surpris
    Insights on Computability Turing machines are a model of computation COMPSCI 501: Formal Language Theory Lecture 11: Turing Machines Two (no longer) surprising facts: Marius Minea Although simple, can describe everything [email protected] a (real) computer can do. University of Massachusetts Amherst Although computers are powerful, not everything is computable! Plus: “play” / program with Turing machines! 13 February 2019 Why should we formally define computation? Must indeed an algorithm exist? Back to 1900: David Hilbert’s 23 open problems Increasingly a realization that sometimes this may not be the case. Tenth problem: “Occasionally it happens that we seek the solution under insufficient Given a Diophantine equation with any number of un- hypotheses or in an incorrect sense, and for this reason do not succeed. known quantities and with rational integral numerical The problem then arises: to show the impossibility of the solution under coefficients: To devise a process according to which the given hypotheses or in the sense contemplated.” it can be determined in a finite number of operations Hilbert, 1900 whether the equation is solvable in rational integers. This asks, in effect, for an algorithm. Hilbert’s Entscheidungsproblem (1928): Is there an algorithm that And “to devise” suggests there should be one. decides whether a statement in first-order logic is valid? Church and Turing A Turing machine, informally Church and Turing both showed in 1936 that a solution to the Entscheidungsproblem is impossible for the theory of arithmetic. control To make and prove such a statement, one needs to define computability. In a recent paper Alonzo Church has introduced an idea of “effective calculability”, read/write head which is equivalent to my “computability”, but is very differently defined.
    [Show full text]
  • Thinking Recursively Part Four
    Thinking Recursively Part Four Announcements ● Assignment 2 due right now. ● Assignment 3 out, due next Monday, April 30th at 10:00AM. ● Solve cool problems recursively! ● Sharpen your recursive skillset! A Little Word Puzzle “What nine-letter word can be reduced to a single-letter word one letter at a time by removing letters, leaving it a legal word at each step?” Shrinkable Words ● Let's call a word with this property a shrinkable word. ● Anything that isn't a word isn't a shrinkable word. ● Any single-letter word is shrinkable ● A, I, O ● Any multi-letter word is shrinkable if you can remove a letter to form a word, and that word itself is shrinkable. ● So how many shrinkable words are there? Recursive Backtracking ● The function we wrote last time is an example of recursive backtracking. ● At each step, we try one of many possible options. ● If any option succeeds, that's great! We're done. ● If none of the options succeed, then this particular problem can't be solved. Recursive Backtracking if (problem is sufficiently simple) { return whether or not the problem is solvable } else { for (each choice) { try out that choice. if it succeeds, return success. } return failure } Failure in Backtracking S T A R T L I N G Failure in Backtracking S T A R T L I N G S T A R T L I G Failure in Backtracking S T A R T L I N G S T A R T L I G Failure in Backtracking S T A R T L I N G Failure in Backtracking S T A R T L I N G S T A R T I N G Failure in Backtracking S T A R T L I N G S T A R T I N G S T R T I N G Failure in Backtracking S T A R T L I N G S T A R T I N G S T R T I N G Failure in Backtracking S T A R T L I N G S T A R T I N G Failure in Backtracking S T A R T L I N G S T A R T I N G S T A R I N G Failure in Backtracking ● Returning false in recursive backtracking does not mean that the entire problem is unsolvable! ● Instead, it just means that the current subproblem is unsolvable.
    [Show full text]
  • Chapter 6 Formal Language Theory
    Chapter 6 Formal Language Theory In this chapter, we introduce formal language theory, the computational theories of languages and grammars. The models are actually inspired by formal logic, enriched with insights from the theory of computation. We begin with the definition of a language and then proceed to a rough characterization of the basic Chomsky hierarchy. We then turn to a more de- tailed consideration of the types of languages in the hierarchy and automata theory. 6.1 Languages What is a language? Formally, a language L is defined as as set (possibly infinite) of strings over some finite alphabet. Definition 7 (Language) A language L is a possibly infinite set of strings over a finite alphabet Σ. We define Σ∗ as the set of all possible strings over some alphabet Σ. Thus L ⊆ Σ∗. The set of all possible languages over some alphabet Σ is the set of ∗ all possible subsets of Σ∗, i.e. 2Σ or ℘(Σ∗). This may seem rather simple, but is actually perfectly adequate for our purposes. 6.2 Grammars A grammar is a way to characterize a language L, a way to list out which strings of Σ∗ are in L and which are not. If L is finite, we could simply list 94 CHAPTER 6. FORMAL LANGUAGE THEORY 95 the strings, but languages by definition need not be finite. In fact, all of the languages we are interested in are infinite. This is, as we showed in chapter 2, also true of human language. Relating the material of this chapter to that of the preceding two, we can view a grammar as a logical system by which we can prove things.
    [Show full text]
  • Notes on Mathematical Logic David W. Kueker
    Notes on Mathematical Logic David W. Kueker University of Maryland, College Park E-mail address: [email protected] URL: http://www-users.math.umd.edu/~dwk/ Contents Chapter 0. Introduction: What Is Logic? 1 Part 1. Elementary Logic 5 Chapter 1. Sentential Logic 7 0. Introduction 7 1. Sentences of Sentential Logic 8 2. Truth Assignments 11 3. Logical Consequence 13 4. Compactness 17 5. Formal Deductions 19 6. Exercises 20 20 Chapter 2. First-Order Logic 23 0. Introduction 23 1. Formulas of First Order Logic 24 2. Structures for First Order Logic 28 3. Logical Consequence and Validity 33 4. Formal Deductions 37 5. Theories and Their Models 42 6. Exercises 46 46 Chapter 3. The Completeness Theorem 49 0. Introduction 49 1. Henkin Sets and Their Models 49 2. Constructing Henkin Sets 52 3. Consequences of the Completeness Theorem 54 4. Completeness Categoricity, Quantifier Elimination 57 5. Exercises 58 58 Part 2. Model Theory 59 Chapter 4. Some Methods in Model Theory 61 0. Introduction 61 1. Realizing and Omitting Types 61 2. Elementary Extensions and Chains 66 3. The Back-and-Forth Method 69 i ii CONTENTS 4. Exercises 71 71 Chapter 5. Countable Models of Complete Theories 73 0. Introduction 73 1. Prime Models 73 2. Universal and Saturated Models 75 3. Theories with Just Finitely Many Countable Models 77 4. Exercises 79 79 Chapter 6. Further Topics in Model Theory 81 0. Introduction 81 1. Interpolation and Definability 81 2. Saturated Models 84 3. Skolem Functions and Indescernables 87 4. Some Applications 91 5.
    [Show full text]
  • Formal Languages
    Formal Languages Discrete Mathematical Structures Formal Languages 1 Strings Alphabet: a finite set of symbols – Normally characters of some character set – E.g., ASCII, Unicode – Σ is used to represent an alphabet String: a finite sequence of symbols from some alphabet – If s is a string, then s is its length ¡ ¡ – The empty string is symbolized by ¢ Discrete Mathematical Structures Formal Languages 2 String Operations Concatenation x = hi, y = bye ¡ xy = hibye s ¢ = s = ¢ s ¤ £ ¨© ¢ ¥ § i 0 i s £ ¥ i 1 ¨© s s § i 0 ¦ Discrete Mathematical Structures Formal Languages 3 Parts of a String Prefix Suffix Substring Proper prefix, suffix, or substring Subsequence Discrete Mathematical Structures Formal Languages 4 Language A language is a set of strings over some alphabet ¡ Σ L Examples: – ¢ is a language – ¢ is a language £ ¤ – The set of all legal Java programs – The set of all correct English sentences Discrete Mathematical Structures Formal Languages 5 Operations on Languages Of most concern for lexical analysis Union Concatenation Closure Discrete Mathematical Structures Formal Languages 6 Union The union of languages L and M £ L M s s £ L or s £ M ¢ ¤ ¡ Discrete Mathematical Structures Formal Languages 7 Concatenation The concatenation of languages L and M £ LM st s £ L and t £ M ¢ ¤ ¡ Discrete Mathematical Structures Formal Languages 8 Kleene Closure The Kleene closure of language L ∞ ¡ i L £ L i 0 Zero or more concatenations Discrete Mathematical Structures Formal Languages 9 Positive Closure The positive closure of language L ∞ i L £ L
    [Show full text]
  • Propositional Logic: Semantics and an Example
    Recap: Syntax PDC: Semantics Using Logic to Model the World Proofs Propositional Logic: Semantics and an Example CPSC 322 { Logic 2 Textbook x5.2 Propositional Logic: Semantics and an Example CPSC 322 { Logic 2, Slide 1 Recap: Syntax PDC: Semantics Using Logic to Model the World Proofs Lecture Overview 1 Recap: Syntax 2 Propositional Definite Clause Logic: Semantics 3 Using Logic to Model the World 4 Proofs Propositional Logic: Semantics and an Example CPSC 322 { Logic 2, Slide 2 Definition (body) A body is an atom or is of the form b1 ^ b2 where b1 and b2 are bodies. Definition (definite clause) A definite clause is an atom or is a rule of the form h b where h is an atom and b is a body. (Read this as \h if b.") Definition (knowledge base) A knowledge base is a set of definite clauses Recap: Syntax PDC: Semantics Using Logic to Model the World Proofs Propositional Definite Clauses: Syntax Definition (atom) An atom is a symbol starting with a lower case letter Propositional Logic: Semantics and an Example CPSC 322 { Logic 2, Slide 3 Definition (definite clause) A definite clause is an atom or is a rule of the form h b where h is an atom and b is a body. (Read this as \h if b.") Definition (knowledge base) A knowledge base is a set of definite clauses Recap: Syntax PDC: Semantics Using Logic to Model the World Proofs Propositional Definite Clauses: Syntax Definition (atom) An atom is a symbol starting with a lower case letter Definition (body) A body is an atom or is of the form b1 ^ b2 where b1 and b2 are bodies.
    [Show full text]
  • Symbol Sense: Informal Sense-Making in Formal Mathematics
    Symbol Sense: Informal Sense-making in Formal Mathematics ABRAHAM ARCA VI Prologue Irineo Funes, the "memorious ", was created from Borges ~s fan­ tions and formulating mathematical arguments (proofs) tastic palette He had an extraordinarity retentive memory, he Instruction does not always provide opportunities not only was able to remember everything, be it the shapes of the southern not to memorize, but also to "forget" rules and details and clouds on the dawn of April 30th, 1882, or all the words in to be able to see through them in order to think, abstract, Engli'>h, French, Portuguese and Latin Each one of his experi­ generalize, and plan solution strategies Therefore, it ences was fully and accurately registered in his infinite memory would seem reasonable to attempt a description of a paral­ On one occasion he thought of "reducing" each past day of his lel notion to that of "number sense" in arithmetic: the idea life to s·eventy thousand remembrances to be referred to by num­ of "symbol sense".[!] bers. Two considerations dissuaded him: the task was inter­ minable and futile. Towards the end of the story, the real tragedy What is symbol sense? A first round of Funes is revealed He was incapable of general, "platonic " Compared to the attention which has been given to "num­ ideas For example, it was hard for him to understand that the ber sense", there is very little in the literature on "'symbol generic name dog included so many individuals of diverse sizes sense". One welcome exception is Fey [1990] He does not and shapes Moreover,
    [Show full text]
  • Logic Programming Lecture 19 Tuesday, April 5, 2016 1 Logic Programming 2 Prolog
    Harvard School of Engineering and Applied Sciences — CS 152: Programming Languages Logic programming Lecture 19 Tuesday, April 5, 2016 1 Logic programming Logic programming has its roots in automated theorem proving. Logic programming differs from theorem proving in that logic programming uses the framework of a logic to specify and perform computation. Essentially, a logic program computes values, using mechanisms that are also useful for deduction. Logic programming typically restricts itself to well-behaved fragments of logic. We can think of logic programs as having two interpretations. In the declarative interpretation, a logic pro- gram declares what is being computed. In the procedural interpretation, a logic program program describes how a computation takes place. In the declarative interpretation, one can reason about the correctness of a program without needing to think about underlying computation mechanisms; this makes declarative programs easier to understand, and to develop. A lot of the time, once we have developed a declarative program using a logic programming language, we also have an executable specification, that is, a procedu- ral interpretation that tells us how to compute what we described. This is one of the appealing features of logic programming. (In practice, executable specifications obtained this way are often inefficient; an under- standing of the underlying computational mechanism is needed to make the execution of the declarative program efficient.) We’ll consider some of the concepts of logic programming by considering the programming language Prolog, which was developed in the early 70s, initially as a programming language for natural language processing. 2 Prolog We start by introducing some terminology and syntax.
    [Show full text]
  • Recursion Theory Notes, Fall 2011 0.1 Introduction
    Recursion Theory Notes, Fall 2011 Lecturer: Lou van den Dries 0.1 Introduction Recursion theory (or: theory of computability) is a branch of mathematical logic studying the notion of computability from a rather theoretical point of view. This includes giving a lot of attention to what is not computable, or what is computable relative to any given, not necessarily computable, function. The subject is interesting on philosophical-scientific grounds because of the Church- Turing Thesis and its role in computer science, and because of the intriguing concept of Kolmogorov complexity. This course tries to keep touch with how recursion theory actually impacts mathematics and computer science. This impact is small, but it does exist. Accordingly, the first chapter of the course covers the basics: primitive recur- sion, partial recursive functions and the Church-Turing Thesis, arithmetization and the theorems of Kleene, the halting problem and Rice's theorem, recur- sively enumerable sets, selections and reductions, recursive inseparability, and index systems. (Turing machines are briefly discussed, but the arithmetization is based on a numerical coding of combinators.) The second chapter is devoted to the remarkable negative solution (but with positive aspects) of Hilbert's 10th Problem. This uses only the most basic notions of recursion theory, plus some elementary number theory that is worth knowing in any case; the coding aspects of natural numbers are combined here ingeniously with the arithmetic of the semiring of natural numbers. The last chapter is on Kolmogorov complexity, where concepts of recursion theory are used to define and study notions of randomness and information content.
    [Show full text]
  • Set Notation and Concepts
    Appendix Set Notation and Concepts “In mathematics you don’t understand things. You just get used to them.” John von Neumann (1903–1957) This appendix is primarily a brief run-through of basic concepts from set theory, but it also in Sect. A.4 mentions set equations, which are not always covered when introducing set theory. A.1 Basic Concepts and Notation A set is a collection of items. You can write a set by listing its elements (the items it contains) inside curly braces. For example, the set that contains the numbers 1, 2 and 3 can be written as {1, 2, 3}. The order of elements do not matter in a set, so the same set can be written as {2, 1, 3}, {2, 3, 1} or using any permutation of the elements. The number of occurrences also does not matter, so we could also write the set as {2, 1, 2, 3, 1, 1} or in an infinity of other ways. All of these describe the same set. We will normally write sets without repetition, but the fact that repetitions do not matter is important to understand the operations on sets. We will typically use uppercase letters to denote sets and lowercase letters to denote elements in a set, so we could write M ={2, 1, 3} and x = 2 as an element of M. The empty set can be written either as an empty list of elements ({})orusing the special symbol ∅. The latter is more common in mathematical texts. A.1.1 Operations and Predicates We will often need to check if an element belongs to a set or select an element from a set.
    [Show full text]
  • The Entscheidungsproblem and Alan Turing
    The Entscheidungsproblem and Alan Turing Author: Laurel Brodkorb Advisor: Dr. Rachel Epstein Georgia College and State University December 18, 2019 1 Abstract Computability Theory is a branch of mathematics that was developed by Alonzo Church, Kurt G¨odel,and Alan Turing during the 1930s. This paper explores their work to formally define what it means for something to be computable. Most importantly, this paper gives an in-depth look at Turing's 1936 paper, \On Computable Numbers, with an Application to the Entscheidungsproblem." It further explores Turing's life and impact. 2 Historic Background Before 1930, not much was defined about computability theory because it was an unexplored field (Soare 4). From the late 1930s to the early 1940s, mathematicians worked to develop formal definitions of computable functions and sets, and applying those definitions to solve logic problems, but these problems were not new. It was not until the 1800s that mathematicians began to set an axiomatic system of math. This created problems like how to define computability. In the 1800s, Cantor defined what we call today \naive set theory" which was inconsistent. During the height of his mathematical period, Hilbert defended Cantor but suggested an axiomatic system be established, and characterized the Entscheidungsproblem as the \fundamental problem of mathemat- ical logic" (Soare 227). The Entscheidungsproblem was proposed by David Hilbert and Wilhelm Ackerman in 1928. The Entscheidungsproblem, or Decision Problem, states that given all the axioms of math, there is an algorithm that can tell if a proposition is provable. During the 1930s, Alonzo Church, Stephen Kleene, Kurt G¨odel,and Alan Turing worked to formalize how we compute anything from real numbers to sets of functions to solve the Entscheidungsproblem.
    [Show full text]