Barker (2002): Continuations and the Nature of Quantification #
Formalizes the continuized grammar of [Bar02a]: quantificational
NPs denote functions on their own continuations, so continuizing an
ordinary grammar derives generalized quantifiers, in-situ scope
displacement, and scope ambiguity, with no movement, storage, or
type-shifting. The file states the Continuation Schema at arity 2, the
fragment with its worked derivations, the scope-island rule with clause
boundedness, generalized coordination, and the Simulation Theorem,
following the paper's own proof. Barker's transitive verbs take the
object first: saw m j is "John saw Mary".
The fragment's determiners quantify over choice functions, as in the paper's appendix; the generalized-quantifier pair the paper introduces for exposition is kept for the derivations whose printed formulas need it. The the friend of chains are not formalized.
The grammar #
The S rule with priority to the subject.
Equations
- Barker2002.sRuleNP np vp = (fun (x : E) (P : E → Prop) => P x) <$> np <*> vp
Instances For
The VP rule, verb priority.
Equations
- Barker2002.vpRule vt obj = vt <*> obj
Instances For
everyone: a universal over the continuation.
Equations
- Barker2002.everyone k = ∀ (x : E), k x
Instances For
someone: an existential over the continuation.
Equations
- Barker2002.someone k = ∃ (x : E), k x
Instances For
every quantifies over choice functions; Barker leaves the restriction to proper choice functions to the choice-function literature, and so do we.
Equations
- Barker2002.everyCF D = ∀ (f : (E → Prop) → E), D f
Instances For
a as an existential over choice functions.
Equations
- Barker2002.aCF D = ∃ (f : (E → Prop) → E), D f
Instances For
The NP rule, determiner priority.
Equations
- Barker2002.npRuleDet det n = det <*> n
Instances For
The paper's expository every, typed as a generalized quantifier.
Equations
- Barker2002.everyGQ n k = n fun (P : E → Prop) => ∀ (x : E), P x → k x
Instances For
The paper's expository a.
Equations
- Barker2002.aGQ n k = n fun (P : E → Prop) => ∃ (x : E), P x ∧ k x
Instances For
The worked derivations #
John left.
Everyone left.
John saw everyone, in situ.
Every man saw a woman, VP priority: the inverse reading.
Every man saw a woman, subject priority: the surface reading.
John saw every man: for every way of choosing a man, John saw him.
Someone saw a friend of everyone: subject wide, determiner over nominal.
Subject wide, nominal over determiner.
Object wide, determiner over nominal.
Object wide, nominal over determiner.
Bounding scope displacement #
The island-adjusted S rule: evaluate the clause, then re-lift.
Equations
- Barker2002.sRuleIsland np vp = ContT.reset (Barker2002.sRuleVP np vp)
Instances For
A man thought everyone saw Mary: everyone is trapped in the complement.
Generalized coordination #
Coordination at any category: the continuation distributes across the conjuncts.
Equations
- Barker2002.coord l r k = (l k ∧ r k)
Instances For
John left and slept.
John and Mary left.
The Simulation Theorem #
Simulating in the paper's sense is being a unit.
"The result is the same, in the absence of quantification": a unit daughter makes the priority choice inert.
A schema-derived sentence evaluates at the trivial continuation to its direct meaning.