Documentation

Linglib.Theories.Semantics.Degree.Granularity

Granularity-Sensitive Degree Semantics @cite{thomas-deo-2020} #

Thomas, W. & Deo, A. (2020). The interaction of just with modified scalar predicates. Sinn und Bedeutung 24, vol. 2, pp. 354–372.

Overview #

A granularity level maps each degree d on a scale to an open interval g(d) = (d − ε, d + ε) of width 2ε (the "grain", eq. 43). Equatives compare μ_x against the interval's infimum (eq. 45); comparatives compare against the supremum (eq. 49). Both use strict >.

Since the infimum and supremum move in opposite directions as ε varies, the entailment patterns reverse:

This reversal explains why approximative just yields different readings:

Structure #

A granularity interval: the open interval (lo, hi) around a degree.

Paper eq. (43): g(d) = (d − ε, d + ε) for non-endpoint d. Endpoints are handled asymmetrically:

  • g(min(S)) = (min(S), min(S) + ε)
  • g(max(S)) = (max(S) − ε, max(S))
  • lo : D

    Infimum of the grain cell — used by equatives (eq. 45).

  • hi : D

    Supremum of the grain cell — used by comparatives (eq. 49).

Instances For

    @cite{sauerland-stateva-2011} granularity framework #

    Eqs. (40a-c) define the properties of a granularity function γ:

    Eq. (41): γ is finer than γ' iff cells of γ are strictly narrower. Eq. (42): The concrete construction γ(d) = (d − ε, d + ε).

    Eq. (42): Construct a granularity interval from grain size ε. g(d) = (d − ε, d + ε) — the open interval of width 2ε around d. (Eq. 43 refines this for scale endpoints; see GranInterval docstring.)

    Equations
    Instances For
      theorem Semantics.Degree.Granularity.containsSelf {D : Type u_1} [AddCommGroup D] [LinearOrder D] [IsOrderedAddMonoid D] (ε d : D) ( : 0 < ε) :

      Eq. (40a): d ∈ g(d) for positive grain — every degree is in the interior of its own cell. For open interval (lo, hi): lo < d < hi.

      theorem Semantics.Degree.Granularity.finer_contained {D : Type u_1} [AddCommGroup D] [LinearOrder D] [IsOrderedAddMonoid D] (ε₁ ε₂ d : D) (h : ε₁ ε₂) :
      (mkGranInterval ε₂ d).lo (mkGranInterval ε₁ d).lo (mkGranInterval ε₁ d).hi (mkGranInterval ε₂ d).hi

      Eq. (41): Finer granularity → narrower intervals → containment. If ε₁ ≤ ε₂, then g_{ε₁}(d) ⊆ g_{ε₂}(d):

      • lo: d − ε₂ ≤ d − ε₁ (finer has larger infimum)
      • hi: d + ε₁ ≤ d + ε₂ (finer has smaller supremum)
      def Semantics.Degree.Granularity.eqAt {D : Type u_1} [LinearOrder D] (gi : GranInterval D) (μ_x : D) :

      Equative at granularity interval: "as Adj as d_c".

      Paper eq. (45): ⟦as...as d_c⟧^g = λGλx.∃d[d > inf(g(d_c)) ∧ G(d)(x)].

      For upward-monotone G (e.g., tall, where G(d)(x) iff μ(x) ≥ d), the existential reduces to μ_x > inf(g(d_c)).

      Equations
      Instances For

        Comparative at granularity interval: "Adj-er than d_c".

        Paper eq. (49): ⟦er/more than d_c⟧^g = λGλx.∃d[d > sup(g(d_c)) ∧ G(d)(x)].

        For upward-monotone G, the existential reduces to μ_x > sup(g(d_c)).

        Equations
        Instances For

          The central observation (§4.2) #

          Equatives and comparatives use opposite ends of the same interval. Since > is anti-monotone in its right argument (lower threshold → easier to exceed), the entailment direction reverses:

          The proofs are one-liners: transitivity of < and .

          theorem Semantics.Degree.Granularity.eq_fine_entails_coarse {D : Type u_1} [LinearOrder D] (gi₁ gi₂ : GranInterval D) (hlo : gi₂.lo gi₁.lo) (μ_x : D) (h : eqAt gi₁ μ_x) :
          eqAt gi₂ μ_x

          Equatives: finer grain (larger lo) entails coarser grain (smaller lo).

          If μ_x exceeds the fine-grain infimum, it a fortiori exceeds the coarse-grain infimum (which is smaller).

          theorem Semantics.Degree.Granularity.comp_coarse_entails_fine {D : Type u_1} [LinearOrder D] (gi₁ gi₂ : GranInterval D) (hhi : gi₁.hi gi₂.hi) (μ_x : D) (h : compAt gi₂ μ_x) :
          compAt gi₁ μ_x

          Comparatives: coarser grain (larger hi) entails finer grain (smaller hi).

          If μ_x exceeds the coarse-grain supremum, it a fortiori exceeds the fine-grain supremum (which is smaller).

          Approximative just #

          Paper eq. (44): ⟦just⟧ = λp λw. p^{g_finest}(w) ∧ ∀g ∈ 𝒢[p^g(w) → p^{g_finest} ≥_S p^g]

          Generic over any grain type G and degree type D.

          def Semantics.Degree.Granularity.atLeastAsStrong {D : Type u_1} {G : Type u_2} (p : GDProp) (g₁ g₂ : G) :

          Propositional strength (paper's ≥_S, footnote 10): p at g₁ is at least as strong as p at g₂ iff g₁-truth entails g₂-truth for all degree values.

          Paper: p^{g₁} ≥_S p^{g₂} ≡ ∀w[p^{g₁}(w) → p^{g₂}(w)].

          Equations
          Instances For
            def Semantics.Degree.Granularity.approxJust {D : Type u_1} {G : Type u_2} (p : GDProp) (finest : G) (μ_x : D) :

            Approximative just (paper eq. 44).

            Positive component: the prejacent holds at the finest grain. Negative component: at every grain where the prejacent holds, the finest-grain version is at least as strong.

            The paper restricts quantification to a finite contextual set 𝒢. We quantify over all G for simplicity; the structural results (vacuous/substantive) hold either way.

            Equations
            Instances For
              theorem Semantics.Degree.Granularity.just_vacuous_iff {D : Type u_1} {G : Type u_2} (p : GDProp) (finest : G) (h_strongest : ∀ (g : G), atLeastAsStrong p finest g) (μ_x : D) :
              approxJust p finest μ_x p finest μ_x

              Equative prediction: if the finest grain is the strongest for p, then just's negative component is vacuous — just adds nothing. "Just as tall as" ≈ "exactly as tall as".

              This holds for equatives because eq_fine_entails_coarse shows the finest equative (largest lo) entails all coarser equatives.

              theorem Semantics.Degree.Granularity.just_rules_out {D : Type u_1} {G : Type u_2} (p : GDProp) (finest g : G) (h_not_strongest : ¬atLeastAsStrong p finest g) (μ_x : D) (hjust : approxJust p finest μ_x) :
              ¬p g μ_x

              Comparative prediction: if the finest grain is NOT the strongest at some coarser grain g, then just rules out g. "Just taller than d_c" entails "not taller at grain g".

              This holds for comparatives because comp_coarse_entails_fine shows the finest comparative (smallest hi) does NOT entail coarser comparatives (larger hi).