Documentation

Linglib.Theories.Syntax.MereologicalSyntax.Interpretation

Mereological Syntax → Semantics Bridge #

@cite{adger-2025} @cite{borer-2005} @cite{wang-sun-2026}

Connects the syntactic visibility predicate (labelInOnePartChain) from mereological syntax to the semantic individuation operator (Div) from @cite{borer-2005}'s nominal theory, closing the gap between two independent uses of mereology in the library:

  1. Semantic mereology (Core/Mereology.lean): part-whole over entities. CUM (cumulative), QUA (quantized), Div (individuation to atoms).
  2. Syntactic mereology (MereologicalSyntax/): part-of over syntactic objects. SynObj, subjoin, Dimensionality.

The syntactic parthood structure determines which semantic operations compose into the denotation. Whether Cl is in D's 1-part chain determines whether individuation (Div) applies:

This is the formal content of @cite{wang-sun-2026}'s 的-contrast.

Whether the classifier is structurally visible from a syntactic node: true iff Cl is in the node's 1-part chain. This syntactic predicate determines whether semantic individuation applies.

Equations
Instances For
    noncomputable def MereologicalSyntax.nominalDenotation {α : Type u_1} [SemilatticeSup α] (d : SynObj) (P : αProp) :
    αProp

    The nominal denotation at a syntactic node, given a root predicate P.

    When Cl is visible (in the node's 1-part chain), Div applies: the denotation picks out atomic instances of P (sortal/count). When Cl is invisible, P passes through unmodified (mensural/mass).

    Equations
    Instances For

      Classifier-parametric variant: uses DivCL to further restrict which atoms qualify, based on the classifier's semantic content (e.g., 张 zhāng restricts to flat-surface atoms).

      Equations
      Instances For

        Core bridge: when Cl is visible, the nominal denotation is quantized. Syntactic visibility → semantic individuation → QUA.

        When Cl is invisible, the denotation equals the root predicate.

        Classifier-parametric bridge: visible Cl with classifier predicate still yields QUA.

        When Cl is invisible and the root is cumulative, the denotation is cumulative — the mass/mensural reading.

        theorem MereologicalSyntax.de_semantic_contrast {α : Type u_1} [SemilatticeSup α] (d_no_de d_de : SynObj) (P : αProp) (h_vis : individuates d_no_de = true) (h_invis : individuates d_de = false) (hc : Mereology.CUM P) :

        The structural semantic contrast: the same root predicate, in two structures differing only in dimensional attachment, yields opposite mereological properties.

        The hypothesis CUM P is @cite{borer-2005}'s thesis that root predicates are cumulative.