Documentation

Linglib.Morphology.Morphotactics.MirrorPrinciple

The Mirror Principle #

[Bak85]'s Mirror Principle: "Morphological derivations must directly reflect syntactic derivations (and vice versa)" ([Bak85] (4)). Each grammatical-function-changing rule — passive, causative, applicative, reflexive/reciprocal — simultaneously adds an affix to the verb and changes the grammatical functions of arguments, so affix layering must match the order of rule application.

[Bak85] §6 argues the principle should not be stipulated but should follow from the architecture: where the morphological and syntactic effects of a GF-rule are one process, mirroring holds by construction. Derivation realizes that architecture — a single list of DerivationSteps, each a rule with the affix it adds on the side it attaches — and the word's surface is derived from it by attachment (surface): the affixes of each side read outward from the root in the order the rules applied (surface_eq).

Main definitions #

GF-rules #

Grammatical-function-changing rules: the processes that both add an affix to the verb and rearrange the grammatical functions of its arguments ([Bak85] §§2–4).

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

      GF-rule categories are strictly more stem-relevant than subject agreement on [Byb85]'s hierarchy. A relevance-order fact, not a positional universal: prefixal agreement can sit inside a GF-rule morpheme, as in Chamorro na'-fan-otchu ([Bak85] (15c)).

      Derivations #

      A derivational step bundling a GF-rule with the affix it adds and the side on which it attaches. Because the morphological and syntactic effects travel together, the Mirror Principle holds by construction ([Bak85] §6). An infix attaches after its host, as Word.Tree.toList linearizes it.

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

            Steps ordered first-applied (innermost affix) to last-applied (outermost).

            Equations
            Instances For

              The syntactic projection of a derivation: its GF-rules in order of application.

              Equations
              Instances For
                def Morphology.MirrorPrinciple.toTree (root : String) (d : Derivation) :
                Word.Tree String

                The word a derivation builds on a root: each affix attached on its side, in order of application.

                Equations
                Instances For
                  def Morphology.MirrorPrinciple.surface (root : String) (d : Derivation) :
                  List String

                  The surface a derivation derives on a root.

                  Equations
                  Instances For
                    theorem Morphology.MirrorPrinciple.surface_eq (root : String) (d : Derivation) :
                    surface root d = (List.map (fun (x : DerivationStep) => x.affix) (List.filter (fun (x : DerivationStep) => decide (x.side = Morph.Side.before)) d)).reverse ++ root :: List.map (fun (x : DerivationStep) => x.affix) (List.filter (fun (x : DerivationStep) => decide (x.side = Morph.Side.after)) d)

                    The Mirror Principle ([Bak85] (4)): the surface is the prefixes in reverse order of application, the root, and the suffixes in order of application — on each side, affix order outward from the root is rule order.

                    Agreement and derivational timing #

                    Position of an agreement morpheme relative to a GF-rule morpheme: closer to the verb root (inner) or farther out (outer).

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

                        The level of grammatical functions an agreement morpheme references: semantic (pre-rule) or surface (post-rule).

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

                            An agreement morpheme's position relative to a GF-rule morpheme, paired with the level of grammatical functions it references.

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

                                  The grammatical functions visible once the given GF-rules have applied: the semantic ones before any rule, the surface ones after.

                                  Equations
                                  Instances For

                                    Relative to one GF-rule, an inner agreement morpheme attaches with no rule applied and an outer one after it: deriveReference is referenceAt at the rules applied before the morpheme.

                                    Scope #

                                    The kinds of morphology [Bak85] §5 distinguishes when delimiting the Mirror Principle's scope.

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

                                        The Mirror Principle's domain: concatenative (agglutinative) morphology, leaving cliticization and nonconcatenative morphology outside its scope ([Bak85] §5).

                                        Equations
                                        Instances For