Documentation

Linglib.Theories.Syntax.Minimalism.Core.ClauseSpine

Clause Spine: Fine-Grained Clause Size #

@cite{elkins-torrence-brown-2026} @cite{grimshaw-2005} @cite{wurmbrand-2014}

ComplementSize (ExtendedProjection/Basic.lean) classifies clausal complements by their highest functional head, which works well for tense-Agree transparency and CTP classification. But it can't distinguish VoiceP from ApplP, since both have fValue = 1. Languages like Mam need this distinction: =(y)a' appears when Voice⁰ is projected but not when only Appl⁰ is.

ClauseSpine records the full list of projected heads, enabling per-head projection queries.

A clause spine: the ordered sequence of functional heads projected in a clause, from lowest (V) to highest (e.g., C). Unlike ComplementSize, which records only the highest head, ClauseSpine records every projected head, enabling per-head queries.

Example: a transitive clause with Voice projects [V, Appl, v, Voice], while an infinitival without Voice projects [V, Appl].

  • projectedHeads : List Cat

    Projected heads, ordered bottom-up (V first, highest last). Non-empty: every clause projects at least a lexical head.

  • nonempty : self.projectedHeads []

    The spine is non-empty

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

      Does this spine project a given functional head?

      Equations
      Instances For

        The highest head in the spine (always exists by nonempty invariant).

        Equations
        Instances For

          The lowest (lexical) head in the spine.

          Equations
          Instances For

            Number of projected heads.

            Equations
            Instances For

              ApplP-sized clause: [V, Appl]. Infinitival complement without Voice. In Mam, this is the size of infinitival complements where =(y)a' is impossible — Voice is not projected, so there is no host for [oblique].

              Equations
              Instances For

                Bare VP: [V]. Minimal clause — just the lexical verb. In Mam, this is the size of infinitival complements: the embedded clause is just VP, lacking Voice, Appl, v.

                Equations
                Instances For

                  vP-sized clause: [V, v]. Light verb shell without Voice or Appl.

                  Equations
                  Instances For

                    VoiceP-sized clause: [V, Appl, v, Voice]. Projects Voice head. In Mam, this is the size of "aspectless" complements — Voice is projected, so [oblique] can be hosted, and =(y)a' is obligatory on oblique extraction.

                    Equations
                    Instances For

                      TP-sized clause: [V, Appl, v, Voice, T]. Full inflectional domain.

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

                        CP-sized clause: [V, Appl, v, Voice, T, C]. Full finite clause.

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

                          ApplP does not project Voice. This is the key distinction that ComplementSize cannot capture (both have fValue = 1 as highest head).

                          CP projects Voice (inherited from the full spine).

                          VoiceP and ApplP have the same fValue for their highest head, showing why ComplementSize can't distinguish them.