Documentation

Linglib.Theories.Syntax.Minimalism.Core.Labeling

Helper: does sel stack contain category?

Equations
Instances For

    Helper: check if option cat matches any in sel stack

    Equations
    Instances For

      Get the category of an SO by finding the projecting head This must match the logic in label

      Get the LI of an SO (the projecting head)

      def Minimalism.selectsB (selector selected : SyntacticObject) :

      X selects Y iff X's selectional requirements include Y's category

      Selection is what triggers projection: the selector projects. When V[D] merges with DP, V selects D, so V projects.

      Equations
      • One or more equations did not get rendered due to their size.
      Instances For
        def Minimalism.selects (selector selected : SyntacticObject) :

        Propositional version of selection

        Equations
        Instances For

          The label of an SO - determined by which element projects

          • For an LI token: its lexical item
          • For a set {X, Y}: the label of whichever element selects the other

          "The label of X is the label of the projecting element"

          Equations
          Instances For

            Get the category from the label

            Equations
            Instances For

              Two SOs have the same label

              Equations
              Instances For
                Equations
                Instances For

                  X projects in Y iff X's label = Y's label and X is immediately contained in Y

                  Equations
                  Instances For

                    X projects iff X projects in some containing SO

                    Equations
                    Instances For

                      X is minimal in Y iff X is a term of Y and X doesn't contain anything

                      From Harizanov: "A head is thus a strictly minimal element, one that does not contain anything (and is therefore an LI)"

                      +min = is a leaf/LI

                      Equations
                      Instances For

                        X is maximal in Y iff X is a term of Y and X doesn't project in anything in Y

                        +max = X is at the top of its projection chain (nothing contains X with same label)

                        From Harizanov: a phrase is +max, meaning it's a maximal projection

                        Equations
                        Instances For

                          A head in Y: +minimal AND -maximal

                          From Harizanov (22b): "A head is an SO that is both +min and −max"

                          This means: X is an LI (doesn't contain anything) AND X projects (is contained by something with same label).

                          Footnote: "a head is an LI which projects"

                          Equations
                          Instances For

                            A phrase in Y: +maximal

                            From Harizanov (22a): "A phrase is an SO that is +max (and ±min)"

                            A phrase is a maximal projection - at the top of its projection chain.

                            Equations
                            Instances For

                              An LI that doesn't project: +minimal AND +maximal

                              This is an LI that is simultaneously at the bottom (is a leaf) and top (doesn't project) of its chain. Not a "head" per (22b).

                              Equations
                              Instances For

                                A verb "eat" that selects D (needs an object)

                                Equations
                                Instances For

                                  A noun "pizza" with no selectional requirements

                                  Equations
                                  Instances For

                                    A determiner "the" that selects N

                                    Equations
                                    Instances For

                                      Build: [V eat] merges with [DP the pizza] → V projects (V selects D)

                                      Equations
                                      Instances For

                                        A position in a tree: path from root to an element. here = at this node left p = go left, then follow p right p = go right, then follow p

                                        Instances For
                                          Equations
                                          Instances For

                                            Get the parent SO of a position

                                            Equations
                                            Instances For

                                              Get the sibling SO at a position

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

                                                X projects AT POSITION p in root iff:

                                                • X is at position p
                                                • The parent at p has the same label as X

                                                This is position-specific: checks projection only at this occurrence

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

                                                  X is maximal AT POSITION p in root iff:

                                                  • X is at position p
                                                  • X does NOT project at position p (parent has different label or is root)

                                                  This captures Harizanov's "maximal in its derived position"

                                                  Equations
                                                  Instances For

                                                    X is a specifier at position p iff:

                                                    • X is at position p
                                                    • X is maximal at p (doesn't project)
                                                    • X's sibling DOES project (the sibling is the "head" of the phrase)
                                                    Equations
                                                    • One or more equations did not get rendered due to their size.
                                                    Instances For

                                                      Find positions where x occurs in root

                                                      Equations
                                                      Instances For

                                                        The derived position in head-to-specifier movement is the specifier position. In {X, Y} where Y is the target (projects), X is at the LEFT (Spec) position

                                                        Equations
                                                        Instances For

                                                          Free Relative Labeling Conflict (@cite{mueller-2013} §2.1) #

                                                          Müller argues that Chomsky's labeling rules (2008:145) yield contradictory results for free relative clauses like "what you wrote":

                                                          This is underdetermined: the same structure is labeled DP when used as an object ("I read what you wrote") and CP when used as a complement of wonder ("I wonder what you wrote"). Chomsky (2013:47) acknowledges "many open questions" about free relative labeling.

                                                          Simplification: The SO freeRelSO models the surface structure without explicitly representing Internal Merge. The gap gapFR has a different token ID from whatFR rather than being a literal copy. The labeling conflict is independent of how the gap is represented.

                                                          Chomsky (2008:145) rule 14a: In {H, α} where H is a lexical item, H is the label. When one daughter is an LI, its category is the label.

                                                          Equations
                                                          Instances For

                                                            "what" — a wh-pronoun (category D, no selectional features).

                                                            Equations
                                                            Instances For

                                                              "wrote" — a transitive verb (category V, selects D).

                                                              Equations
                                                              Instances For

                                                                Object gap in D position (trace of "what").

                                                                Equations
                                                                Instances For

                                                                  Free relative SO: {what, [wrote ___]}. "what" has been internally merged (moved from object position).

                                                                  Equations
                                                                  Instances For

                                                                    Rule 14a labels the free relative as D (the pronoun "what" is an LI).

                                                                    The selection-based labeling (implementing rule 14b's logic) labels it as V (the clause projects because "what" doesn't select the VP).

                                                                    Rules 14a and 14b conflict for free relatives: one gives D, the other V.

                                                                    This is Müller's central argument against Chomsky's labeling algorithm. Free relatives like "what you wrote" function as DPs in object position ("I read what you wrote") and as CPs in complement-of-wonder position ("I wonder what you wrote") — but neither labeling rule can derive both labels from the same structure.

                                                                    Coordination Labeling Failure (@cite{mueller-2013} §2.1) #

                                                                    When two phrases are coordinated ({DP₁, DP₂}), neither daughter is an LI (rule 14a fails) and neither selects the other (rule 14b fails). Chomsky (2013:46) stipulates a special case: when both daughters share a label, that shared label is the result. Müller argues this is an ad hoc fix that undermines the generality of the labeling algorithm.

                                                                    A second determiner "a" (category D, selects N).

                                                                    Equations
                                                                    Instances For

                                                                      "book" (category N, no selectional features).

                                                                      Equations
                                                                      Instances For

                                                                        Coordinated structure: {theDP, aBookDP} — two phrases, neither is an LI.

                                                                        Equations
                                                                        Instances For

                                                                          Rule 14a fails for coordination: neither daughter is an LI.

                                                                          The selection-based algorithm gives D, but only because it falls through to the "both phrases" tie-breaking case — not because of a principled labeling mechanism. Neither phrase selects the other.

                                                                          The selection-based label of the coordinated structure. Gives D, but this is an artifact of tie-breaking, not selection.