LITTLE: Degree Negation #
The LITTLE operator @cite{heim-2006} @cite{buring-2007} as degree-predicate
complementation: short = LITTLE tall, less = LITTLE -er,
fewer = LITTLE many. Semantically, ⟦LITTLE⟧(P)(d) = ¬P(d). On extents,
LITTLE maps posExt to negExt; on intervals (see Intervals.lean §6), it
inverts the measured region.
@cite{buring-2007} uses LITTLE to analyse cross-polar nomalies:
"the ladder was shorter than the house was high" works because
MORE [LITTLE long] -er can be reinterpreted as LITTLE-er long (the
"more-to-less metamorphosis").
Main definitions #
littlePred— degree-predicate complement,⟦LITTLE⟧ = λP.λd. ¬ P d
Main theorems #
little_posExt_eq_negExt— the formal content of "short = LITTLE tall"little_involution— LITTLE is its own inverselittle_reverses_comparison— LITTLE flips comparison direction
LITTLE on degree predicates: complementation.
Equations
- Semantics.Degree.Little.littlePred P d = ¬P d
Instances For
LITTLE maps the positive extent to the negative extent:
LITTLE({d | d ≤ μ(x)}) = {d | μ(x) < d}. The formal content of
"short = LITTLE tall" — the degree predicate for 'short' is the
complement of the degree predicate for 'tall', exactly the relation
between posExt and negExt from @cite{kennedy-1999}.
LITTLE is an involution: double degree negation cancels.
LITTLE reverses the comparison direction: "A is LITTLE-er Adj than B"
↔ "B is Adj-er than A". Delegates to taller_shorter_antonymy.