VP-Level Situation Type Composition #
@cite{smith-1997}
Compositional rules for deriving the situation type of a verb constellation from its component parts (verb, NP, PP). @cite{smith-1997} Ch. 3 §3.3.
Structure #
- NP/PP feature types — count/mass, directional/locative
- Basic-level composition — verb + arguments → verb constellation
- External override — adverbial/viewpoint overrides clashing feature
- Verification — composition matches hand-checked examples
Key Principle #
The verb supplies intrinsic temporal features [±Telic, ±Durative, ±Dynamic]. NP and PP arguments contribute to the composite VP telicity:
- V[-Telic] + NP[+Count] → VCon[-Telic] (atelic verbs stay atelic)
- V[-Telic] + PP[+Dir] → VCon[+Telic] (directional PP telicizes)
- V[+Telic] + NP[+Count] → VCon[+Telic] (telic verbs stay telic)
- V[+Telic] + NP[-Count] → VCon[-Telic] (mass NP atelicizes)
The Principle of External Override (§3.2.5): when an adverbial's temporal feature clashes with the verb constellation's, the adverbial wins.
PP directionality feature. Directional PPs contribute telicity; locative PPs do not. @cite{smith-1997} §3.3.1 (50b).
Instances For
Equations
- Semantics.Aspect.Composition.instDecidableEqPPType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Telicity contribution of an object NP. Count NPs preserve verb telicity; mass NPs atelicize. @cite{smith-1997} §3.3.1 (50a, 51):
- V[+Telic] + NP[+Count] → VCon[+Telic] ("builds a house")
- V[+Telic] + NP[-Count] → VCon[-Telic] ("builds houses")
- V[-Telic] + NP[+Count] → VCon[-Telic] ("walks the dog")
- V[-Telic] + NP[-Count] → VCon[-Telic] ("drinks water")
Equations
Instances For
Compose a verb's aspectual profile with its NP object. The object's mass/count feature interacts with verb telicity. Duration and dynamicity are inherited from the verb.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Compose a verb's aspectual profile with a directional PP. Directional PPs contribute [+Telic]; locative PPs don't change telicity. @cite{smith-1997} §3.3.1 (50b): "child walk to school" → V[-Telic] + PP[Direct'l] → VCon[+Telic].
Equations
- Semantics.Aspect.Composition.composeWithPP verb Semantics.Aspect.Composition.PPType.directional = { telicity := Features.Telicity.telic, duration := verb.duration, dynamicity := verb.dynamicity }
- Semantics.Aspect.Composition.composeWithPP verb Semantics.Aspect.Composition.PPType.locative = verb
Instances For
Principle of External Override (@cite{smith-1997} §3.2.5, rule 53): VCon[a, b, fα] + Adv[fβ] → DVCon[a, b, fβ].
When an external form (adverbial, viewpoint) has a temporal feature that clashes with the verb constellation's, the external feature overrides.
This is formalized as: override a single feature of the VCon profile. The relevant features are telicity and duration; dynamicity is never overridden by adverbials.
Equations
- Semantics.Aspect.Composition.overrideTelicity vcon ext = { telicity := ext, duration := vcon.duration, dynamicity := vcon.dynamicity }
Instances For
Override the duration feature (e.g., "for an hour" forces [+Dur]).
Equations
- Semantics.Aspect.Composition.overrideDuration vcon ext = { telicity := vcon.telicity, duration := ext, dynamicity := vcon.dynamicity }
Instances For
Verify the compositional rules against Smith's examples from §3.3.1.
(50a) "child walks the dog": V[-Telic] + NP[+Count] → VCon[-Telic]. Activity verb with count NP stays atelic.
(50b) "child walks to school": V[-Telic] + PP[Dir] → VCon[+Telic]. Activity verb with directional PP becomes telic accomplishment.
(51a) "child builds a house": V[+Telic] + NP[+Count] → VCon[+Telic]. Accomplishment verb with count NP stays telic.
(51b) "child builds houses": V[+Telic] + NP[-Count] → VCon[-Telic]. Accomplishment verb with mass/bare NP becomes atelic activity. This is Krifka's classic telicity transfer: QUA NP → telic VP, CUM NP → atelic VP.
(52) "Mary coughed for an hour": VCon[+Dyn,-Telic,-Dur] + Adv[+Dur] → DVCon[+Dyn,-Telic,+Dur]. Semelfactive → Activity by duration override.
External override: telic VCon + atelic adverbial → atelic DVCon. "walked to school for an hour" → activity reading.
External override: atelic VCon + telic adverbial → telic DVCon. "sang in ten minutes" → accomplishment reading.
Count NPs preserve the verb's telicity value.
Mass NPs always yield atelic VPs, regardless of verb telicity.
Directional PPs always yield telic VPs.
Locative PPs don't change telicity.
Composition preserves duration and dynamicity (only telicity changes).
Override is idempotent: overriding with the same feature twice is a no-op.
External override + composition commute when they target the same feature. Override after composition = override directly (composition is invisible).
@cite{smith-1997} §3.2.2, §3.2.5: semelfactives shift to activities
under duration. This is the same shift captured by duratize_semelfactive
in Features/Aktionsart.lean, but here derived compositionally via
external override of the duration feature.
Semelfactive + durative adverbial → activity (multiple-event reading). "Mary was coughing" / "Guy knocked at the door for 5 minutes". Derived from override: [-Dur] → [+Dur] yields Activity profile.
This matches the existing Features/Aktionsart shift operator.
Achievement + durative adverbial → accomplishment (process reading). "John was winning the race" presents preliminary stages. @cite{smith-1997} §3.2.4.