Documentation

Linglib.Semantics.ArgumentStructure.Agentivity

The agentivity cube ([Gri11] §2.1) #

[Gri11] reformulates [Dow91]'s Proto-Agent entailments as four privative features: Proto-Patient is not a separate cluster but the underspecified (∅) pole of each feature, and Dowty's relational "causation" is decomposed into participant-bound "instigation" (p.521). Agentivity is the Boolean cube on Agentivity.Feature, ordered by feature-set inclusion; Grimm's Fig. 1 lattice is its 12-element Agentivity.Valid subset.

The persistence axis is PersistenceLevel.lean; the product object is ParticipantType.lean; the projection from [Dow91]'s profiles is Projection.lean.

The four agentivity primitives (Table 2 (agentive properties), p.520).

Each has an agentive (+) and non-agentive (∅) pole; the non-agentive pole is simply the absence of the property — the privative opposition that replaces Dowty's two independent clusters.

  • volition : Feature

    +volition: the participant intends to bring about the event.

  • sentience : Feature

    +sentience: conscious involvement in the action or state.

  • instigation : Feature

    +instigation: prior independent action whose effects can be attributed to this argument. Replaces Dowty's "causation" (p.521).

  • motion : Feature

    +motion: the argument is in motion during the event.

Instances For
    @[implicit_reducible]
    Equations
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For
      @[implicit_reducible]
      Equations
      • One or more equations did not get rendered due to their size.

      An argument's agentivity: which of the four primitives it bears, as a point of the Boolean cube on Agentivity.Feature. Order, lattice, and Boolean-algebra structure are pointwise, so a ≤ b is feature-set inclusion; Grimm's Fig. 1 lattice is the 12-element Valid subset of the 16-element cube.

      Equations
      Instances For
        @[implicit_reducible]
        Equations
        • One or more equations did not get rendered due to their size.
        @[implicit_reducible]
        instance ArgumentStructure.Agentivity.instDecidableRelLe :
        DecidableRel fun (x1 x2 : Agentivity) => x1 x2
        Equations
        @[implicit_reducible]
        instance ArgumentStructure.Agentivity.instDecidableRelLt :
        DecidableRel fun (x1 x2 : Agentivity) => x1 < x2
        Equations
        def ArgumentStructure.Agentivity.mk (volition sentience instigation motion : Bool) :

        Build an agentivity value from the four indicators, in Table 2 order.

        Equations
        Instances For
          @[implicit_reducible]
          Equations
          • One or more equations did not get rendered due to their size.
          @[simp]
          theorem ArgumentStructure.Agentivity.mk_inj {v s i m v' s' i' m' : Bool} :
          mk v s i m = mk v' s' i' m' v = v' s = s' i = i' m = m'

          Validity: volition presupposes sentience (p.521, following [Dow91] p.607). Carves Grimm's 12-element Fig. 1 lattice out of the 16-element cube.

          Equations
          Instances For
            @[implicit_reducible]
            Equations

            Number of positive features (= height in the cube).

            Equations
            Instances For
              theorem ArgumentStructure.Agentivity.le_iff (a b : Agentivity) :
              a b (a.volition = trueb.volition = true) (a.sentience = trueb.sentience = true) (a.instigation = trueb.instigation = true) (a.motion = trueb.motion = true)

              The inclusion order, componentwise.