One-place predicates: E → S → Bool
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.Pred1 E S = (E → S → Bool)
Instances For
Two-place predicates (relations): E → E → S → Bool
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.Pred2 E S = (E → E → S → Bool)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Barker's π (Relationalizer): λP.λx.λy. P(y) ∧ R(x,y)
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.π 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.Lexical.Noun.Relational.Barker2011.ExProp R x s = ∃ (y : E), R x y s = true
Instances For
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.ExDecidable R x s = Fintype.elems.toList.any fun (y : E) => R x y s
Instances For
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.possessiveRelational possessor nounRel y s = nounRel possessor y s
Instances For
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.possessiveSortal possessor nounPred R y s = Semantics.Lexical.Noun.Relational.Barker2011.π nounPred R possessor y s
Instances For
- possessor : E
- predicate : Pred1 E S
- presupposition (s : S) : iotaPresupposition self.predicate s
Instances For
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.naSemantics nounPred R relatum x s = Semantics.Lexical.Noun.Relational.Barker2011.π nounPred R relatum x s
Instances For
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.bareSemantics nounPred = nounPred
Instances For
Source of the relational interpretation.
- lexicalRelation : InterpretationSource
- appliedPi : InterpretationSource
- noRelation : InterpretationSource
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.canFillRelatum Semantics.Lexical.Noun.Relational.Barker2011.InterpretationSource.lexicalRelation = true
- Semantics.Lexical.Noun.Relational.Barker2011.canFillRelatum Semantics.Lexical.Noun.Relational.Barker2011.InterpretationSource.appliedPi = true
- Semantics.Lexical.Noun.Relational.Barker2011.canFillRelatum Semantics.Lexical.Noun.Relational.Barker2011.InterpretationSource.noRelation = false
Instances For
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
- One or more equations did not get rendered due to their size.
Instances For
Lexical possession (relational noun) vs pragmatic possession (sortal noun).
Equations
Instances For
Derivation: "John's brother" (relational noun, no π needed).
Equations
Instances For
Derivation: "John's cloud" (sortal noun, π required).
Equations
Instances For
Derivation: Mandarin "na zuozhe" (that author; relational noun).
Equations
- Semantics.Lexical.Noun.Relational.Barker2011.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
- One or more equations did not get rendered due to their size.
Instances For
Equations
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.Lexical.Noun.Relational.Barker2011.possessiveAsNPQ possessor R P = Fintype.elems.toList.any fun (y : E) => R possessor y && 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.