Documentation

Linglib.Theories.Semantics.ArgumentStructure.Affectedness.Hierarchy

Beavers' Affectedness Hierarchy: Typeclass Chain #

@cite{beavers-2011} @cite{beavers-koontz-garboden-2020}

The mathlib-style typeclass extends chain encoding @cite{beavers-2011}'s implicational affectedness hierarchy (eq. 62):

quantized → non-quantized → potential

Each level extends the next-weaker (mathlib pattern: cf. T0Space → T1Space → T2Space → ... for separation axioms, Semigroup → Monoid → Group → CommGroup for algebraic hierarchies).

The chain bottoms at IsPotentialAffected. Beavers' eq. (60d) Unspecified (mere participation, vacuous for any binary θ) is not formalised as a typeclass — see ScalarResult.lean §"Why Unspecified is not formalised" for the rationale. The AffectednessDegree enum keeps unspecified as a level tag for case analysis (parallel to mathlib's T0/T1/T2/... hierarchy where "non-T0" exists as a state but is not a typeclass).

Mathlib decomposition #

AffectednessDegree enum (Beavers 4-level scale) #

@cite{beavers-2011} eq. (62) — The Affectedness Hierarchy: four degrees of affectedness, defined by increasingly weaker truth conditions about what change occurs in the patient.

Each degree is an existential generalisation over the result' relation (formalised in ScalarResult.lean):

  • quantized: φ → ∃e∃s[result'(x, s, g_φ, e)] (specific result state g_φ)
  • nonquantized: φ → ∃e∃s∃g[result'(x, s, g, e)] (some result state)
  • potential: φ → ∃e∃s∃θ[θ(x, s, e)] (force recipient, latent scale)
  • unspecified: φ → ∃e∃θ'[θ'(x, e)] (mere participation; not formalised)

The hierarchy forms a total order by truth-conditional entailment. Constructor order matches strength (weakest first): unspecified < potential < nonquantized < quantized.

  • unspecified : AffectednessDegree

    Mere participation: no scale commitment (e.g., perception verbs see, smell).

  • potential : AffectednessDegree

    Force recipient: latent scale exists (e.g., surface contact hit, wipe).

  • nonquantized : AffectednessDegree

    Some result state entailed (e.g., degree achievements cool, widen).

  • quantized : AffectednessDegree

    Specific final degree entailed (e.g., accomplishments break, destroy).

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

      Typeclass extends chain (Beavers eq. 62) #

      @cite{beavers-2011} eq. (60c) Potential affectedness: the bottom of the typeclass chain. Patient is a force-recipient at every event of θ — content: Potential θ from ScalarResult.lean, parameterised over a [HasLatentScale α β] instance.

      Linguistic exemplars: surface contact / impact verbs (hit, wipe, scrub, kick) — what @cite{rappaport-hovav-levin-2001} called "force recipients" and @cite{beavers-koontz-garboden-2020} retain the term.

      Why this is the chain bottom (not Unspecified): Beavers' (60d) Unspecified is θ x e → ∃ θ', θ'(x, e), vacuous for any binary θ (take θ' = θ). A typeclass with vacuous content is content- free; the hierarchy chain bottoms at the first level with real structure. The AffectednessDegree.unspecified enum case still exists as a level tag for "no class declared."

      Instances

        @cite{beavers-2011} eq. (60b) Non-quantized affectedness: extends Potential with a result-state commitment (some final degree on the scale). Content: NonQuantized (δ := δ) θ from ScalarResult.lean.

        Requires both [HasScalarResult α δ β] (for the result state) and [HasLatentScale α β] (inherited via extends IsPotentialAffected). The forgetful link from result state to force recipient is held by the smart constructor mk'.

        Linguistic exemplars: degree achievements (widen, cool, lengthen), non-quantized cutting verbs (cut, slice).

        Instances

          @cite{beavers-2011} eq. (60a) Quantized affectedness: extends Non-quantized with the commitment to a SPECIFIC final degree g_φ : δ (lexically named by the verb).

          Type-valued (not Prop) — mathlib pattern: cf. MetricSpace (Type-valued because dist is data) vs T2Space (Prop). The final degree is data, not just an existential, preserving the lexical commitment Beavers (60a) makes (e.g., break-into-shards vs break-into-dust are distinguishable instances).

          Linguistic exemplars: accomplishments / achievements (break, shatter, destroy, devour). Note: K98 SINC verbs are a structurally stronger class — bijective sub-event ↔ sub-object correspondence — that ENTAILS Quantized given a HasScalarResult instance, but Quantized does not entail SINC. See Theories/Semantics/Events/Aspect/Incremental.lean for the bridge smart constructor.

          Instances

            Smart constructors #

            Smart constructors that take only the level-specific witnesses and derive the inherited fields automatically via the ScalarResult implication chain.

            @[reducible]

            Smart constructor for IsPotentialAffected: just the Potential witness.

            Equations
            • =
            Instances For
              @[reducible]
              def Semantics.ArgumentStructure.Affectedness.Hierarchy.IsNonQuantizedAffected.mk' {α : Type u_1} {β : Type u_2} {δ : Type u_3} [HasScalarResult α δ β] [HasLatentScale α β] {θ : αβProp} (forget : ∀ (x : α) (e : β), ( (g : δ), HasScalarResult.resultAt x g e)HasLatentScale.latentScale x e) (h : NonQuantized θ) :

              Smart constructor for IsNonQuantizedAffected: takes the NonQuantized witness and the forgetful HasScalarResult → HasLatentScale link; derives the inherited Potential field via potential_of_nonQuantized.

              Equations
              • =
              Instances For
                @[reducible]
                def Semantics.ArgumentStructure.Affectedness.Hierarchy.IsQuantizedAffected.mk' {α : Type u_1} {β : Type u_2} {δ : Type u_3} [HasScalarResult α δ β] [HasLatentScale α β] {θ : αβProp} (forget : ∀ (x : α) (e : β), ( (g : δ), HasScalarResult.resultAt x g e)HasLatentScale.latentScale x e) (g_φ : δ) (h : Quantized θ g_φ) :

                Smart constructor for IsQuantizedAffected: takes the final degree g_φ : δ, the Quantized θ g_φ proof, and the forgetful link; derives all weaker levels via the eq. (62) hierarchy. The Type-valued result preserves g_φ as accessible data.

                Equations
                Instances For