Antonym Prediction — Two Extensional Denotations + Prediction Skeleton #
@cite{cruse-1986} @cite{horn-1989} @cite{krifka-2007b}
For the four-form quadruplet of a negated antonymic adjective pair (see
AntonymQuadruplet.lean), the literature contests two extensional
denotations:
Contradictory denotation — single threshold
θ. Both poles shareθ; not unhappy reduces (DNE) to happy. Captured byAntonymForm.contradictoryDenot.Strengthened denotation — two thresholds with
tp.neg ≤ tp.pos. The borderline region[tp.neg, tp.pos]lifts not unhappy away from happy, creating the polarity asymmetry. Captured byAntonymForm.strengthenedDenot.
The two denotations are anchored by the substrate theorems
contradictoryDenot_synonymy (DNE collapse) and
strengthenedDenot_breaks_synonymy (gap exists).
The prediction skeleton predictionForAntonymy : NegationType → Asymmetry reads off Fragment-level antonymy classification (contrary
vs contradictory) to predict the polarity-behaviour direction. It is
anchored in the two denotation theorems: contradictory antonymy entails
DNE (symmetric) and contrary antonymy admits the strengthened gap
(asymmetric).
Per-paper analyses (Krifka's BiOT derivation, Tessler-Franke's RSA scoring,
Alexandropoulou-Gotzner's three-case typology) consume these substrate
primitives via Iff.rfl bridges that survive substrate transparency
(both denotations are abbrevs).
Contradictory denotation of an antonym form on a single threshold θ.
Both poles share θ; the four forms collapse to two distinct truth
values (positive/notNegative ≡ d > θ; notPositive/negative ≡ d ≤ θ).
This is the literal-semantic position @cite{krifka-2007b} attributes to
antonyms before pragmatic strengthening.
Equations
- Semantics.Gradability.AntonymForm.contradictoryDenot θ Semantics.Gradability.AntonymForm.positive d = Semantics.Degree.positiveMeaning d θ
- Semantics.Gradability.AntonymForm.contradictoryDenot θ Semantics.Gradability.AntonymForm.notPositive d = ¬Semantics.Degree.positiveMeaning d θ
- Semantics.Gradability.AntonymForm.contradictoryDenot θ Semantics.Gradability.AntonymForm.negative d = ¬Semantics.Degree.positiveMeaning d θ
- Semantics.Gradability.AntonymForm.contradictoryDenot θ Semantics.Gradability.AntonymForm.notNegative d = Semantics.Degree.positiveMeaning d θ
Instances For
Strengthened denotation of an antonym form on a ThresholdPair. Two
thresholds tp.neg ≤ tp.pos; the borderline region [tp.neg, tp.pos]
lifts notNegative ("not unhappy") away from positive ("happy") and
notPositive ("not happy") away from negative ("unhappy"). This is the
effective-semantic position post-pragmatic-strengthening (Krifka 2007 §4)
or the lexically-encoded position (Alexandropoulou-Gotzner 2024).
Equations
- Semantics.Gradability.AntonymForm.strengthenedDenot tp Semantics.Gradability.AntonymForm.positive d = Semantics.Gradability.positiveMeaning' d tp
- Semantics.Gradability.AntonymForm.strengthenedDenot tp Semantics.Gradability.AntonymForm.notPositive d = Semantics.Gradability.contradictoryNeg d tp.pos
- Semantics.Gradability.AntonymForm.strengthenedDenot tp Semantics.Gradability.AntonymForm.negative d = Semantics.Gradability.contraryNegMeaning d tp
- Semantics.Gradability.AntonymForm.strengthenedDenot tp Semantics.Gradability.AntonymForm.notNegative d = Semantics.Gradability.notContraryNegMeaning d tp
Instances For
Under the contradictory denotation, the negative-notPositive and
notNegative-positive form pairs are extensionally identical. This is
the formal puzzle @cite{krifka-2007b} solves pragmatically: literal
contradictory semantics predicts not unhappy ≡ happy.
Under the strengthened denotation with strict gap (tp.neg < tp.pos),
the notNegative and positive extensions come apart: there exists a
degree (the negative threshold itself) where not unhappy holds but
happy does not. This is the witness for the polarity asymmetry.
Anchored prediction skeleton. Map an antonymy type to predicted polarity-asymmetry direction:
.contradictory ↦ .symmetric— anchored bycontradictoryDenot_synonymy(the contradictory base collapses notPositive and negative; no asymmetry to derive)..contrary ↦ .asymmetric— anchored bystrengthenedDenot_breaks_synonymy(the strengthened semantics admits a witness where notNegative holds but positive does not).
Consumed by per-paper prediction signatures (Horn 1989, Krifka 2007,
Alexandropoulou-Gotzner 2024 JoS) which read this map via
predictionForEntry against a Fragment lexical entry's
antonymRelation field.
Equations
Instances For
Read prediction off a Fragment lexical entry's antonymRelation. Defaults
to .symmetric for entries without an explicit antonymy classification.