Review of Basic Logic

Total Page:16

File Type:pdf, Size:1020Kb

Review of Basic Logic Review of Basic Logic Ben Pfaff <[email protected]> October 24, 2001 Contents 1 Notation 1 2 Tautologies 3 3 Substitution 4 4 Polarity 4 4.1 Polarity Proposition . 5 5 Removal of Quantifiers 5 5.1 Force of Quantifiers . 5 5.2 Removal of Strict Universal Force . 5 5.3 Removal of Strict Existential Force . 6 6 Unification 6 7 Deductive Tableaux 6 7.1 Simple Operations on Tableau . 6 7.2 Deductions on Tableaux . 7 7.2.1 Basic Deductions . 7 7.2.2 Resolution in Propositional Logic . 7 7.2.3 Resolution in Predicate Logic . 8 7.2.4 Equivalence . 8 7.2.5 Removal of Quantifiers . 8 1 Notation There are two textbooks on the reading list for this exam: Enderton, A Mathematical Introduction to Logic, and Manna and Waldinger, The Deductive Foundations of Computer Programming. These texts use completely different notation for logical operations. The table below summarizes the two notations. The comps mostly use Enderton’s notation, as will I. 1 Enderton Manna meaning > true logical truth ⊥ false logical untruth ¬a not a negation; logical “not” a ∧ b a and b conjunction; logical “and” a ∨ b a or b disjunction; logical “or” a → b if a then b implication; conditional if a then b else c conditional a ↔ b a ≡ b equivalence; biconditional; “if and only if” a + b exclusive disjunction; logical “xor”; equivalent to (a∧¬b)∨(b∧¬a) a ↓ b logical “nor”; equivalent to ¬(a ∨ b) a | b logical “nand”; equivalent to ¬(a ∧ b) a < b logical “less than”; equivalent to (¬a) ∧ b a > b logical “greater than”; equivalent to a ∧ (¬b) ∃x F (∃x)F existential qualifier; “there exists x such that F” ∀x F (∀x)F universal qualifier; “for all x, F” (∀∗)F universal closure: (∀x1, . , xn)F for all free variables xi in F (∃∗)F existential closure: (∃x1, . , xn)F for all free variables xi in F P t1 . tn P (t1, . , tn) application of predicate P ft1 . tn f(t1, . , tn) application of function f a ≈ b a = b equality Σ |= τ tautological implication; every truth assignment that satisfies ev- ery sentence in Σ also satisfies sentence τ; symbol |= pronounced “models” |=U τ sentence τ is true in structure U σ |= =| τ tautological equivalence; σ |= =| τ if and only if σ |= τ and τ |= σ Γ ` ϕ formula ϕ is a theorem deducible from set of formulas Γ Th K the theory of K; Th K = {σ : σ is true in every member of K} Mod Σ the class of all models of Σ; the class of all structures for the lan- guage in which every member of Σ is true Cn Σ consequences of Σ; Cn Σ = {σ :Σ |= σ} = Th Mod Σ N the set of natural numbers {0, 1, 2,... } Z the set of integers {..., −2, −1, 0, 1, 2,... } x αt α with free instances of x replaced by t The precedence of connectives and qualifiers is listed below, from highest to lowest. Associativity is to the right:(a → b → c) ↔ (a → (b → c). ¬ ∃ ∀ ∧ ∨ other connectives Definitions (from Enderton except where specified): • Propositional logic is logic involving variables, constants, logical connectives, true and false, and func- tions. Predicate logic or first-order logic adds quantifiers (∀ and ∃ and predicates. • Enderton regards ¬ and → as the fundamental connective and ∀ as the fundamental qualifier, and considers all other connectives (∧, ∨, . ) and qualifiers (∃) as abbreviations for combinations of these. • An alphabet is a set of symbols. • An expression is a finite sequence of symbols from an alphabet. It need not be in any sensible form. 2 • A term is an expression, either a single constant symbol or variable or a function that has terms as its arguments. A term must be syntactically correct. • An atomic formula is an expression that applies a predicate to a set of terms. An atomic formula must be syntactically correct. Manna calls this a proposition. • A wff or well-formed formula is an expression built up from atomic formulas by use of connective symbols and quantifiers. Manna calls this a sentence. An atomic formula is a wff. A wff must be syntactically correct. • A variable x is captured if it is qualified by ∀x, and free otherwise. Manna uses bound in place of captured. • A valid wff is one that is always true, regardless of the truth values of its free variables. A satisfiable wff is one that is true for at least one assignment of its free variables. • A sentence is a wff that has no free variables. On the other hand, Manna’s sentences are Enderton’s wffs; a closed sentence is one that has no free variables. • A structure specifies a set of things for the ∀ quantifier to refer to and meanings for functions and predicate symbols. Each structure U contains: – A nonempty set |U| called the universe of U, used as the domain for ∀. – A subset of |U|n as the domain for each n-argument predicate. – A member of |U| for each constant. – A mapping from every member of |U|n to |U| for each n-argument function. Manna refers to structures as interpretations and to a universe as a domain. • A class of structures K is an elementary class or first-order class if and only if K = Mod τ for some sentence τ. K is an elementary class in the wider sense if and only if K = Mod Σ for some set of sentences Σ. • A theory is a set of sentences closed under logical implication. A set of sentences T is a theory if and only if for every σ such that T |= σ, sigma is in T . 2 Tautologies These are useful for simplification but nonobvious at least to my eye. F, G, and H represent arbitrary wffs. • (true → G) ↔ G (false → F) ↔ true (F → true) ↔ true (F → false) ↔ ¬F • (F ↔ true) ↔ F (F ↔ false) ↔ ¬F • [(F → G) ∧ (G → H)] → (F → H) [(F ↔ G) ∧ (G ↔ H)] → (F ↔ H) • (F → G) ↔ (¬G → ¬F) (F ↔ G) ↔ (¬F ↔ ¬G) 3 • (F ∧ (G ∨ H)) ↔ ((F ∧ G) ∨ (F ∧ H)) (F ∨ (G ∧ H)) ↔ ((F ∨ G) ∧ (F ∨ H)) ((F ∨ G) → H) ↔ ((F → H) ∧ (G → H)) ((F ∧ G) → H) ↔ ((F → H) ∨ (G → H)) (F → (G ∨ H)) ↔ ((F → G) ∨ (F → H)) (F → (G ∧ H)) ↔ ((F → G) ∧ (F → H)) ((F ∧ G) → H) ↔ (F → (G → H)) • ¬(F ∨ G) ↔ (¬F ∧ ¬G) ¬(F ∧ G) ↔ (¬F ∨ ¬G) ¬(F → G) ↔ (F ∧ ¬G) ¬(F ↔ G) ↔ (F ↔ ¬G) • (F → G) ↔ (¬F ∨ G) (F ↔ G) ↔ ((F ∧ G) ∨ (¬F ∧ ¬G)) (F ↔ G) ↔ ((F → G) ∧ (G → F)) • (∀x)(∀y)F ↔ (∀y)(∀x)F (∃x)(∃y)F ↔ (∃y)(∃x)F (∃y)(∀x)F → (∀x)(∃y)F • ¬(∀x)F ↔ (∃x)¬F ¬(∃x)F ↔ (∀x)¬F • (∀x)[F ∧ G] ↔ ((∀x)F ∧ (∀x)G) (∀x)[F ∨ G] ↔ ((∀x)F ∨ (∀x)G) (∃x)[F → G] ↔ ((∀x)F → (∃x)G) • (∃x)[F ∧ G] → [(∃x)F ∧ (∃x)G] [(∀x)F ∨ (∀x)G] → (∀x)[F ∨ G] [(∃x)F → (∀x)G] → (∀x)[F → G] (∀x)[F → G] → [(∀x)F → (∀x)G] (∀x)[F ↔ G] → [(∀x)F ↔ (∀x)G] 3 Substitution If we first write F[G], and then later write F[H], the latter is the sentence obtained by replacing every occurrence of G in F[G] by H (Manna 30). G and H are not limited to single symbols; they may both be complex subsentences. The substitution is performed in one pass. If G is not present in F, then F[G] and F[H] are the same sentence. If F[G] contains subsentences of the form G1 ∧ G2 ∧ G3 ∧ · · · ∧ Gn, treat them as if they are parenthesized from the left: (··· ((G1 ∧ G2) ∧ G3) ∧ · · · ∧ Gn), and similarly for ∨. Similarly, if we we first write FhGi, and then later write FhHi, the latter is the sentence obtained by replacing zero or more occurrences of G in FhGi by H. This is called “partial substitution” (Manna 32). Multiple substitutions are available, too: first write F[G1,..., Gn], then later write F[H1,..., Hn] (Manna 33). If there is a choice of substitutions, apply the larger one: in F[P, P ∨Q], substitute for P ∨Q by preference. Multiple partial substitutions work similarly, except that there is no preference for larger substitutions. If quantifiers are involved, substitution is more complex (Manna 175). We must observe the rules for “safe substitution” in a replacement of F[G] by F[H]. First, only free instances of G are replaced. Second that, if H contains a quantifier such that substitution of G by H would capture a free variable y, we must first rename the variable y in the quantifier to a new variable y0 that does not occur in F[G] or in H. 4 Polarity The polarity of a subsentence is +, −, or (±) (Manna 41, 92, 191). The polarity of a full sentence is either + or −, depending on its context; if unspecified, assume +. Given a polarity π, −π is the opposite polarity: 4 if π is +, −π is −; if π is −, −π is +; otherwise, both π and −π are ±. Polarity are shown as superscripts in the list below, which can be used to determine the polarity of subsentences given the polarity of a full sentence: sentence polarity of subsentences [¬F]π ¬F −π [F ∨ G]π F π ∨ Gπ [F ∧ G]π F π ∧ Gπ [F → G]π F −π → Gπ [F ↔ G]π F ± ↔ G± [(∀x)F]π (∀x)F π [(∃x)F]π (∃x)F π A polarity is said to be positive if it is + or ±, negative if it is − or ±, strictly positive if it is +, or strictly negative if it is −. Given ShE+i, the notation ShF +i denotes the result of replacing zero or more strictly positive occurrences of E with F (Manna 45).
Recommended publications
  • The Interpretation of Tense — I Didn't Turn Off the Stove Toshiyuki Ogihara
    The interpretation of tense — I didn’t turn off the stove Toshiyuki Ogihara — University of Washington [email protected] Kiyomi Kusumoto — Kwansei Gakuin University [email protected] Abstract This chapter examines Partee’s (1973) celeBrated claim that tenses are not existential quantifiers but pronouns. In the first half of the chapter, we show that this proposal successfully accounts for the Behavior of tense morphemes regarding deixis, anaphora, and presupposition. It is also compatiBle with cases where tense morphemes Behave like Bound variables. In the second half of the chapter, we turn to the syntax-semantics interface and propose some concrete implementations Based on three different assumptions aBout the semantics of tense: (i) quantificational; (ii) pronominal; (iii) relational. Finally, we touch on some tense-related issues involving temporal adverBials and cross-linguistic differences. Keywords tense, pronoun, quantification, Bound variaBle, referential, presupposition, temporal adverbial (7 key words) 1. Introduction This article discusses the question of whether the past tense morpheme is analogous to pronouns and if so how tense is encoded in the system of the interfaces between syntax and semantics. The languages we will deal with in this article have tense morphemes that are attached to verbs. We use 1 this type of language as our guide and model. Whether tense is part of natural language universals, at least in the area of semantic interpretation, is debatable.1 Montague’s PTQ (1973) introduces a formal semantic system that incorporates some tense and aspect forms in natural language and their model-theoretic interpretation. It introduces tense operators based on Prior’s (1957, 1967) work on tense logic.
    [Show full text]
  • Overt Existential Closure in Bura (Central Chadic) 
    Overt Existential Closure in Bura (Central Chadic) Malte Zimmermann University of Potsdam 1. Introduction The article presents a semantic-based account of the syntactic distribution of the morpheme adi in Bura. This morpheme is traditionally glossed as an existential predicate there is (Hoffmann 1955) and occurs only in a limited set of – at first sight – heterogeneous syntactic environments, namely (i.) in (most) negative clauses; (ii.) in thetic constructions used for introducing new discourse referents (there is x ...); and (iii.) in existential clefts (there is some x that ...). The article will identify the semantic contribution of adi and give a unified account of its distribution. It is argued that adi is an overt marker of existential closure that can bind individual or event variables with existential force. The insertion of adi is argued to be a last resort operation. It applies if and only if alternative means of existentially closing a variable fail. The analysis of adi as an overt indicator of existential closure has repercussions for semantic theory as whole. For once, given that adi is overt, it gives us a better insight into the workings and the grammatical locus of existential closure, which can be accessed only indirectly in European languages (Diesing 1992). Second, given that adi must existentially close off event variables in negative clauses, it can be used as a diagnostic for the ability of verbal predicates to introduce an event argument into the semantic representation (Kratzer 1995). The structure of the article is as follows: Section 2 provides some background information on Bura. Section 3 lays out the main facts surrounding the distribution of adi.
    [Show full text]
  • Quantification and Predication in Mandarin Chinese: a Case Study of Dou
    University of Pennsylvania ScholarlyCommons IRCS Technical Reports Series Institute for Research in Cognitive Science December 1996 Quantification and Predication in Mandarin Chinese: A Case Study of Dou Shi-Zhe Huang University of Pennsylvania Follow this and additional works at: https://repository.upenn.edu/ircs_reports Huang, Shi-Zhe, "Quantification and Predication in Mandarin Chinese: A Case Study of Dou" (1996). IRCS Technical Reports Series. 114. https://repository.upenn.edu/ircs_reports/114 University of Pennsylvania Institute for Research in Cognitive Science Technical Report No. IRCS-96-36. This paper is posted at ScholarlyCommons. https://repository.upenn.edu/ircs_reports/114 For more information, please contact [email protected]. Quantification and Predication in Mandarin Chinese: A Case Study of Dou Abstract In the more recent generalized quantifier theory, 'every' is defined as a elationr between two sets such that the first set is a subset of the second set (Cooper (1987), anv Benthem (1986)). We argue in this dissertation that the formal definition of e' very' ought to reflect our intuition that this quantifier is always associated with a pairing. For instance, 'Every student left' means that for every student there is an event (Davidson (1966), Kroch (1974), Mourelatos (1978), Bach (1986)) such that the student left in that event. We propose that the formal translation of EVERY be augmented by relating its two arguments via a skolem function. A skolem function links two variables by making the choice of a value for one variable depend on the choice of a value for the other. This definition of EVERY, after which 'every' and its Chinese counterpart 'mei' can be modeled, can help us explain the co-occurrence pattern between 'mei' and the adverb 'dou'.
    [Show full text]
  • Anaphoric Reference to Propositions
    ANAPHORIC REFERENCE TO PROPOSITIONS A Dissertation Presented to the Faculty of the Graduate School of Cornell University in Partial Fulfillment of the Requirements for the Degree of Doctor of Philosophy by Todd Nathaniel Snider December 2017 c 2017 Todd Nathaniel Snider ALL RIGHTS RESERVED ANAPHORIC REFERENCE TO PROPOSITIONS Todd Nathaniel Snider, Ph.D. Cornell University 2017 Just as pronouns like she and he make anaphoric reference to individuals, English words like that and so can be used to refer anaphorically to a proposition introduced in a discourse: That’s true; She told me so. Much has been written about individual anaphora, but less attention has been paid to propositional anaphora. This dissertation is a com- prehensive examination of propositional anaphora, which I argue behaves like anaphora in other domains, is conditioned by semantic factors, and is not conditioned by purely syntactic factors nor by the at-issue status of a proposition. I begin by introducing the concepts of anaphora and propositions, and then I discuss the various words of English which can have this function: this, that, it, which, so, as, and the null complement anaphor. I then compare anaphora to propositions with anaphora in other domains, including individual, temporal, and modal anaphora. I show that the same features which are characteristic of these other domains are exhibited by proposi- tional anaphora as well. I then present data on a wide variety of syntactic constructions—including sub- clausal, monoclausal, multiclausal, and multisentential constructions—noting which li- cense anaphoric reference to propositions. On the basis of this expanded empirical do- main, I argue that anaphoric reference to a proposition is licensed not by any syntactic category or movement but rather by the operators which take propositions as arguments.
    [Show full text]
  • 1 Introduction
    Partial variables and specificity Gerhard Jager¨ University of Bielefeld Abstract In this paper I propose a novel analysis of the semantics of specific indefinites. Following standard DRT, I assume that indefinites introduce a free variable into the logical repre- sentation, but I assume the the descriptive content of an indefinite DP is interpreted as a precondition for the corresponding variable to denote. Formally this is implemented as an extension of classical predicate logic with partial variables—variables that come with a restriction. This leads to a reconception of restricted quantification: the restriction is tied to the variable, not to the quantifier. After an overview over the major existing theories of the scope of indefinites, the cen- tral part of the paper is devoted to develop a model-theoretic semantics for this extension of predicate logic. Finally the paper argues that the notion of partial variables lends itself to the analysis of other linguistic phenomena as well. Especially presuppositions can be analyzed as restrictions on variables in a natural way. 1 Introduction This article deals with the peculiar scope taking properties of indefinite DPs, which differ mas- sively from other scope bearing elements. The theory that I am going to propose can be seen as a variant of the DRT approach in the version of Heim (1982), according to which the se- mantic contribution of an indefinite is basically a free variable, while its scope is determined by a non-lexical operation of existential closure. The crucial innovation lies in the treatment of the descriptive material of indefinites. While DRT analyzes it as part of the truth conditions, I will argue that it is to be considered as a precondition for the accompanying variable to denote.
    [Show full text]
  • THE REFERENCE of INDEFINITES in This Paper I Argue That Indefinite
    The final version of this paper will appear in: K. von Heusinger & U. Egli (eds.). Reference and Anaphoric Relations. Dordrecht: Kluwer (Studies in Linguistics and Philosophy). KLAUS VON HEUSINGER THE REFERENCE OF INDEFINITES The indefinite article has the function of pick- ing out a single representative from among various representatives of a kind.1 1INTRODUCTION In this paper I argue that indefinite NPs have a more complex referential nature than is usually supposed, and that this structure must be reflected in their semantic represen- tation. According to the classical view due to Frege and Russell, an indefinite NP is represented by an existential quantifier, a variable, the restriction and the occurrence of the variable in the argument position of the main predicate. Hence, there is no clear correspondence to the indefinite NP on the surface. Sentence (1) is translated into the formula (2a), in which the indefinite NP amancorresponds to the variable x in the argument position of the predicate walk and in the predication manx . The formula specifies that the intersection of the two sets denoted by the predicates is non-empty. The model-theoretic interpretation (2b) links the variable x to an object d that fulfills both predicates, treating the attributive material man on par with the assertive material walk. Hence, at the representational level, the indefinite NP is not represented as an independent expression. This conception has been widely accepted in semantics and can be found in current semantic theories. (1) A man walks [ ] (2) a. 9x man x &walk x [ ] b. The formula 9x man x &walkx is true iff there is an object d in the domain of individuals such that d is in the extension of the predicate man and in the extension of the predicate walk.
    [Show full text]
  • Geurts and Nouwen 2007
    At least et al: The semantic of scalar modifiers Bart Geurts, Rick Nouwen Language, Volume 83, Number 3, September 2007, pp. 533-559 (Article) Published by Linguistic Society of America DOI: 10.1353/lan.2007.0115 For additional information about this article http://muse.jhu.edu/journals/lan/summary/v083/83.3geurts.html Access provided by Chicago Library (18 Feb 2014 11:15 GMT) AT LEAST ET AL.: THE SEMANTICS OF SCALAR MODIFIERS BART GEURTS RICK NOUWEN University of Nijmegen Utrecht University On the naive account ofscalar modifierslike more than and at least, At least three girls snored is synonymous with More than two girls snored, and both sentences mean that the number of snoring girls exceeded two (the same, mutatis mutandis, for sentences with at most and less/fewer than). We show that this is false and propose an alternative theory, according to which superlative modifiers (at least/most) are quite different from comparative ones (more/less/fewer than). Whereas the naive theory is basically right about comparative modifiers, it is wrong about superla- tive modifiers, which we claim have a MODAL meaning: an utterance of At least three girls snored conveys two things: first, that it is CERTAIN that there was a group ofthree snoring girls, and second, that more than four girls MAY have snored. We argue that this analysis explains various facts that are problematic for the naive view, which have to do with specificity, distributional differences between superlative and comparative modifiers, differential patterns of inference li- censed by these expressions, and the way they interact with various operators, like modals and negation.* 1.
    [Show full text]
  • E-Type Pronouns and Donkey Anaphora
    IRENE HElM E-TYPE PRONOUNS AND DONKEY ANAPHORA 0. INTRODUCTION Kamp and Heim intended this proposal to compete with and replace us earlier treatments of the same phenomena, including a family of related proposals by Evans (1977, 1980), Cooper (1979), and others, which in contrast to (i)-(iv) made the following more traditional assumptions: (i) a non-existential, quantifier-free treatment of indefinites, (ii) a treatment of anaphoric pronouns as plain bound variables, (iii) a treatment of quantificational determiners and the conditional operator as capable of binding multiple variables, and (iv) a provision for default existential generalization of free vari- ables. Kamp and Heim intended this proposal to compete with and replace various earlier treatments of the same phenomena, including a family of related proposals by Evans (1977, 1980), Cooper (1979), and others, which in contrast to'(i)-(iv) made the following more traditional assumptions: (i') Indefinites are existential quantifiers. (ii') Anaphoric pronouns are semantically equivalent to (possibly complex) definite descriptions. (iii'.) Quantificational determiners, frequency adverbs, and the hidden operator of generality in conditionals bind just one variable each-. (iv') There is no need for default existential generalization of free variables. (i'), (iii'), and (iv') are, of course, just the standard assumptions from which (i), (iii), and (iv) departed. For the sake of brevity, I will refer to Kamp and Heim's proposal and variants thereof as 'DRT analyses', and to Evans's, Cooper's, and similar proposals as 'E-Type analyses'. ('DRT' abbreviates 'Discourse Represent- ation Theory'; the term 'E-Type' is loosely borrowed from Evans.) Let me caution, however, against unintended interpretations of these labels, especially the first one.
    [Show full text]
  • Three Types of Ellipsis∗
    Three types of ellipsis∗ Jason Merchant Abstract The term ‘ellipsis’ can be used to refer to a variety of phenomena: syntactic, semantic, and pragmatic. In this article, I discuss the recent comprehensive survey by Stainton 2006 of these kinds of ellipsis with respect to the analysis of nonsententials and try to show that despite his trenchant criticisms and insightful proposal, some of the criticisms can be evaded and the insights incorporated into a semantic ellipsis analysis, making a ‘divide-and-conquer’ strategy to the properties of nonsententials feasible after all. 1. Introduction A character in Carlos Fuentes’s 2002 novel The Eagle’s Throne (trans. Kristina Cordero; Random House: New York, 2006) says with self-disdain and melan- choly (p. 93): Did you know I’ve learned to speak like an Anglo-Saxon, without articles or context? “Exactly.” “Done.” “Nothing.” “Careful.” “Perfect.” ∗This paper owes an enormous debt to a large number of people over the years since I first began working on it, but special mention must be made of Rob Stainton, whose work was the original impetus for it and whose comments at Rutgers and in Paris in 2007 led to numerous improvements. Thanks also to Ernie Lepore, François Recanati, Jason Stanley, and the participants in the Leverhulme Foundation workshop organized by Laurence Goldstein at Canterbury in 2008. “Warned.” “Face consequences.” I say these things, nothing else. As it turns out, such seemingly telegraphic speech is by no means limited to the Anglo-Saxon world. The question is just what such utterances could and do mean ‘without context’ and with, and what exactly a speaker who utters such phrases says, means, and conveys.
    [Show full text]
  • Non-Specific Specifics and the Source of Existential Closure of Exceptional-Scope Indefinites
    Non-specific Specifics and the Source of Existential Closure of Exceptional-Scope Indefinites RICHARD BREHENY Abstract Sometimes exceptional-scope indefinites are understood as if they refer to a specific individual or function, sometimes they are understood as if there is existential closure of a function variable from the exceptional-scope site. So-called contextualist accounts of these indefinites fail to account for the apparently non-specific exceptional scope readings. Accounts invoking a mechanism of free existential closure generate unattested readings in addition to failing to account for readings in a wider array of cases. Starting with the assumption that all exceptional- scope indefinites are specific, a third account is presented here which employs independently motivated pragmatic strategies of diagonalisation and accommodation. It will be shown how specific indefinites come to be understood as if some mechanism of free-existential closure were in operation. But it will be clear where this closure effect comes from and what constraints there are on it. 1. Introduction Indefinite noun phrases have long been known to pose a challenge to the orthodox account of the scopal behaviour of quantified noun phrases. The challenge concerns the fact that examples such as (1a,b) can be understood according to the glosses given in (2a,b) respectively: 1. a. If an uncle of Mary’s dies childless, she will inherit a fortune. b. Every linguist has studied every analysis that has been proposed for some problem. 2. a. x[uncle_of_M(x) & (die_childless(x) 6 inherit(M))] b. x[linguist(x) 6 y[problem(y) & z[solution_to(y)(z) 6 studied(z)(x)]]] 2 Breheny If the scope of the existential were achieved by movement of the indefinite noun phrase to the scope site, as illustrated in (3a,b), this would be in violation of the normal restrictions on the movement of quantified noun phrases: 3.
    [Show full text]
  • DOMAINS of QUANTIFICATION and SEMANTIC TYPOI.DGY* Barbara
    DOMAINS OF QUANTIFICATION AND SEMANTIC TYPOI.DGY* Barbara H. Partee University of Massachusetts/Amherst 1. Background and central issucsl The questions I am ~oncerned with here arise from the interaction of two broad areas of current research in syntax and semantics. One area, a very old one, concerns the systematic semantic import of syntactic categories, a question requiring a· combination of theoretical work and cross-linguistic study. The other area, only recently under active investigation, concerns the structure and interpretation of expressions of quantification, including not only quantification expressed by NP's with determiners like "every" and "no" but also what Lewis 1975 called "adverbs of quantification" ("always", "in most cases", "usually", etc.), "floated" quantifiers, and quantifiers expressed by verbal affixes and auxiliaries. At the intersection of these two areas are pressing questions which seem ripe for intensive investigation. Some key questions noted by Partee, Bach, and Kratzer 1987 are the following: (1) Is the use of NP's as one means of expressing quantification universal, as proposed by Barwlse and Cooper 1981? Does every language employ some other klnd(s) of quantification? Is there some kind of quantification that every language employs? Our current hypothesis ls that the answer to the first of these questions is llQ., to the second ~; the third ls still entirely open. One goal of current research ls the formulation of a finer-grained, possibly lmplicatlonal hypothesis in place of Barwlse and Cooper's categorical universal. (2) What are the similarities and differences, within and across language.s, in the structure and interpretation of quantification expressed with NP's and quantification expressed with "floated" quantifiers, sentence adverbs, verbal affixes, auxiliaries, or other non-NP means? 1.1 ~ semantics 2.f syntactic categories: background 1.1.1 Traditional linguistics YIL.
    [Show full text]
  • Lecture 7. Kamp-Heim II. Heim's Theory in Chapter II and Kamp's Discourse Representation Theory 1. the Semantic Problems Of
    Formal Semantics and Current Problems of Semantics, Lecture 7 Formal Semantics and Current Problems of Semantics, Lecture 7 Barbara H. Partee, RGGU, March 25, 2008 p. 1 Barbara H. Partee, RGGU, March 25, 2008 p. 2 Lecture 7. Kamp-Heim II. Heim’s theory in Chapter II and Kamp’s Discourse Representation Theory Informal generalization: (Karttunen 1976) An indefinite NP introduces a “new discourse referent”, which has a “limited lifespan.” 1. The semantic problems of indefinites, quantification, discourse anaphora, donkey sentences. ..........................1 2. The main ideas of Heim’s solution. (Chapter II).................................................................................................3 Examples that show “limited lifespan” of a ‘discourse referent’ introduced by an indefinite: 2.1. Indefinite NPs: What is their semantics? .........................................................................................................3 (6) a. John wants to catch a fish and eat it. 2.2 Adverbs of quantification, and quantificational determiners, as unselective binders........................................4 2.3. Existential closure............................................................................................................................................5 b. Maybe he would share it with me. (An example of “modal subordination”: (Roberts 1989) ) 2.4. Other important aspects of Heim’s system. .....................................................................................................6 c. *It’s probably under
    [Show full text]