On Synthetic Undecidability in Coq, with an Application to the Entscheidungsproblem

Total Page:16

File Type:pdf, Size:1020Kb

On Synthetic Undecidability in Coq, with an Application to the Entscheidungsproblem On Synthetic Undecidability in Coq, with an Application to the Entscheidungsproblem Yannick Forster Dominik Kirst Gert Smolka Saarland University Saarland University Saarland University Saarbrücken, Germany Saarbrücken, Germany Saarbrücken, Germany [email protected] [email protected] [email protected] Abstract like decidability, enumerability, and reductions are avail- We formalise the computational undecidability of validity, able without reference to a concrete model of computation satisfiability, and provability of first-order formulas follow- such as Turing machines, general recursive functions, or ing a synthetic approach based on the computation native the λ-calculus. For instance, representing a given decision to Coq’s constructive type theory. Concretely, we consider problem by a predicate p on a type X, a function f : X ! B Tarski and Kripke semantics as well as classical and intu- with 8x: p x $ f x = tt is a decision procedure, a function itionistic natural deduction systems and provide compact д : N ! X with 8x: p x $ ¹9n: д n = xº is an enumer- many-one reductions from the Post correspondence prob- ation, and a function h : X ! Y with 8x: p x $ q ¹h xº lem (PCP). Moreover, developing a basic framework for syn- for a predicate q on a type Y is a many-one reduction from thetic computability theory in Coq, we formalise standard p to q. Working formally with concrete models instead is results concerning decidability, enumerability, and reducibil- cumbersome, given that every defined procedure needs to ity without reference to a concrete model of computation. be shown representable by a concrete entity of the model. For instance, we prove the equivalence of Post’s theorem To avoid this tedium, many presentations resort to informal with Markov’s principle and provide a convenient technique arguments regarding the algorithmic properties at the core for establishing the enumerability of inductive predicates of their constructions. such as the considered proof systems and PCP. Enabling the outlined synthetic approach to computability as explored by Richman [36] and Bauer [2, 3], constructive CCS Concepts • Theory of computation → Logic; type thoery is well-suited for formalising positive statements about decision problems. Turning to negative statements like Keywords synthetic undecidability, Entscheidungsproblem, undecidability and non-enumerability, however, the situation Coq, Post’s theorem, Markov’s principle, first-order logic becomes more intricate. Typical formulations of construc- ACM Reference Format: tive type theory such as Martin-Löf type theory (MLTT) or Yannick Forster, Dominik Kirst, and Gert Smolka. 2019. On Syn- Coq’s underlying calculus of inductive constructions (CIC) thetic Undecidability in Coq, with an Application to the Entschei- are consistent with the assumption that every predicate is de- dungsproblem. In Proceedings of the 8th ACM SIGPLAN International cidable, so proving a concrete decision problem undecidable Conference on Certified Programs and Proofs (CPP ’19), January 14– is not outright possible. A potential way out would be to roll 15, 2019, Cascais, Portugal. ACM, New York, NY, USA, 14 pages. back to a concrete model and establish negative results w.r.t. https://doi.org/10.1145/3293880.3294091 the modelled computation – again producing unwelcome technical overhead. The preferable solution, employed in 1 Introduction this work, is to verify a synthetic reduction from a problem Every function definable in constructive type theory is com- informally known to be undecidable – establishing negative putable. Thus, standard notions from computability theory results relative to the chosen base in a transparent way. The base we choose is the Post correspondence problem Permission to make digital or hard copies of all or part of this work for (PCP), an easy to formulate combinatorial problem concern- personal or classroom use is granted without fee provided that copies ing matching sequences of strings. Proven undecidable by are not made or distributed for profit or commercial advantage and that Post in 1946 [34], PCP became a powerful tool in computabil- copies bear this notice and the full citation on the first page. Copyrights ity theory, often admitting elegant reductions. In previous for components of this work owned by others than the author(s) must be honored. Abstracting with credit is permitted. To copy otherwise, or work [12], we formalised a reduction from the halting prob- republish, to post on servers or to redistribute to lists, requires prior specific lem of Turing machines to PCP in Coq, hence providing permission and/or a fee. Request permissions from [email protected]. reliable evidence that the assumption that PCP is undecid- CPP ’19, January 14–15, 2019, Cascais, Portugal able in the synthetic sense can be safely added to constructive © 2019 Copyright held by the owner/author(s). Publication rights licensed type theory. Concretely, (locally) assuming that PCP is not to ACM. co-enumerable implies that every problem it reduces to is ACM ISBN 978-1-4503-6222-1/19/01...$15.00 https://doi.org/10.1145/3293880.3294091 not co-enumerable and hence undecidable. CPP ’19, January 14–15, 2019, Cascais, Portugal Yannick Forster, Dominik Kirst, and Gert Smolka In this work, we use the outlined strategy to address an- Outline The technical part of this paper is organised in two other seminal decision problem in computability theory, sections. First, in Section2, we develop the basics of synthetic namely the Entscheidungsproblem. Asking for a decision pro- computability theory addressing decidability and enumer- cedure for the validity of first-order formulas, it was pro- ability, many-one reductions, Post’s theorem and Markov’s grammatically posed by Hilbert and Ackermann in 1928 [11] principle, the Post correspondence problem, and infinite data and famously answered to the negative by Turing [44] and types. Secondly, in Section3, we apply the synthetic frame- Church [8]. We verify a simple reduction following Floyd work to proving the undecidability of validity, provability, and Manna [31] from PCP to the Entscheidungsproblem for satisfiability, their intuitionistic counterparts, and classical formulas in the universal-implicative fragment of first-order provability of first-order formulas. We conclude in Section4 logic over a small signature. Furthermore, we give similar with general comments as well as some remarks concerning reductions to related problems such as intuitionistic and clas- the Coq formalisation, related work, and future work. sical variants of natural deduction systems and satisfiability of formulas including negation. To this end, we develop the 2 Elementary Synthetic Computability metatheory of first-order logic to an extent necessary to ver- We work in a constructive type theory providing a hierarchy ify the reductions, including soundness and a generalised of predicative universes T of computational types, an impred- double negation translation. We refrain from a comprehen- icative universe P of propositions, and a general scheme for sive account covering further standard results like complete- inductive types subject to pattern matching and structural ness since they do not yield shorter undecidability proofs recursion. We employ the standard notation for (dependent) and (mostly) rely on additional assumptions. products, (dependent) sums, and logical connectives placed As we formalise our results using the Coq proof assistant in P. The inductive type of booleans is defined as B := tt j ff, based on CIC, which comes with an impredicative universe the unit type is defined as 1 := ∗, and the natural numbers of propositions, we deviate in some aspects from a develop- are defined as N := 0 j Sn for n : N. ment using alternative provers such as Agda based on pure We define the option type over a type X as O¹Xº := ; j pxq MLTT. Most importantly, CIC allows for a propositional ver- for x : X. Moreover, the type of lists over X is defined as sion of existence that hides witnesses from elimination into L¹Xº := »¼ j x :: A for x : X and A : L¹Xº. We write A ++ B for the computational fragment. Thus, an operation definable concatenation, x 2 A for membership, and A ⊆ B for inclusion. 1 in Coq we call guarded minimisation computing minimal Finally, we write »f x j x 2 A¼ for map, »x 2 A j p x¼ for filter witnesses for satisfiable decidable predicates on enumerable and A»n¼ : O¹Xº for element access. types is crucial for our results surrounding Post’s theorem. 2.1 Decidability and Enumerability Contributions Our main contribution is a compact Coq We begin by defining the standard notions of decidability formalisation2 of elementary synthetic computability (900 and enumerability in the synthetic setting. lines of code), various decision problems in first-order logic (750 loc), and their respective undecidability (550 loc). All Definition 2.1. Given a type X, a predicate p : X ! P is definitions and propositions in the PDF version of this paper • decidable if there is a decider f : X ! B such that are hyperlinked with the corresponding statements in the 8x: p x $ f x = tt. browsable HTML version of the formalisation. We elaborate • enumerable if there is an enumerator f : N ! O¹Xº on some formalisation tricks like tagged inductive types for such that 8x: p x $ 9n: f n = pxq. fragments of syntax and deduction systems and an enumer- The complement p is defined as p := λx: :px and we say that p ability technique using cumulative lists in the discussion. is co-enumerable if p is enumerable and that p is co-decidable As mathematical results, we examine synthetic renderings if p is decidable. These definitions generalise to predicates with of standard notions in computability theory such as decidabil- more than one argument as one would expect. ity, enumerability, and many-one reductions and prove basic results culminating in the observed equivalence of Post’s Since every function definable in a constructive type the- theorem and Markov’s principle.
Recommended publications
  • “The Church-Turing “Thesis” As a Special Corollary of Gödel's
    “The Church-Turing “Thesis” as a Special Corollary of Gödel’s Completeness Theorem,” in Computability: Turing, Gödel, Church, and Beyond, B. J. Copeland, C. Posy, and O. Shagrir (eds.), MIT Press (Cambridge), 2013, pp. 77-104. Saul A. Kripke This is the published version of the book chapter indicated above, which can be obtained from the publisher at https://mitpress.mit.edu/books/computability. It is reproduced here by permission of the publisher who holds the copyright. © The MIT Press The Church-Turing “ Thesis ” as a Special Corollary of G ö del ’ s 4 Completeness Theorem 1 Saul A. Kripke Traditionally, many writers, following Kleene (1952) , thought of the Church-Turing thesis as unprovable by its nature but having various strong arguments in its favor, including Turing ’ s analysis of human computation. More recently, the beauty, power, and obvious fundamental importance of this analysis — what Turing (1936) calls “ argument I ” — has led some writers to give an almost exclusive emphasis on this argument as the unique justification for the Church-Turing thesis. In this chapter I advocate an alternative justification, essentially presupposed by Turing himself in what he calls “ argument II. ” The idea is that computation is a special form of math- ematical deduction. Assuming the steps of the deduction can be stated in a first- order language, the Church-Turing thesis follows as a special case of G ö del ’ s completeness theorem (first-order algorithm theorem). I propose this idea as an alternative foundation for the Church-Turing thesis, both for human and machine computation. Clearly the relevant assumptions are justified for computations pres- ently known.
    [Show full text]
  • A Proof of Cantor's Theorem
    Cantor’s Theorem Joe Roussos 1 Preliminary ideas Two sets have the same number of elements (are equinumerous, or have the same cardinality) iff there is a bijection between the two sets. Mappings: A mapping, or function, is a rule that associates elements of one set with elements of another set. We write this f : X ! Y , f is called the function/mapping, the set X is called the domain, and Y is called the codomain. We specify what the rule is by writing f(x) = y or f : x 7! y. e.g. X = f1; 2; 3g;Y = f2; 4; 6g, the map f(x) = 2x associates each element x 2 X with the element in Y that is double it. A bijection is a mapping that is injective and surjective.1 • Injective (one-to-one): A function is injective if it takes each element of the do- main onto at most one element of the codomain. It never maps more than one element in the domain onto the same element in the codomain. Formally, if f is a function between set X and set Y , then f is injective iff 8a; b 2 X; f(a) = f(b) ! a = b • Surjective (onto): A function is surjective if it maps something onto every element of the codomain. It can map more than one thing onto the same element in the codomain, but it needs to hit everything in the codomain. Formally, if f is a function between set X and set Y , then f is surjective iff 8y 2 Y; 9x 2 X; f(x) = y Figure 1: Injective map.
    [Show full text]
  • Revisiting Gödel and the Mechanistic Thesis Alessandro Aldini, Vincenzo Fano, Pierluigi Graziani
    Theory of Knowing Machines: Revisiting Gödel and the Mechanistic Thesis Alessandro Aldini, Vincenzo Fano, Pierluigi Graziani To cite this version: Alessandro Aldini, Vincenzo Fano, Pierluigi Graziani. Theory of Knowing Machines: Revisiting Gödel and the Mechanistic Thesis. 3rd International Conference on History and Philosophy of Computing (HaPoC), Oct 2015, Pisa, Italy. pp.57-70, 10.1007/978-3-319-47286-7_4. hal-01615307 HAL Id: hal-01615307 https://hal.inria.fr/hal-01615307 Submitted on 12 Oct 2017 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Distributed under a Creative Commons Attribution| 4.0 International License Theory of Knowing Machines: Revisiting G¨odeland the Mechanistic Thesis Alessandro Aldini1, Vincenzo Fano1, and Pierluigi Graziani2 1 University of Urbino \Carlo Bo", Urbino, Italy falessandro.aldini, [email protected] 2 University of Chieti-Pescara \G. D'Annunzio", Chieti, Italy [email protected] Abstract. Church-Turing Thesis, mechanistic project, and G¨odelian Arguments offer different perspectives of informal intuitions behind the relationship existing between the notion of intuitively provable and the definition of decidability by some Turing machine. One of the most for- mal lines of research in this setting is represented by the theory of know- ing machines, based on an extension of Peano Arithmetic, encompassing an epistemic notion of knowledge formalized through a modal operator denoting intuitive provability.
    [Show full text]
  • CAS LX 522 Syntax I
    It is likely… CAS LX 522 IP This satisfies the EPP in Syntax I both clauses. The main DPj I′ clause has Mary in SpecIP. Mary The embedded clause has Vi+I VP is the trace in SpecIP. V AP Week 14b. PRO and control ti This specific instance of A- A IP movement, where we move a likely subject from an embedded DP I′ clause to a higher clause is tj generally called subject raising. I VP to leave Reluctance to leave Reluctance to leave Now, consider: Reluctant has two θ-roles to assign. Mary is reluctant to leave. One to the one feeling the reluctance (Experiencer) One to the proposition about which the reluctance holds (Proposition) This looks very similar to Mary is likely to leave. Can we draw the same kind of tree for it? Leave has one θ-role to assign. To the one doing the leaving (Agent). How many θ-roles does reluctant assign? In Mary is reluctant to leave, what θ-role does Mary get? IP Reluctance to leave Reluctance… DPi I′ Mary Vj+I VP In Mary is reluctant to leave, is V AP Mary is doing the leaving, gets Agent t Mary is reluctant to leave. j t from leave. i A′ Reluctant assigns its θ- Mary is showing the reluctance, gets θ roles within AP as A θ IP Experiencer from reluctant. required, Mary moves reluctant up to SpecIP in the main I′ clause by Spellout. ? And we have a problem: I vP But what gets the θ-role to Mary appears to be getting two θ-roles, from leave, and what v′ in violation of the θ-criterion.
    [Show full text]
  • The Validities of Pep and Some Characteristic Formulas in Modal Logic
    THE VALIDITIES OF PEP AND SOME CHARACTERISTIC FORMULAS IN MODAL LOGIC Hong Zhang, Huacan He School of Computer Science, Northwestern Polytechnical University,Xi'an, Shaanxi 710032, P.R. China Abstract: In this paper, we discuss the relationships between some characteristic formulas in normal modal logic with their frames. We find that the validities of the modal formulas are conditional even though some of them are intuitively valid. Finally, we prove the validities of two formulas of Position- Exchange-Principle (PEP) proposed by papers 1 to 3 by using of modal logic and Kripke's semantics of possible worlds. Key words: Characteristic Formulas, Validity, PEP, Frame 1. INTRODUCTION Reasoning about knowledge and belief is an important issue in the research of multi-agent systems, and reasoning, which is set up from the main ideas of situational calculus, about other agents' states and actions is one of the most important directions in Al^^'^\ Papers [1-3] put forward an axiom scheme in reasoning about others(RAO) in multi-agent systems, and a rule called Position-Exchange-Principle (PEP), which is shown as following, was abstracted . C{(p^y/)^{C(p->Cy/) (Ce{5f',...,5f-}) When the length of C is at least 2, it reflects the mechanism of an agent reasoning about knowledge of others. For example, if C is replaced with Bf B^/, then it should be B':'B]'{(p^y/)-^iBf'B]'(p^Bf'B]'y/) 872 Hong Zhang, Huacan He The axiom schema plays a useful role as that of modus ponens and axiom K when simplifying proof. Though examples were demonstrated as proofs in papers [1-3], from the perspectives both in semantics and in syntax, the rule is not so compellent.
    [Show full text]
  • An Update on the Four-Color Theorem Robin Thomas
    thomas.qxp 6/11/98 4:10 PM Page 848 An Update on the Four-Color Theorem Robin Thomas very planar map of connected countries the five-color theorem (Theorem 2 below) and can be colored using four colors in such discovered what became known as Kempe chains, a way that countries with a common and Tait found an equivalent formulation of the boundary segment (not just a point) re- Four-Color Theorem in terms of edge 3-coloring, ceive different colors. It is amazing that stated here as Theorem 3. Esuch a simply stated result resisted proof for one The next major contribution came in 1913 from and a quarter centuries, and even today it is not G. D. Birkhoff, whose work allowed Franklin to yet fully understood. In this article I concentrate prove in 1922 that the four-color conjecture is on recent developments: equivalent formulations, true for maps with at most twenty-five regions. The a new proof, and progress on some generalizations. same method was used by other mathematicians to make progress on the four-color problem. Im- Brief History portant here is the work by Heesch, who developed The Four-Color Problem dates back to 1852 when the two main ingredients needed for the ultimate Francis Guthrie, while trying to color the map of proof—“reducibility” and “discharging”. While the the counties of England, noticed that four colors concept of reducibility was studied by other re- sufficed. He asked his brother Frederick if it was searchers as well, the idea of discharging, crucial true that any map can be colored using four col- for the unavoidability part of the proof, is due to ors in such a way that adjacent regions (i.e., those Heesch, and he also conjectured that a suitable de- sharing a common boundary segment, not just a velopment of this method would solve the Four- point) receive different colors.
    [Show full text]
  • Sequent Calculus and the Specification of Computation
    Sequent Calculus and the Specification of Computation Lecture Notes Draft: 5 September 2001 These notes are being used with lectures for CSE 597 at Penn State in Fall 2001. These notes had been prepared to accompany lectures given at the Marktoberdorf Summer School, 29 July – 10 August 1997 for a course titled “Proof Theoretic Specification of Computation”. An earlier draft was used in courses given between 27 January and 11 February 1997 at the University of Siena and between 6 and 21 March 1997 at the University of Genoa. A version of these notes was also used at Penn State for CSE 522 in Fall 2000. For the most recent version of these notes, contact the author. °c Dale Miller 321 Pond Lab Computer Science and Engineering Department The Pennsylvania State University University Park, PA 16802-6106 USA Office: +(814)865-9505 [email protected] http://www.cse.psu.edu/»dale Contents 1 Overview and Motivation 5 1.1 Roles for logic in the specification of computations . 5 1.2 Desiderata for declarative programming . 6 1.3 Relating algorithm and logic . 6 2 First-Order Logic 8 2.1 Types and signatures . 8 2.2 First-order terms and formulas . 8 2.3 Sequent calculus . 10 2.4 Classical, intuitionistic, and minimal logics . 10 2.5 Permutations of inference rules . 12 2.6 Cut-elimination . 12 2.7 Consequences of cut-elimination . 13 2.8 Additional readings . 13 2.9 Exercises . 13 3 Logic Programming Considered Abstractly 15 3.1 Problems with proof search . 15 3.2 Interpretation as goal-directed search .
    [Show full text]
  • Chapter 1 Preliminaries
    Chapter 1 Preliminaries 1.1 First-order theories In this section we recall some basic definitions and facts about first-order theories. Most proofs are postponed to the end of the chapter, as exercises for the reader. 1.1.1 Definitions Definition 1.1 (First-order theory) —A first-order theory T is defined by: A first-order language L , whose terms (notation: t, u, etc.) and formulas (notation: φ, • ψ, etc.) are constructed from a fixed set of function symbols (notation: f , g, h, etc.) and of predicate symbols (notation: P, Q, R, etc.) using the following grammar: Terms t ::= x f (t1,..., tk) | Formulas φ, ψ ::= t1 = t2 P(t1,..., tk) φ | | > | ⊥ | ¬ φ ψ φ ψ φ ψ x φ x φ | ⇒ | ∧ | ∨ | ∀ | ∃ (assuming that each use of a function symbol f or of a predicate symbol P matches its arity). As usual, we call a constant symbol any function symbol of arity 0. A set of closed formulas of the language L , written Ax(T ), whose elements are called • the axioms of the theory T . Given a closed formula φ of the language of T , we say that φ is derivable in T —or that φ is a theorem of T —and write T φ when there are finitely many axioms φ , . , φ Ax(T ) such ` 1 n ∈ that the sequent φ , . , φ φ (or the formula φ φ φ) is derivable in a deduction 1 n ` 1 ∧ · · · ∧ n ⇒ system for classical logic. The set of all theorems of T is written Th(T ). Conventions 1.2 (1) In this course, we only work with first-order theories with equality.
    [Show full text]
  • An Un-Rigorous Introduction to the Incompleteness Theorems∗
    An un-rigorous introduction to the incompleteness theorems∗ phil 43904 Jeff Speaks October 8, 2007 1 Soundness and completeness When discussing Russell's logical system and its relation to Peano's axioms of arithmetic, we distinguished between the axioms of Russell's system, and the theorems of that system. Roughly, the axioms of a theory are that theory's basic assumptions, and the theorems are the formulae provable from the axioms using the rules provided by the theory. Suppose we are talking about the theory A of arithmetic. Then, if we express the idea that a certain sentence p is a theorem of A | i.e., provable from A's axioms | as follows: `A p Now we can introduce the notion of the valid sentences of a theory. For our purposes, think of a valid sentence as a sentence in the language of the theory that can't be false. For example, consider a simple logical language which contains some predicates (written as upper-case letters), `not', `&', and some names, each of which is assigned some object or other in each interpretation. Now consider a sentence like F n In most cases, a sentence like this is going to be true on some interpretations, and false in others | it depends on which object is assigned to `n', and whether it is in the set of things assigned to `F '. However, if we consider a sentence like ∗The source for much of what follows is Michael Detlefsen's (much less un-rigorous) “G¨odel'stheorems", available at http://www.rep.routledge.com/article/Y005.
    [Show full text]
  • Proof Theory Can Be Viewed As the General Study of Formal Deductive Systems
    Proof Theory Jeremy Avigad December 19, 2017 Abstract Proof theory began in the 1920’s as a part of Hilbert’s program, which aimed to secure the foundations of mathematics by modeling infinitary mathematics with formal axiomatic systems and proving those systems consistent using restricted, finitary means. The program thus viewed mathematics as a system of reasoning with precise linguistic norms, governed by rules that can be described and studied in concrete terms. Today such a viewpoint has applications in mathematics, computer science, and the philosophy of mathematics. Keywords: proof theory, Hilbert’s program, foundations of mathematics 1 Introduction At the turn of the nineteenth century, mathematics exhibited a style of argumentation that was more explicitly computational than is common today. Over the course of the century, the introduction of abstract algebraic methods helped unify developments in analysis, number theory, geometry, and the theory of equations, and work by mathematicians like Richard Dedekind, Georg Cantor, and David Hilbert towards the end of the century introduced set-theoretic language and infinitary methods that served to downplay or suppress computational content. This shift in emphasis away from calculation gave rise to concerns as to whether such methods were meaningful and appropriate in mathematics. The discovery of paradoxes stemming from overly naive use of set-theoretic language and methods led to even more pressing concerns as to whether the modern methods were even consistent. This led to heated debates in the early twentieth century and what is sometimes called the “crisis of foundations.” In lectures presented in 1922, Hilbert launched his Beweistheorie, or Proof Theory, which aimed to justify the use of modern methods and settle the problem of foundations once and for all.
    [Show full text]
  • The Cyber Entscheidungsproblem: Or Why Cyber Can’T Be Secured and What Military Forces Should Do About It
    THE CYBER ENTSCHEIDUNGSPROBLEM: OR WHY CYBER CAN’T BE SECURED AND WHAT MILITARY FORCES SHOULD DO ABOUT IT Maj F.J.A. Lauzier JCSP 41 PCEMI 41 Exercise Solo Flight Exercice Solo Flight Disclaimer Avertissement Opinions expressed remain those of the author and Les opinons exprimées n’engagent que leurs auteurs do not represent Department of National Defence or et ne reflètent aucunement des politiques du Canadian Forces policy. This paper may not be used Ministère de la Défense nationale ou des Forces without written permission. canadiennes. Ce papier ne peut être reproduit sans autorisation écrite. © Her Majesty the Queen in Right of Canada, as © Sa Majesté la Reine du Chef du Canada, représentée par represented by the Minister of National Defence, 2015. le ministre de la Défense nationale, 2015. CANADIAN FORCES COLLEGE – COLLÈGE DES FORCES CANADIENNES JCSP 41 – PCEMI 41 2014 – 2015 EXERCISE SOLO FLIGHT – EXERCICE SOLO FLIGHT THE CYBER ENTSCHEIDUNGSPROBLEM: OR WHY CYBER CAN’T BE SECURED AND WHAT MILITARY FORCES SHOULD DO ABOUT IT Maj F.J.A. Lauzier “This paper was written by a student “La présente étude a été rédigée par un attending the Canadian Forces College stagiaire du Collège des Forces in fulfilment of one of the requirements canadiennes pour satisfaire à l'une des of the Course of Studies. The paper is a exigences du cours. L'étude est un scholastic document, and thus contains document qui se rapporte au cours et facts and opinions, which the author contient donc des faits et des opinions alone considered appropriate and que seul l'auteur considère appropriés et correct for the subject.
    [Show full text]
  • Syntax and Semantics of Propositional Logic
    INTRODUCTIONTOLOGIC Lecture 2 Syntax and Semantics of Propositional Logic. Dr. James Studd Logic is the beginning of wisdom. Thomas Aquinas Outline 1 Syntax vs Semantics. 2 Syntax of L1. 3 Semantics of L1. 4 Truth-table methods. Examples of syntactic claims ‘Bertrand Russell’ is a proper noun. ‘likes logic’ is a verb phrase. ‘Bertrand Russell likes logic’ is a sentence. Combining a proper noun and a verb phrase in this way makes a sentence. Syntax vs. Semantics Syntax Syntax is all about expressions: words and sentences. ‘Bertrand Russell’ is a proper noun. ‘likes logic’ is a verb phrase. ‘Bertrand Russell likes logic’ is a sentence. Combining a proper noun and a verb phrase in this way makes a sentence. Syntax vs. Semantics Syntax Syntax is all about expressions: words and sentences. Examples of syntactic claims ‘likes logic’ is a verb phrase. ‘Bertrand Russell likes logic’ is a sentence. Combining a proper noun and a verb phrase in this way makes a sentence. Syntax vs. Semantics Syntax Syntax is all about expressions: words and sentences. Examples of syntactic claims ‘Bertrand Russell’ is a proper noun. ‘Bertrand Russell likes logic’ is a sentence. Combining a proper noun and a verb phrase in this way makes a sentence. Syntax vs. Semantics Syntax Syntax is all about expressions: words and sentences. Examples of syntactic claims ‘Bertrand Russell’ is a proper noun. ‘likes logic’ is a verb phrase. Combining a proper noun and a verb phrase in this way makes a sentence. Syntax vs. Semantics Syntax Syntax is all about expressions: words and sentences. Examples of syntactic claims ‘Bertrand Russell’ is a proper noun.
    [Show full text]