Documentation

Linglib.Syntax.Minimalist.Defs

Syntactic Objects: the SO₀ alphabet #

[Cho13] [MCB25]

The lexical alphabet of the Minimalist Program: categorial features, lexical items, and the LIToken leaves over which syntactic objects are built. The SyntacticObject carrier itself — the MCB-faithful nonplanar SO type — lives in SyntacticObject.lean (which imports this file for the alphabet), so this Defs module is carrier-agnostic.

Per [MCB25] Def 1.1.1 (book p. 22), SO₀ consists of lexical items and syntactic features. Linglib encodes a leaf as an LIToken (an instantiated LexicalItem); the carrier's leaf alphabet is LIToken ⊕ Unit (lexical leaf inl tok vs the bare trace/structural vertex inr ()).

inductive Minimalist.Cat :

Categorial features (Definition 10).

Enumerates the head categories of the Minimalist Program clausal spine and nominal extended projection: cartographic left periphery, inflectional spine, v/Voice/Appl event-structure layer, nominal categorizer-and-quantity sequence, and adpositional Place/Path articulation.

Instances For
    @[implicit_reducible]
    Equations
    def Minimalist.instReprCat.repr :
    CatStd.Format
    Equations
    Instances For
      @[implicit_reducible]
      instance Minimalist.instDecidableEqCat :
      DecidableEq Cat
      Equations
      @[implicit_reducible]
      instance Minimalist.instInhabitedCat :
      Inhabited Cat
      Equations
      @[reducible, inline]

      Selectional stack consumed left-to-right

      Equations
      Instances For

        A simple LI is a ⟨CAT, SEL⟩ pair (Definition 10), optionally with a phonological form for linearization.

        Instances For
          def Minimalist.instReprSimpleLI.repr :
          SimpleLIStd.Format
          Equations
          • One or more equations did not get rendered due to their size.
          Instances For
            def Minimalist.instDecidableEqSimpleLI.decEq (x✝ x✝¹ : SimpleLI) :
            Decidable (x✝ = x✝¹)
            Equations
            • One or more equations did not get rendered due to their size.
            Instances For

              Lexical item (simple or complex from head movement, Definition 88)

              Instances For
                Equations
                • One or more equations did not get rendered due to their size.
                Instances For
                  @[implicit_reducible]
                  Equations
                  def Minimalist.LexicalItem.simple (cat : Cat) (sel : SelStack) (phonForm : String := "") :

                  Create a simple (non-complex) LI

                  Equations
                  Instances For

                    Get the outer (projecting) category of an LI

                    Equations
                    Instances For

                      Get the outer selectional requirements

                      Equations
                      Instances For

                        Is this LI complex (result of head-to-head movement)?

                        Equations
                        Instances For

                          Combine two LIs for head-to-head movement (target reprojects)

                          Equations
                          Instances For

                            LI token: specific instance of an LI in a derivation

                            Instances For
                              def Minimalist.instReprLIToken.repr :
                              LITokenStd.Format
                              Equations
                              • One or more equations did not get rendered due to their size.
                              Instances For
                                @[implicit_reducible]
                                Equations
                                @[implicit_reducible]
                                Equations

                                Head-side convention (MCB Lemma 1.13.5) #

                                The harmonic head-side convention ([MCB25] Lemma 1.13.5, book p. 127): head functions on a tree are in bijection with its planar embeddings, under one of two conventions:

                                • .initial (harmonic head-initial): the head daughter is to the LEFT of each binary node (English-like).
                                • .final (harmonic head-final): the head daughter is to the RIGHT (Japanese/Korean/Turkish).

                                A carrier-free parameter (it names a directionality, not a tree shape), so it lives in the alphabet layer alongside Cat. Consumed by the selection-induced externalization (SyntacticObject/Externalization.lean). Mixed-direction languages (German head-final VP + head-initial CP) need a headSide : CatConventionDir refinement, out of scope for §1.13-§1.16.

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

                                    Extract the phonological form from an LIToken.

                                    Equations
                                    Instances For
                                      def Minimalist.LIToken.selects (selector selected : LIToken) :

                                      LIToken-level c-selection: selector selects selected iff selector's outermost selectional feature equals selected's outer category. A pure LIToken relation; no SO structure involved.

                                      Equations
                                      Instances For
                                        @[implicit_reducible]
                                        instance Minimalist.instDecidableSelects (lt1 lt2 : LIToken) :
                                        Decidable (lt1.selects lt2)
                                        Equations
                                        def Minimalist.mkTraceToken (index : ) :

                                        Trace marker token: the canonical LIToken read off a bare trace vertex when a selection check needs an LIToken at that position. The index is recorded in the id field (sentinel ≥ 10000) but is not part of chain identity — MCB chain identity is workspace-level (Def 1.2.1), and the SO carrier's trace leaf is bare/index-free. Selection reads only the token's category (.N) and outerSel ([]), both index-independent.

                                        Equations
                                        Instances For