Documentation

Linglib.Theories.Morphology.DM.CategorizerSemantics

Categorizer Semantics @cite{adamson-2024} @cite{barker-2011} #

Semantic denotations for categorizing heads (n) in Distributed Morphology, bridging the morphosyntactic structure of DM categorizers to compositional semantics via @cite{barker-2011}'s type-shifting framework.

@cite{adamson-2024} proposes three denotation types for n heads in Teop:

Key structural correspondence #

The morphosyntactic features on n determine the semantic type:

This means the DM categorizer head is simultaneously:

  1. A morphosyntactic object (bearing gender features, licensing possession)
  2. A compositional semantic operator (determining the noun's semantic type)

The semantic type contributed by a categorizing head n. This determines how the root's content is composed into the noun's denotation (@cite{adamson-2024} §3.1).

  • relational : NSemanticType

    Relational: n introduces a relation (body-part-of, part-of, etc.). Result type: ⟨e,⟨e,t⟩⟩ = Pred2.

  • sortal : NSemanticType

    Sortal: n simply categorizes. Result type: ⟨e,t⟩ = Pred1.

  • alienator : NSemanticType

    Alienator: n existentially closes a relational root. Input type: ⟨e,⟨e,t⟩⟩; result type: ⟨e,t⟩.

Instances For
    Equations
    • One or more equations did not get rendered due to their size.
    Instances For

      Map n-head features to the semantic type they contribute.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        Denotation of n_{body-part{D}}: combines a root predicate with a body-part-of relation to yield a relational noun.

        @cite{adamson-2024} (36): ⟦nP⟧ = λy.λx. ROOT(x) ∧ body-part-of(x,y)

        This is @cite{barker-2011}'s π (relationalizer): π(P, R) = λx.λy. P(y) ∧ R(x,y)

        In π's convention: first arg = possessor, second arg = possessee.

        Equations
        Instances For

          Denotation of n_{sortal}: the root predicate, unchanged.

          @cite{adamson-2024} (37): ⟦nP⟧ = λx. ROOT(x)

          Equations
          Instances For

            Denotation of n_{alienator}: existentially closes the possessor argument of a relational noun.

            @cite{adamson-2024} (43): ⟦n_{alienator}⟧ = λQ.λx. ∃y. Q(y)(x)

            The first argument of the input relation (the possessor) is existentially closed, yielding a one-place property of the possessee.

            Equations
            Instances For

              n_{sortal} IS Barker's bare semantics: identity on the root predicate.

              n_{alienator} is the argument-flipped version of Barker's Ex.

              Barker's Ex closes the second argument of R(x,y): ExProp(R)(x)(s) = ∃y. R(x,y,s)

              The alienator closes the first argument (the possessor): nAlienatorDenot(R)(x)(s) = ∃y. R(y,x,s)

              Both perform existential closure; the difference is which argument of the relation represents the possessor vs possessee.

              n with {D} produces a relational denotation; n without {D} does not.

              iPossession: √BINA + n_{body-part{D}} → relational noun.

              ⟦bina⟧ = λposs.λx. isSpleen(x) ∧ bodyPartOf(poss, x) 'spleen of poss'

              Equations
              Instances For

                aPossession: √BINA + n_{alienator} → existentially closed.

                ⟦bina⟧ = λx. ∃y. isSpleen(x) ∧ bodyPartOf(y, x) 'a spleen (of some unspecified possessor)'

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For

                  Sortal noun: √TARA + n_{sortal} → bare predicate.

                  ⟦house⟧ = λx. isHouse(x) No possessor slot available.

                  Equations
                  Instances For

                    With a specific possessor, the iPossessed body part reduces to a property (Barker's possessiveRelational).

                    The sortal noun has no relatum slot — it cannot directly take a possessor without π.

                    theorem Morphology.DM.CategorizerSemantics.same_root_different_types {E S : Type} (isSpleen : Semantics.Lexical.Noun.Relational.Barker2011.Pred1 E S) (bodyPartOf : Semantics.Lexical.Noun.Relational.Barker2011.Pred2 E S) (x y : E) (s : S) :
                    teopSpleenIPossessed isSpleen bodyPartOf y x s = (isSpleen x s && bodyPartOf y x s)

                    Key insight: the SAME root (√BINA) yields different semantic types depending on which n head it combines with. The gender alternation in Teop (gender I vs gender II) corresponds to this semantic type alternation (relational vs sortal/alienated).

                    theorem Morphology.DM.CategorizerSemantics.alienated_closes_possessor {E S : Type} (isSpleen : Semantics.Lexical.Noun.Relational.Barker2011.Pred1 E S) (bodyPartOf : Semantics.Lexical.Noun.Relational.Barker2011.Pred2 E S) (x : E) (s : S) :
                    teopSpleenAPossessed isSpleen bodyPartOf x s ∃ (z : E), isSpleen x s = true bodyPartOf z x s = true

                    The alienator existentially closes the possessor slot.

                    The Barker–Adamson correspondence:

                    CatHead featureSemantic typeBarker operation
                    selectsD = truerelationalπ
                    selectsD = false (regular)sortalbare
                    selectsD = false (aPoss)alienatorEx

                    The genuine correspondence theorem is selectsD_iff_relational above: selectsD on n ↔ relational semantic type. The sortal/alienator distinction is secondary (determined by whether aPossession is mediated).

                    The retraction property: applying the alienator to a π-relational noun recovers the root predicate (up to existential closure).

                    nAlienatorDenot(π(P, R), x, s) ↔ ∃y. P(x,s) ∧ R(y,x,s)

                    This is why "free" uses of iPossessable nouns in Jarawara are feminine: the root combines with n_{alienator}, existentially closing the possessor slot. The result is a property, which is the same type as n_{sortal}. Since the alienator n is plain (no gender feature), the noun is feminine (unmarked).

                    Only relational nouns (n with {D}) can directly take a possessor. Sortal and alienated nouns cannot — they need Barker's π first.