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 #
dominatedTerminals: d(X) — the set of terminals dominated by X (alias forterminalNodesfromCore/Basic.lean)lcaPrecedesIn: the derived precedence relation on terminalsSatisfiesLCAIn: the LCA as a well-formedness condition (strict total order)
Main results #
- Outer precedes inner (
outer_precedes_inner): in[x [y z]]where all three are leaves,xprecedes bothyandz - Specifier precedes head and complement (
spec_precedes_head_complement): alias forouter_precedes_inner - Head precedes complement internals (
head_precedes_complement): alias forouter_precedes_inner - No right specifier (
no_right_specifier) - Adjunction is left-adjunction (
adjunction_left_only) - Sister terminals are unordered (
sister_terminals_unordered)
d(X): the set of terminals dominated by (or equal to) X. Corresponds to Kayne's d function (p. 16).
Instances For
d(leaf) is the singleton containing the leaf.
d(node l r) is d(l) ++ d(r).
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).
- irrefl (t : SyntacticObject) : t ∈ terminalNodes root → ¬lcaPrecedesIn root t t
No terminal precedes itself.
- trans (a b c : SyntacticObject) : a ∈ terminalNodes root → b ∈ terminalNodes root → c ∈ terminalNodes root → lcaPrecedesIn root a b → lcaPrecedesIn root b c → lcaPrecedesIn root a c
Precedence is transitive.
- total (a b : SyntacticObject) : a ∈ terminalNodes root → b ∈ terminalNodes root → a ≠ b → lcaPrecedesIn root a b ∨ lcaPrecedesIn root b a
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".
Specifier precedes head and complement under the LCA.
Alias for outer_precedes_inner with conventional names.
Head precedes complement internals.
Alias for outer_precedes_inner with conventional names.
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.
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.