Documentation

Linglib.Phenomena.TenseAspect.Studies.Champollion2017

@cite{champollion-2017}: Distributivity as a bridge between aspect and measurement #

Paper-anchored study for Parts of a Whole. The book unifies four ostensibly disjoint phenomena — predicative distributivity (Ch 4), atelicity (Ch 5–6), and pseudopartitive measurement (Ch 7) — under one higher-order property, stratified reference (SR, Ch 4 §4.6). A distributive construction with Share S, Map M, granularity g describing entity x is acceptable iff SR_{M,g}(S)(x) (Distributivity Constraint, Ch 4 §4.6).

Substrate types SR, SDR, SSR, SMR and the construction abbreviations live in Theories/Semantics/Events/Aspect/Stratified.lean. This file consumes them against English Fragment verbs and stages the empirical data the book argues over.

Main definitions #

Caveats #

TODO #

What this file is NOT #

References #

Distributivity Profiles #

Per-verb distributivity profile: whether the verb distributes over atomic agents and/or themes. Mirrors the postulates in VerbDistributivity from Events/Aspect/Stratified.lean.

  • verb : String
  • agentSDR : Bool
  • themeSDR : Bool
Instances For
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For
      def Champollion2017.instDecidableEqDistProfile.decEq (x✝ x✝¹ : DistProfile) :
      Decidable (x✝ = x✝¹)
      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        "see" distributes on both agent and theme. "The boys saw the movies" → each boy saw each movie.

        Equations
        Instances For

          "kill" distributes on theme only. "The boys killed the chicken" → the chicken was killed (by the group).

          Equations
          Instances For

            "meet" does NOT distribute on agent (inherently collective). "The boys met" does NOT entail each boy met.

            Equations
            Instances For

              "eat" distributes on agent (each ate something). "The boys ate the pizza" → each boy ate (some) the pizza.

              Equations
              Instances For

                Distributivity Data #

                Empirical collective/distributive ambiguity judgments.

                • sentence : String
                • distributiveOK : Bool
                • collectiveOK : Bool
                Instances For
                  Equations
                  • One or more equations did not get rendered due to their size.
                  Instances For
                    def Champollion2017.instDecidableEqDistDatum.decEq (x✝ x✝¹ : DistDatum) :
                    Decidable (x✝ = x✝¹)
                    Equations
                    • One or more equations did not get rendered due to their size.
                    Instances For
                      Equations
                      Instances For
                        Equations
                        Instances For
                          Equations
                          Instances For
                            Equations
                            Instances For

                              Profile → Data Alignment #

                              Verify that the distributivity profiles predict the empirical data: agentSDR = true ↔ distributive reading available.

                              All data consistently shows collective reading is available.

                              VerbDistributivity Postulate Alignment #

                              The VerbDistributivity class from Events/Aspect/Stratified.lean axiomatizes SDR_univ for specific verbs. Verify our profiles match: - see_agent_sdr, see_theme_sdr ↔ seeProfile = (true, true) - kill_theme_sdr, kill_agent_not_sdr ↔ killProfile = (false, true) - meet_agent_not_sdr ↔ meetProfile.agentSDR = false

                              See profile matches VerbDistributivity postulates.

                              Kill profile matches VerbDistributivity postulates.

                              Meet profile matches VerbDistributivity postulates.

                              SSR_univ ↔ Vendler Bridge #

                              SSR_univ connects to Vendlerian atelicity via qua_incompatible_with_ssr and forAdverbial_requires_ssr: QUA(P) + SSR_univ P → ⊥ at any P-event, so telic predicates can't have SSR_univ. The atelic Vendler classes (states/activities) are expected to have SSR_univ and to accept for X; the telic classes (achievements/accomplishments) are not and accept in X.

                              We verify this through the Vendler classification of fragment verbs.
                              The Bool-valued `predictsSSR` below is the per-class typology
                              prediction; bridging to the substrate-side `SSR_univ` predicate on
                              a verb's denotation requires a verb-side `Event Time → Prop` denotation
                              (theory-hub denotation discipline; follow-up work). 
                              

                              Per-verb prediction of SSR_univ based on Vendler class: state / activity → atelic; achievement / accomplishment / semelfactive → not atelic.

                              Equations
                              Instances For