Documentation

Linglib.Theories.Semantics.Aspect.Composition

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 #

  1. NP/PP feature types — count/mass, directional/locative
  2. Basic-level composition — verb + arguments → verb constellation
  3. External override — adverbial/viewpoint overrides clashing feature
  4. 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:

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
    @[implicit_reducible]
    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
          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
            Instances For

              Override the duration feature (e.g., "for an hour" forces [+Dur]).

              Equations
              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.

                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.

                Achievement + durative adverbial → accomplishment (process reading). "John was winning the race" presents preliminary stages. @cite{smith-1997} §3.2.4.