Documentation

Linglib.Phenomena.Anaphora.Studies.Reinhart1976

Reinhart (1976) @cite{reinhart-1976} #

The Syntactic Domain of Anaphora. PhD dissertation, MIT.

Key Contributions #

  1. C-command (def. 36, p. 32): replaces @cite{langacker-1969}'s S-node-based "command" with a branching-node-based relation
  2. C-command domain (def. 38, p. 33): the subtree dominated by the first branching node dominating A — always a constituent
  3. Coreference restriction (10b, p. 14): domain-based, dispensing with "precede"
  4. Claim (49) (p. 40): c-command ⊆ command (= kCommand ⊆ sCommand in B&P)
  5. The irrelevance of precede (§1.4): linear order is epiphenomenal for coreference

Connection to @cite{barker-pullum-1990} #

Reinhart's c-command is exactly B&P's K-command (parameterized by branching nodes). @cite{langacker-1969}'s command is B&P's S-command (parameterized by S-nodes). Theorem 49 follows from B&P's antitone map: since {S-nodes} ⊆ {branching nodes}, we get C_{branching} ⊆ C_{S}.

Connection to Address-Based cCommand #

The address-based cCommand in Compare.lean computes K-command for binary trees: in a binary tree every non-leaf node branches, so the "first branching node dominating A" is A's parent, and A's parent dominates B iff A's sister dominates B — which is exactly what cCommand tests.

Definition 1 (p. 8) — Langacker's "command" #

A node A commands a node B if neither A nor B dominates the other and the S node most immediately dominating A also dominates B.

This is B&P's S-command, parameterized by S-nodes. Already formalized as sCommand in Compare.lean.

Definition 36 (p. 32) — C-command #

Node A c(onstituent)-commands node B if neither A nor B dominates the other and the first branching node which dominates A dominates B.

This is B&P's K-command, parameterized by branching nodes. Already formalized as kCommand in Compare.lean.

Reinhart explicitly contrasts this with Langacker's command (p. 33): "The difference between the relations of command and of c-command is that while the first mentions cyclic nodes the second does not — all branching nodes can be relevant."

Definition 38 (p. 33) — C-command domain #

The domain of a node A consists of A together with all and only the nodes c-commanded by A. (OR: The domain of a node A is the subtree dominated by the first branching node which dominates A.)

A key observation (p. 34): c-command domains are always constituents (subtrees), while precede-and-command domains may not be.

The c-command domain of a node a: the set of nodes that a c-commands, plus a itself.

In B&P terms: {b | (a, b) ∈ kCommand T} ∪ {a}.

Equations
Instances For

    Claim (49) (p. 40) #

    A c-commands B ⟶ A commands B A does not command B ⟶ A does not c-command B

    In B&P terms: kCommand T ⊆ sCommand T, provided every S-node is also a branching node — a universally accepted structural assumption (S-nodes always dominate both a subject and a predicate).

    Claim (49): C-command implies command.

    Every S-node is a branching node (S-nodes dominate ≥2 children), so {S-nodes} ⊆ {branching nodes}, and by B&P's antitone map (command_antitone), C_{branching} ⊆ C_{S}.

    Restriction 10b (p. 14) #

    Two NP's in a non strict reflexive environment can be coreferential just in case if either is in the domain of the other, the one in the domain is a pronoun.

    Reinhart argues (§1.4) that the earlier formulation using precede-and-command is both empirically wrong (fails for preposed PPs) and theoretically unnatural (c-command domains are constituents; precede-and-command domains are not).

    @[reducible, inline]

    Whether node a is a pronoun.

    Equations
    Instances For

      Reinhart's Coreference Restriction (10b).

      Two nodes can corefer unless one is in the c-command domain of the other and is not a pronoun.

      corefPermitted isPron T a b holds iff:

      • neither is in the other's domain, OR
      • whichever is in the other's domain is a pronoun.
      Equations
      • One or more equations did not get rendered due to their size.
      Instances For

        The irrelevance of precede (§1.4, §1.5) #

        Reinhart's central argumentative contribution: the relation precede plays no role in determining anaphora options. Two key observations:

        1. Preposed PPs (§1.5.2): In "Near him, Dan saw a snake" (45), the pronoun precedes the antecedent yet coreference is fine — because "him" (PP-internal) does not c-command "Dan" (the subject). Meanwhile, "*Near Dan, he saw a snake" (43a) is correctly blocked: "Dan" is in the c-command domain of "he" and is not a pronoun.

        2. VOS languages (p. 41): In Malagasy, the pronoun precedes and commands the antecedent (by the precede-and-command definition) yet coreference is permitted — because the pronoun does not c-command the antecedent.

        Both facts follow automatically from the c-command restriction (10b) without mentioning linear order.

        Precede is irrelevant: c-command domains are symmetric with respect to linear order.

        In B&P terms: the command relation C_P is defined purely in terms of dominance (upperBounds, dom), with no reference to precedence.

        This is a structural fact about how commandRelation is defined — it uses only vertical (dominance) relations, never horizontal (precedence) relations.

        Preposed PP example (§1.5.2) #

        @cite{reinhart-1976}'s structures (41)/(42) are ternary branching (S → PP NP₁ VP), but the key half of the argument is tree-shape-independent:

        This is verified below in a binary encoding. It is the fact that the precede-and-command approach fails to capture: the precede-and-command rule incorrectly blocks backward pronominalization in "Near him, Dan saw a snake" (45) — where "him" precedes and is S-commanded by "Dan" — while the c-command restriction correctly permits it (since "him" does not c-command "Dan").

        Binary tree limitation: In @cite{reinhart-1976}'s ternary tree (41), the subject NP₁ DOES c-command NP₃ (since the first branching node above NP₁ is S, which dominates NP₃). Our binary encoding places NP₁ inside a VP shell, so the subject does NOT c-command into PP. This changes the c-command facts for that direction but does not affect the key structural observation that NP₃ cannot c-command NP₁.

        Preposed PP: the PP-internal NP does not c-command the subject.

        Binary encoding: [S [PP [P near] [NP Dan]] [VP' [NP he] [VP ...]]] NP_Dan at [L, R], NP_he at [R, L].

        This holds in both binary and n-ary trees: PP is the first branching node above Dan, and PP does not dominate the subject.

        Why address-based cCommand = B&P kCommand #

        In a binary branching tree, every non-leaf node has exactly two children, so every non-leaf node is a branching node. Therefore:

        So for binary trees, address-based cCommand computes the same relation as commandRelation T (branchingNodes T) = kCommand T.

        We verify this on concrete examples below.

        Subject–object asymmetry for coreference (@cite{reinhart-1976}'s key prediction):

        • "She denied that Rosa met the Shah" — she c-commands Rosa, blocks coref
        • "The man who traveled with her denied that Rosa met the Shah" — her does NOT c-command Rosa, coref permitted

        In the second sentence, "her" is deeply embedded inside the subject NP (inside a relative clause PP). Any address under [L, ...] has a sister that also starts with [L, ...], so it can never c-command [R, ...].

        Address-based coreference permission #

        A decidable version of corefPermitted for address-based binary trees. Given two addresses and their pronoun status, tests whether coreference is permitted under restriction (10b).

        Address-based coreference permission (decidable).

        Two NPs can corefer unless one c-commands the other and the c-commanded one is not a pronoun. Restriction (10b) applied to address-based cCommand.

        Note: like corefPermitted, this omits the "non strict reflexive environment" qualification — it governs non-reflexive coreference only.

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For

          The (11) paradigm (pp. 14-15) #

          The key empirical test for restriction (10b). Given the structure:

          `[S NP₁ [VP denied [S' NP₂ [VP' has met the Shah]]]]`
          

          with NP₁ at [L] and NP₂ at [R, R, L], four sentences are generated by varying the pronoun status of each NP:

          The matrix subject c-commands the embedded subject (not vice versa), so NP₂ is always in the c-command domain of NP₁. Therefore (10b) requires NP₂ to be a pronoun for coreference to be permitted.

          (11a) Rosa₁ denied that Rosa₂ has met the Shah: coref blocked.

          Rosa₂ is in the domain of Rosa₁ and is not a pronoun.

          (11b) She₁ denied that Rosa₂ has met the Shah: coref blocked.

          Rosa₂ is in the domain of She₁ and is not a pronoun.

          (11c) Rosa₁ denied that she₂ has met the Shah: coref permitted.

          she₂ is in the domain of Rosa₁ but IS a pronoun.

          (11d) She₁ denied that she₂ has met the Shah: coref permitted.

          she₂ is in the domain of She₁ but IS a pronoun.

          Restriction (10a) — the pronoun-specific formulation (p. 14) #

          Two NP's in a non strict reflexive environment can be coreferential just in case one is a pronoun, the other is not and the non-pronoun is not in the domain of the pronoun.

          (10a) applies only to pairs consisting of a pronoun and a full NP. It says nothing about pairs of two full NPs or two pronouns.

          @cite{reinhart-1976} argues (pp. 14-17) that (10b) is strictly superior: (10a) fails to block coreference between two full NPs when one is in the domain of the other (the (11a) case).

          Restriction (10a): applies only to pronoun–full NP pairs.

          When exactly one NP is a pronoun, the non-pronoun must not be in the c-command domain of the pronoun. When both are pronouns or both are full NPs, (10a) does not apply (returns true).

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For

            Non-equivalence of (10a) and (10b): (10a) fails on the (11a) case.

            (10a) cannot block coreference between two full NPs (Rosa₁ ... Rosa₂), because (10a) only applies to pronoun–full NP pairs. (10b) correctly blocks it because Rosa₂ is in the domain of Rosa₁ and is not a pronoun.

            theorem Phenomena.Anaphora.Studies.Reinhart1976.restriction_10b_subsumes_10a (isPronA isPronB : Bool) (addrA addrB : Compare.Address) :
            corefPermitted_10a isPronA isPronB addrA addrB = falsecorefPermittedAddr isPronA isPronB addrA addrB = false

            (10b) subsumes (10a): whenever (10a) blocks coreference, (10b) does too.

            The converse fails (as restriction_10a_vs_10b shows), so (10b) is strictly more restrictive than (10a).