Possessives and Relational Nouns #
@cite{barker-2011}
Barker's type-shifting analysis: π relationalizes sortals, Ex detransitivizes relations.
Main definitions #
π, ExProp, ExDecidable, PossessiveSemantics, possessiveRelational, possessiveSortal, naSemantics, bareSemantics
One-place predicates: E → S → Bool
Equations
- Semantics.ArgumentStructure.Relational.Pred1 E S = (E → S → Bool)
Instances For
Two-place predicates (relations): E → E → S → Bool
Equations
- Semantics.ArgumentStructure.Relational.Pred2 E S = (E → E → S → Bool)
Instances For
Equations
- Semantics.ArgumentStructure.Relational.instDecidableEqSemType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Barker's π (Relationalizer): λP.λx.λy. P(y) ∧ R(x,y)
Equations
- Semantics.ArgumentStructure.Relational.π P R x y s = (P y s && R x y s)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Ex (Existential Closure): λR.λx. ∃y. R(x,y)
Equations
- Semantics.ArgumentStructure.Relational.ExProp R x s = ∃ (y : E), R x y s = true
Instances For
Equations
- Semantics.ArgumentStructure.Relational.ExDecidable R x s = decide (∃ (y : E), R x y s = true)
Instances For
Equations
- Semantics.ArgumentStructure.Relational.possessiveRelational possessor nounRel y s = nounRel possessor y s
Instances For
Equations
- Semantics.ArgumentStructure.Relational.possessiveSortal possessor nounPred R y s = Semantics.ArgumentStructure.Relational.π nounPred R possessor y s
Instances For
Equations
- Semantics.ArgumentStructure.Relational.iotaPresupposition P s = ∃ (x : E), P x s = true ∧ ∀ (y : E), P y s = true → y = x
Instances For
- possessor : E
- predicate : Pred1 E S
- presupposition (s : S) : iotaPresupposition self.predicate s
Instances For
Equations
- Semantics.ArgumentStructure.Relational.naSemantics nounPred R relatum x s = Semantics.ArgumentStructure.Relational.π nounPred R relatum x s
Instances For
Equations
- Semantics.ArgumentStructure.Relational.bareSemantics nounPred = nounPred
Instances For
Source of the relational interpretation.
- lexicalRelation : InterpretationSource
- appliedPi : InterpretationSource
- noRelation : InterpretationSource
Instances For
Equations
- Semantics.ArgumentStructure.Relational.instDecidableEqInterpretationSource x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Semantics.ArgumentStructure.Relational.CanFillRelatum Semantics.ArgumentStructure.Relational.InterpretationSource.lexicalRelation = True
- Semantics.ArgumentStructure.Relational.CanFillRelatum Semantics.ArgumentStructure.Relational.InterpretationSource.appliedPi = True
- Semantics.ArgumentStructure.Relational.CanFillRelatum Semantics.ArgumentStructure.Relational.InterpretationSource.noRelation = False
Instances For
Equations
- One or more equations did not get rendered due to their size.
Bridging licensing follows from π-application.
Sortal nouns: π creates slot (bridging OK); no π means no slot (blocked). Relational nouns: lexical slot exists regardless of π.
Vikner & Jensen's taxonomy of possession relations (Barker p. 9).
- inherent : PossessionRelationType
Inherent: part-whole, properties (the car's speed, the table's leg)
- agentive : PossessionRelationType
Agentive: agent relation (John's poem = poem John wrote)
- control : PossessionRelationType
Control: ownership, legal control (John's house)
- pragmatic : PossessionRelationType
Pragmatic: any contextually salient relation
Instances For
Equations
- Semantics.ArgumentStructure.Relational.instDecidableEqPossessionRelationType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Lexical possession (relational noun) vs pragmatic possession (sortal noun).
Equations
- Semantics.ArgumentStructure.Relational.relationSource isNounRelational = if isNounRelational = true then "lexical" else "pragmatic (from π)"
Instances For
Derivation: "John's brother" (relational noun, no π needed).
Equations
Instances For
Derivation: "John's cloud" (sortal noun, π required).
Equations
- Semantics.ArgumentStructure.Relational.derivation_johns_cloud john cloud R = Semantics.ArgumentStructure.Relational.possessiveSortal john cloud R
Instances For
Derivation: Mandarin "na zuozhe" (that author; relational noun).
Equations
- Semantics.ArgumentStructure.Relational.derivation_na_author author relatum x s = author relatum x s
Derivation: Mandarin "na zuoyi" (that seat; sortal noun, π from na).
Equations
Instances For
Derivation: Bare Mandarin "zuoyi" (seat; no π, no bridging slot).
Equations
Instances For
Algebraic Structure #
@cite{ahn-zhu-2025} @cite{barker-2011}
π and Ex form a pseudo-adjoint pair: Ex(π(P, R)) ≈ P (when R is satisfied by some entity).
Unification of Possessives, Demonstratives, and Bridging #
Three questions are equivalent:
- Can "John's N" be interpreted? (possessive licensing)
- Can "na N" accommodate a bridging antecedent? (bridging licensing)
- Does the interpretation of N have type Pred2? (structural question)
The interpretation type of a nominal
- pred1 : NominalInterpType
Pred1: No relatum slot (sortal, no π)
- pred2 : NominalInterpType
Pred2: Has relatum slot (relational or π-shifted)
Instances For
Equations
- Semantics.ArgumentStructure.Relational.instDecidableEqNominalInterpType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Does this interpretation type have a relatum slot?
Equations
Instances For
Can this interpretation type take a possessor?
Equations
Instances For
Can this interpretation type accommodate bridging?
Equations
Instances For
hasRelatumSlot ⟺ canTakePossessor ⟺ canBridge.
Bridging asymmetry = possessive asymmetry.
Bridging ↔ having a relatum slot.
A possessive like "John's" produces a type ⟨1⟩ quantifier (NPQ): ⟦John's⟧ = λR.λP. ∃y. R(possessor, y) ∧ P(y). When the possessum is unique, this is a Montagovian individual.
Possessive GQs are NON-ISOM: "John's cat" depends on the identity
of John, not just cardinalities. This connects Barker's type-shifting
analysis to the GQ framework in Core.Quantification.
Equations
- Semantics.ArgumentStructure.Relational.possessiveAsNPQ possessor R P = ∃ (y : E), R possessor y = true ∧ P y
Instances For
When the possessum is unique, the possessive NP denotes a Montagovian
individual: ⟦John's brother⟧ = I_{b} where b is John's unique brother.
The Montagovian individual I_b maps any property P to P(b).
Cross-ref: Core.Quantification.individual.