Documentation

Linglib.Theories.Syntax.Minimalism.Formal.Linearization.LCA

Linear Correspondence Axiom #

@cite{chomsky-1995} @cite{kayne-1994}

Formalizes the core of @cite{kayne-1994}'s The Antisymmetry of Syntax: the Linear Correspondence Axiom (LCA), which derives linear (temporal) precedence of terminal elements from asymmetric c-command in the hierarchical structure.

Key definitions #

Main results #

d(X): the set of terminals dominated by (or equal to) X. Corresponds to Kayne's d function (p. 16).

Equations
Instances For

    d(leaf) is the singleton containing the leaf.

    Tree-relative LCA precedence. Terminal a precedes terminal b within root iff there exist subterms X, Y of root such that X asymmetrically c-commands Y (within root), a ∈ d(X), and b ∈ d(Y).

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

      The LCA holds for a tree root iff lcaPrecedesIn root is a strict total order on its terminal nodes: irreflexive, transitive, and total (every pair of distinct terminals is ordered).

      Instances For

        In root = node x (node y z), x c-commands y within root. Works for arbitrary SOs, not just leaves.

        In root = node x (node y z), x c-commands z within root. Works for arbitrary SOs, not just leaves.

        Outer precedes inner under the LCA. For root = node (leaf x) (node (leaf y) (leaf z)) where all three are distinct leaves, x precedes both y and z in lcaPrecedesIn root.

        This is Kayne's key result (1994, pp. 35-36): the outer daughter asymmetrically c-commands everything in its sister's projection, so all its terminals precede all terminals of the inner daughters.

        Subsumes both "specifier precedes head/complement" and "head precedes complement internals".

        theorem Minimalism.spec_precedes_head_complement (spec head compl : LIToken) (hne_sh : spec head) (hne_sc : spec compl) (hne_hc : head compl) :

        Specifier precedes head and complement under the LCA. Alias for outer_precedes_inner with conventional names.

        theorem Minimalism.head_precedes_complement (head a b : LIToken) (hne_ha : head a) (hne_hb : head b) (hne_ab : a b) :

        Head precedes complement internals. Alias for outer_precedes_inner with conventional names.

        theorem Minimalism.no_right_specifier (head compl spec : SyntacticObject) (hne_hc_node : head.node compl spec) :
        have root := (head.node compl).node spec; cCommandsIn root spec head

        Right specifiers are LCA-incompatible. In root = node (node head compl) spec, spec's sister is node head compl, which contains head. So spec c-commands head. But head's sister (within the tree) is compl, which does not contain spec (spec is in the other branch).

        The LCA therefore orders spec's terminals BEFORE head's terminals. But the PF string has head before spec (right-specifier position). This contradiction means right specifiers are ruled out: the LCA forces specifiers to the left.

        theorem Minimalism.adjunction_left_only (mover target : SyntacticObject) :
        linearize (mover.node target) = linearize mover ++ linearize target

        Head-to-head adjunction must be left-adjunction. When a moving head mover adjoins to a target, the linearization function places mover's material before target's material (left-adjunction). This matches Kayne's result (1994, pp. 22-24).

        At the level of the complex head node mover target in isolation, two sister leaves symmetrically c-command each other (the sister- terminal limitation). The ordering emerges from the embedding context. But linearize — which gives the unique LCA-compatible order for well-formed trees — always places left daughters before right daughters, establishing left-adjunction.

        Sister terminals are unordered by the LCA. For root = node (leaf a) (leaf b), leaf a and leaf b are sisters: each c-commands the other (via its sister). So neither asymmetrically c-commands the other, and lcaPrecedesIn does not order them.

        This is not a defect but a feature: in well-formed BPS, sister terminals don't arise. Complements are always phrases (nodes), and heads project, so the complement of a head is always node X Y, not a bare leaf.