Documentation

Linglib.Semantics.Verb.Root.SalienceClass

Lexical Salience Classes #

[Luc94]'s classification of verbal roots by which argument(s) the underived root form makes "salient" (default case-role assignment at the propositional level): a 3-way salience cut by required transitiviser — agent (=t), agent-patient (=∅), patient (=s) — plus the separately-derived positional class (-tal), systematized here as one enum.

The structural characterization of each class needs two dimensions. Agent-patient salience is root transitivity: these roots "require two arguments and refer to events involving the action of one entity on another" ([Luc94]) — Root.Arity.selectsTheme, the Mayan root-transitive class of [Coo19]. It is NOT a B&K-G feature configuration: p'is 'measure' and lo'š 'punch' are manner roots with no entailed change of state. The two intransitive classes are then separated by the signature (manner vs result), matching the Sapir/Perlmutter unaccusativity split [Luc94] cites. This two-dimensional characterization is a cross-framework reconstruction ([Luc94] predates both [Coo19] and [BKG20]), not Lucy's own formulation.

The full [Luc94] analysis — operator applicability, motion-roots-non-class theorem, per-root verifications — lives in Studies/Lucy1994.lean.

Main declarations #

Salience classification of verbal roots ([Luc94]): the 3-way transitiviser cut plus the positional class. "Salience" is shorthand for "default case-role assignment at the propositional level" — not a substantive feature [±agent] written into the root.

  • agent : SalienceClass

    Underived intransitive whose argument is the agent.

  • agentPatient : SalienceClass

    Underived transitive — both arguments lexically salient.

  • patient : SalienceClass

    Underived intransitive whose argument is the patient.

  • positional : SalienceClass

    Stative root (positional / configurational).

Instances For
    @[implicit_reducible]
    Equations
    Equations
    Instances For

      Named class conditions #

      Structural conditions characterising membership in each [Luc94] salience class, over the pair (B&K-G kind signature × Coon arity). These conditions are language-independent: the same conditions characterise the class in any inventory whose transitivisers respect the diagnostic. They appear directly as the applies field of each Yukatek operator in Fragments/Mayan/Yukatek/Operators.lean, making the operator-applicability ↔ salience-class connection true by construction rather than only provable per-case.

      Agent-salient: intransitive manner-of-action root (requires =t to transitivise; [Luc94]: "actions or activities that some entity undertakes").

      Equations
      Instances For

        Agent-patient salient: the root is lexically transitive — it "require[s] two arguments" ([Luc94]), i.e. selects a theme ([Coo19]'s √TV). Signature-independent: root transitives need not entail any change of state (p'is 'measure').

        Equations
        Instances For

          Patient-salient: intransitive change-of-state root (requires =s to transitivise; [Luc94]: "state changes that some entity undergoes more or less spontaneously").

          Equations
          Instances For

            Positional: pure stative configurational root (requires -tal for the inchoative; [Luc94]).

            Equations
            Instances For

              Salience classifier #

              Map a (B&K-G kind signature × Coon arity) pair to its salience class ([Luc94]) by dispatching on the four named conditions, which align with operator applicability conditions in Fragments/Mayan/Yukatek/Operators.lean.

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

                Pairwise disjointness of class conditions #

                The four named conditions are pairwise disjoint: at most one fires on any (signature, arity) pair. (They are jointly not exhaustive — intransitive signatures with neither manner nor result that are not pure {state} fall outside all four; see classOf_eq_none_iff.)

                theorem Verb.classOf_eq_none_iff (s : Root.Kinds) (ar : Root.Arity) :
                classOf s ar = none ¬IsAgentSalient s ar ¬IsAgentPatientSalient ar ¬IsPatientSalient s ar ¬IsPositional s ar

                classOf s ar = none iff the pair falls outside all four named conditions. Characterises the gap in the diagnostic: intransitive roots with neither a manner nor a result kind, other than pure {state}, are unclassified by Lucy's Yukatek diagnostic.