Reference to ad hoc kinds #
@cite{mendia-2020}
@cite{mendia-2020} (L&P 43:589-631) argues that ad hoc kind reference —
uses of that kind of dog to refer to a kind no lexicalized noun names — is
best analysed by giving speakers the ability to choose, in context, an
equivalence relation on the instances of a base kind. Members of each
equivalence class then instantiate a subkind, and that kind of N picks
out one such class via demonstration.
Subkinds-as-equivalence-classes is exactly mathlib's Setoid. This file
provides Mendia's linguistic vocabulary (subkindOf, instantiates,
disjointness_condition) on top of Setoid directly — no parallel struct
is introduced. @cite{carlson-1977}'s Disjointness Condition is then a
corollary of the standard fact that distinct equivalence classes are
disjoint.
Consumers:
Phenomena/Numerals/Studies/Snyder2026.lean— instantiates the framework for the kind TWO with subkinds2_ℕ, 2_ℤ, 2_ℚ, 2_ℝ(Snyder §4.3, §5).Theories/Semantics/Kinds/MeaningPreservation.lean— singular kinds satisfy the framework with the discrete partition (one-class-per-kind).- Future:
Phenomena/Generics/KindReference.leanfor ad hoc kind picking viathat kind of N.
The subkind containing a under the salient kind-formation s: its
equivalence class.
@cite{mendia-2020}: "For any entities instantiating a kind k, we can exhaustively partition those entities into disjoint subsets via a salient equivalence relation, where members of the resulting equivalence classes instantiate subkinds of k."
Equations
- Semantics.Kinds.Subkinds.subkindOf s a = {x : Atom | s a x}
Instances For
An entity instantiates a subkind iff it belongs to that equivalence class.
Equations
- Semantics.Kinds.Subkinds.instantiates s a x = (x ∈ Semantics.Kinds.Subkinds.subkindOf s a)
Instances For
@cite{carlson-1977}'s Disjointness Condition, derived from the equivalence-class structure. Distinct classes of any equivalence relation are disjoint as subsets of the carrier.
Two atoms instantiate the same subkind iff they are equivalent under the salient relation.
Distinct subkinds (under the salient relation) are unequal as sets.
Membership in a subkind via the salient relation.