Documentation

Linglib.Theories.Semantics.Lexical.Noun.Relational.Barker2011

@[reducible, inline]

One-place predicates: E → S → Bool

Equations
Instances For
    @[reducible, inline]

    Two-place predicates (relations): E → E → S → Bool

    Equations
    Instances For

      The semantic type of an expression, tracking arity.

      Instances For
        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
          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
              Instances For

                Semantic structure of possessive phrase

                • possessor : E
                • possesseePred : Pred1 E S
                • relation : Pred2 E S
                • relationIsLexical : Bool
                Instances For
                  Equations
                  Instances For
                    def Semantics.Lexical.Noun.Relational.Barker2011.possessiveSortal {E S : Type} (possessor : E) (nounPred : Pred1 E S) (R : Pred2 E S) :
                    Pred1 E S
                    Equations
                    Instances For
                      theorem Semantics.Lexical.Noun.Relational.Barker2011.possessive_sortal_is_pi {E S : Type} (possessor : E) (P : Pred1 E S) (R : Pred2 E S) (y : E) (s : S) :
                      possessiveSortal possessor P R y s = π P R possessor y s
                      Equations
                      Instances For
                        Instances For
                          def Semantics.Lexical.Noun.Relational.Barker2011.naSemantics {E S : Type} (nounPred : Pred1 E S) (R : Pred2 E S) (relatum : E) :
                          Pred1 E S
                          Equations
                          Instances For
                            theorem Semantics.Lexical.Noun.Relational.Barker2011.na_has_relatum_slot {E S : Type} (P : Pred1 E S) (R : Pred2 E S) (z x : E) (s : S) :
                            naSemantics P R z x s = (P x s && R z x s)

                            Source of the relational interpretation.

                            Instances For
                              Equations
                              • One or more equations did not get rendered due to their size.
                              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).

                                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
                                          Instances For

                                            Derivation: Mandarin "na zuoyi" (that seat; sortal noun, π from na).

                                            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).

                                              theorem Semantics.Lexical.Noun.Relational.Barker2011.ex_pi_retraction {E S : Type} [Nonempty E] (P : Pred1 E S) (R : Pred2 E S) (y z : E) (s : S) (hP : P y s = true) (hR : R z y s = true) :
                                              ExProp (π P R) z s

                                              Retraction: Ex(π(P, R)) holds when both P(y) and R(z,y) hold.

                                              Unification of Possessives, Demonstratives, and Bridging #

                                              Three questions are equivalent:

                                              1. Can "John's N" be interpreted? (possessive licensing)
                                              2. Can "na N" accommodate a bridging antecedent? (bridging licensing)
                                              3. Does the interpretation of N have type Pred2? (structural question)

                                              The interpretation type of a nominal

                                              Instances For
                                                Equations
                                                • One or more equations did not get rendered due to their size.
                                                Instances For
                                                  theorem Semantics.Lexical.Noun.Relational.Barker2011.pi_creates_slot {E S : Type} (P : Pred1 E S) (R : Pred2 E S) (z x : E) (s : S) :
                                                  π P R z x s = (P x s && R z x s)

                                                  π always creates a relatum slot (π : Pred1 → Pred2).

                                                  noncomputable def Semantics.Lexical.Noun.Relational.Barker2011.possessiveAsNPQ {E : Type} [Fintype E] [DecidableEq E] (possessor : E) (R : EEBool) :

                                                  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
                                                  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.