Framework-Independent Comparative Semantics #
@cite{hoeksema-1983} @cite{rett-2026} @cite{schwarzschild-2008} @cite{von-stechow-1984}
Comparative semantics shared across all degree frameworks: the basic
comparativeSem and equativeSem functions, antonymy as scale reversal,
DE-ness of than-clauses (NPI licensing), and boundary dependence.
This module was extracted from Theories/Semantics/Lexical/Adjective/Comparative.lean
(which now re-exports from here). The framework-specific content (MAX,
ambidirectionality, manner implicature) is in Degree/Frameworks/Rett.lean.
Key Results #
- comparativeSem: "A is taller than B" iff μ(A) > μ(B) (positive) or μ(A) < μ(B) (negative).
- Antonymy as scale reversal: "A taller than B" ↔ "B shorter than A".
- DE-ness of than-clauses: universal quantification over the standard domain is anti-monotone.
Comparative direction reuses scale polarity from Core.
positive: "taller" — MAX picks the highest degrees.
negative: "shorter" — MAX picks the lowest degrees.
Instances For
Comparative semantics (@cite{rett-2026} / @cite{schwarzschild-2008}): "A is Adj-er than B" iff μ(a) exceeds μ(b) on the directed scale.
Equations
Instances For
Equative semantics: "A is as Adj as B" iff μ(a) ≥ μ(b) on the directed scale.
Equations
- Semantics.Degree.Comparative.equativeSem μ a b Core.Scale.ScalePolarity.positive = (μ a ≥ μ b)
- Semantics.Degree.Comparative.equativeSem μ a b Core.Scale.ScalePolarity.negative = (μ a ≤ μ b)
Instances For
MAX–direct bridge: the direct comparison μ(a) > μ(b) is
equivalent to the MAX-based formulation.
"A taller than B" ↔ "B shorter than A" — antonymy is argument swap plus direction reversal.
Equative antonymy: "A as tall as B" ↔ "B as short as A".
The comparative depends only on the boundary μ_b.
The equative depends only on the boundary μ_b.
The than-clause argument of a comparative is DE (@cite{hoeksema-1983}): universal quantification over a domain is anti-monotone in the domain.
Manner implicature triggered by EN in an ambidirectional construction.
evaluative: the relation is noteworthy (large gap / early timing).
atypical: the EN form is pragmatically marked (optional, stylistic).
- evaluative : Bool
Does EN trigger an evaluative reading?
- atypical : Bool
Is the EN form pragmatically marked (optional, stylistic)?
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
EN in ambidirectional constructions triggers evaluativity.
Equations
Instances For
Comparative via extents: "A is taller than B" iff A's positive
extent strictly contains B's. Bridges the point comparison
to the algebraic posExt_ssubset_iff from Core.Scale.
Equative via extents: "A is as tall as B" iff B's positive extent is a subset of A's.
Equations
Instances For
Equative-via-extents is equivalent to μ(a) ≥ μ(b).
"A is taller than B" iff "B is shorter than A" — derived from the complementarity of positive and negative extents, not stipulated as a lexical property of antonym pairs.
This is @cite{kennedy-1999}'s central result: antonymy equivalence
follows from the algebra of extents. Delegates to
Core.Scale.antonymy_biconditional.