Bare NPs as Properties #
@cite{krifka-2004} @cite{krifka-2003}
Formalizes Krifka's analysis from "Bare NPs: Kind-referring, Indefinites, Both, or Neither?" (SALT 2003 / EISS5 2004).
Bare NPs are fundamentally properties, type-shifted to kind or indefinite
readings depending on context. Count nouns carry a number argument
(⟨s,⟨n,⟨e,t⟩⟩⟩); pluralization existentially binds it locally.
Kind readings require topic position.
| Aspect | @cite{chierchia-1998} | @cite{krifka-2004} |
|---|---|---|
| Basic denotation | Kind (via ∩) | Property |
| Existential reading | DKP coercion | Direct ∃ type shift |
| Narrow scope | DKP locality | Local ∃ shift locality |
| Singular exclusion | ∩ undefined for non-cumulative | Unfilled number argument |
| Kind reading | Always available | Requires topic position |
An individual is either an atom or a plurality (as in Chierchia)
- atom {Atom : Type} : Atom → Individual Atom
- plural {Atom : Type} : Set Atom → Individual Atom
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Count noun denotation with number argument: ⟨s,⟨n,⟨e,t⟩⟩⟩.
⟦dog⟧(w)(1)(fido) = true iff fido is a single dog in w.
Equations
Instances For
Mass noun denotation (no number argument): ⟨s,⟨e,t⟩⟩.
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.MassNounDen World Atom = (World → Semantics.Lexical.Noun.Kind.Krifka2004.Individual Atom → Bool)
Instances For
A general property (intensional): the basic type for bare NPs in Krifka.
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.Property World Atom = (World → Semantics.Lexical.Noun.Kind.Krifka2004.Individual Atom → Bool)
Instances For
Singular morpheme: binds number argument to 1. ⟦-sg⟧(P) = λw.λx[P(w)(1)(x)]
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.singularize World Atom P w x = P w Semantics.Lexical.Noun.Kind.Krifka2004.Number.one x
Instances For
Plural morpheme: existentially quantifies over number > 1. ⟦-pl⟧(P) = λw.λx[∃n > 1. P(w)(n)(x)]. The ∃ is local (not a scope-taking operation).
Equations
Instances For
Scopelessness follows from local number binding.
Bare singulars (*"Dog barks") are blocked because the number parameter is unfilled — morphology must bind it (cf. Chierchia: ∩ undefined).
Instances For
∃-shift is position-sensitive: it applies at the surface position of the bare NP. Scrambled BPs scope wide; unscrambled BPs scope narrow. Evidence: Dutch/German scrambling.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
∩ (down) shift: property → kind. ∩P = λw[ιP(w)]. Unlike Chierchia, not restricted to cumulative properties.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Information structure position of an NP.
- topic : InfoStructure
- focus : InfoStructure
- neutral : InfoStructure
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Available interpretations depend on information structure. Topic favors ∩ (kind); focus favors ∃ (indefinite).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Kind readings require topic position.
Position-Sensitive ∃-Shift #
@cite{carlson-1977} @cite{le-bruyn-de-swart-2022} @cite{partee-1987}
∃-shift applies at the surface position of the bare plural, predicting that scrambled BPs take wide scope over negation.
A property (the basic meaning of bare NPs in Krifka)
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.KrifkaProp Entity World = (World → Entity → Bool)
Instances For
A VP meaning
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.KrifkaVP Entity World = (Entity → World → Bool)
Instances For
A sentence meaning
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.KrifkaSent World = (World → Bool)
Instances For
∃-shift: ∃x ∈ domain. P(w)(x) ∧ VP(x)(w). Applies at surface position.
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.existsShiftApply domain prop vp w = domain.any fun (x : Entity) => prop w x && vp x w
Instances For
Unscrambled: [niet [BP V]] → ¬∃x[P(x) ∧ V(x)].
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.krifkaDerivUnscrambled domain prop vp w = !Semantics.Lexical.Noun.Kind.Krifka2004.existsShiftApply domain prop vp w
Instances For
Scrambled: [BP [niet V]] → ∃x[P(x) ∧ ¬V(x)] (wide scope).
Equations
- Semantics.Lexical.Noun.Kind.Krifka2004.krifkaDerivScrambled domain prop vp = Semantics.Lexical.Noun.Kind.Krifka2004.existsShiftApply domain prop vp.neg
Instances For
Scrambled derivation composes ∃-shift with negated VP.