Documentation

Linglib.Studies.Hanink2021

Hanink (2021): DP Structure and Internally Headed Relatives in Wášiw #

[Han21]

The architectural claim of [Han21] (developing the framework of Hanink 2018) is that the resource situation evaluating a definite description's restrictor is a bound variable in the syntactic structure — a "situation pronoun" — rather than a free contextual parameter handed to the interpretation function. The resource situation is selected by an index inside DP, not by the matrix context, and that index can be bound by higher operators.

What this file tests #

The IL substrate operationalizes this in two parallel pieces:

The empirical payoff is that the same description can pick out different referents under different situation assignments. We test this with a two-room frame where "the table" picks out different tables depending on which resource situation the structure is bound to.

We additionally verify:

  1. Restrictor sensitivity to the situation assignment — a restrictor that consults interpSitPronoun returns different extensions under different gs.
  2. Index-record discipline — the surface interpretation function ignores the index (it just records which pronoun is bound, the gs does the work), but the usesSituationPronoun classifier correctly flags unique and demonstrative as the binders.
  3. Anaphoric vs. unique split — anaphoric definites consult the entity assignment (the antecedent index), so the situation assignment is irrelevant for them. This contrasts with unique, matching the Schwarz weak/strong split.

Two tables, one in each room. The "the table" diagnostic in [Han21]'s style: shifting the bound resource situation flips the referent.

Instances For
    @[implicit_reducible]
    instance Hanink2021.instDecidableEqItem :
    DecidableEq Item
    Equations
    @[implicit_reducible]
    Equations
    def Hanink2021.instReprItem.repr :
    ItemStd.Format
    Equations
    Instances For

      Two rooms, each its own situation.

      Instances For
        @[implicit_reducible]
        instance Hanink2021.instDecidableEqRoom :
        DecidableEq Room
        Equations
        def Hanink2021.instReprRoom.repr :
        RoomStd.Format
        Equations
        Instances For
          @[implicit_reducible]
          Equations

          "Table-in-room": the predicate is true at exactly one item per room. Encodes the [Han21] resource-situation idea — what counts as "the table" depends on the situation we evaluate at.

          Equations
          Instances For

            The restrictor the table at the situation pointed to by pronoun 0: a DenotGS that consults interpSitPronoun 0 to fetch the resource situation, then evaluates tableIn at that situation.

            This is the [Han21] situation-pronoun pattern: the structural index 0 selects which situation in gs to use.

            Equations
            Instances For

              A trivial entity assignment. Entity binding is not exercised here.

              Equations
              Instances For

                Situation assignment with pronoun 0 ↦ kitchen.

                Equations
                Instances For

                  Situation assignment with pronoun 0 ↦ living.

                  Equations
                  Instances For

                    Restrictor uniqueness in the kitchen situation: only tableKitchen satisfies tableAtSit0.

                    Restrictor uniqueness in the living-room situation: only tableLiving satisfies tableAtSit0.

                    The Hanink payoff: the same .unique description picks out different referents under different situation assignments. The description is one syntactic object; the resource situation is a bound variable, not a free parameter.

                    The index argument to .unique does not select among situations at the interpretation layer — the restrictor R already takes the full situation assignment, and the index records which pronoun is bound. (Semantics.Definiteness.interpret_unique_index_irrelevant makes this explicit.) The Hanink claim is recovered via the restrictor calling interpSitPronoun sIdx, not via the interpreter inspecting sIdx.

                    Among Description constructors, exactly unique and demonstrative are flagged as binding a structural situation pronoun. Anaphoric definites do not — they consult the entity assignment for an antecedent, not the situation assignment.

                    Anaphoric definites consult the entity assignment for the antecedent. When the restrictor itself is situation-insensitive (R g₀ gsKitchen = R g₀ gsLiving), the anaphoric reading is invariant under the resource-situation assignment — its referent is determined by the entity slot g₀ d. This is the orthogonality of entity-assignment binding and situation-assignment binding in [Han21]'s architecture: the anaphoric layer reads from g, the unique layer reads from gs.

                    Concrete instance: with a constant restrictor (the antecedent is self-identifying, no situation needed), anaphoric definites are insensitive to the resource-situation assignment.

                    [Han21] is the theory hub for the demonstrative pronoun (Syntax/Pronoun/Demonstrative): a demonstrative is the bare anaphoric idx (Hanink's Washo ; [Elb05] pronouns-as-definites) plus a deictic feature realized as a presupposition on D. The lexical DemonstrativePronoun supplies its proximal/distal deixis via the Demonstrative capability; the restrictor and indices come from context.

                    The denotation of a demonstrative pronoun: Description.demonstrative over a context restrictor, with the pronoun's deictic feature as the presupposition on D ([Han21] (34)/(35)).

                    Equations
                    Instances For

                      A demonstrative pronoun picks the same referent as a plain anaphoric definite: its deixis is a presupposition filter, not a referent selector ([Han21]). The Pronoun-API capability Demonstrative.deixis is exactly the presupposition that drops out of referent selection.

                      [PGG17]'s orthogonality, now grounded in meaning (and stated in the later study, per chronology): German der — the strong-article personal pronoun, an anaphoric definite with no deixis — and a demonstrative pronoun pick the same referent (both anaphoric over d), yet only the demonstrative carries a deictic feature. Article-strength ⊥ demonstrativehood: PG&G's "der is not a Demonstrative" is a semantic fact, not just typing.