Modifiers #
A modifier of τ is a function on the modificand's denotation
([Par70]: modifiers as functions on predicates). Adjectives,
adverbs, and relative clauses are all modifiers — of different τ (nominal
e ⇒ t, event Event → Prop, …) — unified by being this type, not by
implementing an interface.
The [Kam75] meaning-postulate classification is order-theoretic and is
stated here at that generality: over an ordered carrier, subsective
modifiers are deflationary (m x ≤ x), privative modifiers have output
disjoint from the modificand, and intersective modifiers are
meet-translations (m x = q ⊓ x; at α → Prop, pointwise conjunction).
The intensional hierarchy (Modification/Classification.lean) and its
single-world specializations (Studies/Kamp1975.lean § 1) are these
classes at the carriers W → E → Prop and E → Prop.
Main declarations #
Modifier— a modifier ofτis an endofunctionτ → τ.Modifier.intersective— the intersective modifier built fromq: meet the modificand withq.Modifier.isIntersective/.isSubsective/.isPrivative— the [Kam75] classification over an ordered carrier.
A modifier over an ordered carrier is subsective if its output lies below the modificand: a skillful surgeon is a surgeon.
Equations
- m.isSubsective = ∀ (x : α), m x ≤ x
Instances For
Subsectivity is the deflationary condition in the pointwise order on modifiers.
A modifier is privative if its output is disjoint from the modificand: a fake gun is not a gun.
Equations
- m.isPrivative = ∀ (x : α), Disjoint (m x) x
Instances For
A modifier that is both privative and subsective sends every modificand
to ⊥ — the order-theoretic core of "privative is incompatible with
subsective".
A modifier is intersective if it is meet with some fixed element.
Equations
- m.isIntersective = ∃ (q : α), ∀ (x : α), m x = q ⊓ x
Instances For
Intersective ⟹ subsective ([Kam75]'s implication structure).
The intersective modifier built from q: meet the modificand with q.
At α → Prop this is pointwise conjunction; at conjoinable Denot
domains (Intensional/Algebra.lean instances) it is Partee-Rooth
generalized conjunction with the head. The well-behaved special case
(restrictive relative clauses, intersective adjectives, manner adverbs).
Equations
- Modifier.intersective q x✝ = q ⊓ x✝
Instances For
Modificand and modifier meet symmetrically.