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:
n_{body-part{D}} (36): λy.λx. ROOT(x) ∧ body-part-of(x,y) Introduces a body-part-of relation, yielding a relational predicate (type ⟨e,⟨e,t⟩⟩). Equivalent to @cite{barker-2011}'s π (relationalizer).
n_{sortal} (37): λx. ROOT(x) Bare sortal predicate (type ⟨e,t⟩). Equivalent to @cite{barker-2011}'s bare semantics.
n_{alienator} (43): λQ.λx. ∃y. Q(y)(x) Existentially closes the possessor argument of a relational noun, yielding a property (type ⟨e,t⟩). Structurally parallel to @cite{barker-2011}'s Ex (existential closure).
Key structural correspondence #
The morphosyntactic features on n determine the semantic type:
- n with {D} (
selectsD = true) → relational denotation (π) - n without {D}, combining with a non-relational root → sortal (bare)
- n without {D}, mediating aPossession → existential closure (Ex)
This means the DM categorizer head is simultaneously:
- A morphosyntactic object (bearing gender features, licensing possession)
- 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
- Morphology.DM.CategorizerSemantics.nBodyPartDenot rootPred bodyPartOf = Semantics.Lexical.Noun.Relational.Barker2011.π rootPred bodyPartOf
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
- Morphology.DM.CategorizerSemantics.nAlienatorDenot relation x s = ∃ (y : E), relation y x s = true
Instances For
n_{body-part{D}} IS Barker's π: the relationalizer.
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
- Morphology.DM.CategorizerSemantics.teopSpleenIPossessed isSpleen bodyPartOf = Morphology.DM.CategorizerSemantics.nBodyPartDenot isSpleen bodyPartOf
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 π.
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).
The alienator existentially closes the possessor slot.
The Barker–Adamson correspondence:
| CatHead feature | Semantic type | Barker operation |
|---|---|---|
| selectsD = true | relational | π |
| selectsD = false (regular) | sortal | bare |
| selectsD = false (aPoss) | alienator | Ex |
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).
NominalInterpType from Barker 2011 corresponds to NSemanticType.
Equations
- Morphology.DM.CategorizerSemantics.NSemanticType.relational.toBarker = Semantics.Lexical.Noun.Relational.Barker2011.NominalInterpType.pred2
- Morphology.DM.CategorizerSemantics.NSemanticType.sortal.toBarker = Semantics.Lexical.Noun.Relational.Barker2011.NominalInterpType.pred1
- Morphology.DM.CategorizerSemantics.NSemanticType.alienator.toBarker = Semantics.Lexical.Noun.Relational.Barker2011.NominalInterpType.pred1
Instances For
Only relational nouns (n with {D}) can directly take a possessor. Sortal and alienated nouns cannot — they need Barker's π first.