Documentation

Linglib.Syntax.Category.Verb.Symmetric

Symmetric verbs #

A symmetric verb denotes mutual atomic events — intransitive kiss, meet, collide, quarrel: the participants are identically involved in a single event, and linguistic diagnostics (count adverbials, modification) see no parts. The denotational contract, after [Lan00b], [Dim08], and [Sil12]: the verb's events are atomic, its role assigns the group atom over an unordered pair of participants, and dissolution recovers two events of the transitive base with crossed role values — a meaning postulate relating the two entries, not a decomposition, which is why the underlying events stay invisible. Formation-locus classification of reciprocal verbs lives in Verb.Reciprocal; the symmetric entries are the lexicon-formed ones (Studies/Siloni2012.lean).

def Verb.instReprSymmetric.repr :
SymmetricStd.Format
Equations
  • One or more equations did not get rendered due to their size.
Instances For
    @[instance_reducible]
    Equations
    Equations
    Instances For
      @[instance_reducible]
      Equations
      class Verb.SymmetricDenotation {D : Type u_1} {E : Type u_2} [SemilatticeSup D] [SemilatticeSup E] (GD : Semantics.Plurality.GroupStructure D) (GE : Semantics.Plurality.GroupStructure E) (base : Set E) (ag th : ED) (sym : Set E) (agTh : ED) :

      The symmetric-verb denotational contract: sym is a set of atomic events whose role agTh assigns the group atom over an unordered pair, and each event dissolves into two events of base with crossed Agent and Theme values.

      • atomic (e : E) : e symMereology.Atom e

        Symmetric verbs denote singular events: no proper parts.

      • pairRole (e : E) : e sym∃ (d₁ : D) (d₂ : D), d₁ d₂ agTh e = GD.up (d₁d₂)

        The role assigns the group atom over an unordered pair.

      • postulate (e : E) : e sym∀ (d₁ d₂ : D), d₁ d₂agTh e = GD.up (d₁d₂)∃ (e₁ : E) (e₂ : E), GE.down e = e₁e₂ e₁ base e₂ base ag e₁ = d₁ th e₁ = d₂ ag e₂ = d₂ th e₂ = d₁

        The meaning postulate: dissolution yields two base events with crossed role values.

      Instances