Documentation

Linglib.Theories.Syntax.Minimalism.Formal.Amalgamation

The covering relation in a partial order.

x covers y (x ⋖ y) iff x properly dominates y with no element in between.

This is a fundamental concept in lattice theory. In the dominance order on a tree, x covers y iff y is the head of x's complement (roughly).

Equations
Instances For
    theorem Minimalism.covers_asymm {x y root : SyntacticObject} (hxy : covers x y root) (hyx : covers y x root) :

    The covering relation is asymmetric

    The set of heads in a structure

    Equations
    Instances For

      X is the maximal projection of head H in root iff:

      1. X contains H (or X = H)
      2. X has the same label as H
      3. X doesn't project further (is maximal)
      Equations
      Instances For

        For any head H in a well-formed tree, there exists a unique maximal projection

        Equations
        Instances For

          Dominance restricted to heads, lifted to projections.

          Heads are leaves (isMinimalIn), so contains x y is always false when both x and y are heads. The correct formulation lifts dominance to maximal projections: head x dominates head y iff x's maximal projection contains y's maximal projection.

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

            Covering restricted to heads (lifted to projections).

            x covers y among heads iff x's maximal projection contains y's maximal projection with no intervening head's projection between them.

            This is the correct characterization of amalgamation locality (@cite{harizanov-gribanova-2019} §3.3).

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

              Covering among heads implies no intervening head's projection

              Covering relation on projections.

              X's projection covers Y's projection iff:

              • X's maximal projection properly contains Y's maximal projection
              • No intervening head's projection between them
              Equations
              • One or more equations did not get rendered due to their size.
              Instances For

                coversAmongHeadscoversProjection #

                Both definitions restrict the covering relation to heads, lifted to maximal projections. They differ only in how the "no intervening head" clause is packaged:

                Given unique maximal projections (hasMaximalProjection), the existential witnesses can be identified across the two definitions, making them equivalent.

                Why immediatelyCCommandscoversProjection #

                immediatelyCCommands x y root blocks on ANY z that c-commands between x and y, while coversProjection only blocks on intervening heads. In a standard X-bar tree [TP T [vP v [VP V DP]]], the phrase VP c-commands v (VP's sister is v), and T c-commands VP (T's sister vP contains VP). So VP intervenes between T and v for immediatelyCCommands, making it false — even though VP is not a head and coversProjection root T v holds.

                Additionally, c-command (sister-based) only reaches complement-internal heads, while covering reaches specifier-internal heads too. In [TP T [vP [DP D NP] [v' v VP]]], TP covers DP's projection (D is in Spec-vP), but T does not c-command D because T's sister is vP, not DP.

                The relationship between c-command-among-heads and covering-among-projections remains an open question requiring infrastructure connecting projections to tree structure (sister domains, projection chains).

                theorem Minimalism.coversAmongHeads_iff_coversProjection (x y root : SyntacticObject) (hx : isHeadIn x root) (hy : isHeadIn y root) (hx_proj : hasMaximalProjection x root) (hy_proj : hasMaximalProjection y root) (h_all_proj : ∀ (z : SyntacticObject), isHeadIn z roothasMaximalProjection z root) :

                Covering among heads = Covering on projections

                coversAmongHeads and coversProjection are equivalent given unique maximal projections for all heads. The proof identifies existential witnesses using the uniqueness from hasMaximalProjection.

                This replaces the earlier false conjecture (cCommandsIn ↔ coversProjection), which fails because c-command and covering differ on specifier-internal heads and on phrasal interveners.

                The grammatical module where an operation applies

                Instances For
                  Equations
                  Instances For

                    Classification of head displacement phenomena.

                    Every operation that affects head positions is either:

                    1. Syntactic (Internal Merge) - takes place in narrow syntax
                    2. Amalgamation (Raising/Lowering) - takes place at PF

                    This follows from the Y-model architecture.

                    Instances For

                      THEOREM (Exhaustivity):

                      Every head displacement is exactly one of syntactic or amalgamation.

                      This is NOT a stipulation but follows from:

                      1. Y-model: operations are pre-Spell-Out (syntax) or post-Spell-Out (PF)
                      2. These modules are disjoint by architecture
                      3. Head displacement in syntax = Internal Merge
                      4. Head displacement at PF = Amalgamation (Raising/Lowering)

                      Syntactic and amalgamation are mutually exclusive (different modules)

                      If HMC is violated, the operation must be syntactic

                      An SO x has multiple pronunciations in root if x appears more than once as a subterm of root. Under copy theory, Internal Merge creates copies; verb doubling = multiple copies pronounced.

                      Equations
                      Instances For

                        An SO is a complex morphological word if it is a leaf whose LexicalItem has more than one feature bundle (i.e., was produced by LexicalItem.combine during head-to-head amalgamation).

                        Equations
                        Instances For

                          Verb doubling (multiple copies pronounced) implies syntactic movement

                          Word formation implies amalgamation was involved