Documentation

Linglib.Studies.Barker1995

Barker 1995: Possessive Descriptions #

Paper-anchored consumer of the possessive substrate for [Bar95b]. Two of the dissertation's signature claims, tested against concrete models:

Main statements #

References #

Narrowing #

Model over Fin 5: 0, 1, 2 are planets, 3, 4 are rings. Planet 0 has ring 3, planet 1 has ring 4, and planet 2 has no ring. Both rings are icy. Most/every planet's rings are made of ice should be evaluated only over the ring-having planets 0, 1 — planet 2 is narrowed away.

def Barker1995.isPlanet :
Fin 5Prop

The planets {0, 1, 2}.

Equations
Instances For
    def Barker1995.isRing :
    Fin 5Prop

    The rings {3, 4}.

    Equations
    Instances For
      def Barker1995.isIcy :
      Fin 5Prop

      Both rings are icy.

      Equations
      Instances For
        def Barker1995.hasRing :
        Fin 5Fin 5Prop

        Planet 0 has ring 3; planet 1 has ring 4; planet 2 has no ring.

        Equations
        Instances For

          With narrowing, every planet's rings are made of ice is true: the ring-less planet 2 is excluded by the dom isRing hasRing restriction.

          theorem Barker1995.unnarrowed_fails :
          ¬Quantification.every_sem isPlanet fun (x : Fin 5) => Quantification.some_sem (fun (y : Fin 5) => isRing y hasRing x y) isIcy

          Without narrowing, the naive reading for every planet, it has an icy ring is false: the ring-less planet 2 falsifies it.

          Narrowing is truth-conditionally active in this model: the narrowed reading is true exactly where the un-narrowed reading is false. This is Barker's narrowing — quantification ranges only over possessors with a possessee.

          Definiteness and the capability mixins #

          A definite possessive ("the boy's cat") and a relational possessive ("John's sisters"), exercising the possessive-carrier capability mixins (HasIotaWitness, HasPossessor, HasPossessionRelation).

          "the boy's cat": possessor 0 (the boy), with a uniquely-identified cat 1. Entities are Fin 3 (boy, cat, dog); one situation.

          Equations
          Instances For

            The definite possessive denotes a unique possessee, inherited from its HasIotaWitness instance via existsUnique_possessee — no bespoke proof.

            def Barker1995.sibling :
            Fin 3Fin 3Prop

            The sibling relation: 0's siblings are 1 and 2.

            Equations
            Instances For

              "John's sisters": possessor 0 (John), with the sibling relation as the possession relation (a relational noun, so the restrictor is trivial).

              Equations
              Instances For
                theorem Barker1995.johnsSisters_possesseeSet (y : Fin 3) (s : Unit) :

                The relational possessive's possesseeSet is its lexical possession relation applied to the possessor — derived through the HasPossessor and HasPossessionRelation instances.

                Narrowing through a carrier #

                The same narrowing, now for a type ⟨1⟩ possessor ("planet 2's rings"). A carrier bundles a single possessor, so narrowing surfaces as existential import: routed through the unified carrierGQ denotation, planet 2's rings are icy is false because planet 2 has no ring. Reuses the planets/rings model above.

                "planet 2's rings": possessor 2, with hasRing as the possession relation.

                Equations
                Instances For

                  Planet 2's rings are icy is false: via the unified carrier denotation, existential import (carrierGQ_existential_import) requires planet 2 to possess a ring, but it has none — narrowing at the individual level.