Documentation

Linglib.Theories.Morphology.DM.RichExponent

Rich Phonological Representations for Vocabulary Insertion #

@cite{alderete-1999} @cite{koehnlein-cameron-2024}

Standard Distributed Morphology assumes that Vocabulary Items specify only segmental exponents (strings). However, a growing body of work argues that exponents can carry lexical prespecification of suprasegmental properties: stress, metrical structure, tone, etc.

Motivation #

@cite{aitha-2026} argues that Telugu singular -ni is prespecified for stress. This prespecification interacts with the phonological grammar (Stratal OT) to produce the weak alternation: stressed -ni cannot form a well-formed binary foot when PrWd-final, triggering its deletion. Without prespecification, the alternation would require a morpheme-specific phonological rule — exactly the kind of ad hoc device that modular DM aims to avoid.

Architecture #

RichExponent extends the bare String exponent with an optional ProsodicPrespec field. RichVocabItem is a version of VocabItem that uses RichExponent instead of String.

The key insight: rich representations are not stipulations of surface behavior. They are underlying specifications that interact with general phonological constraints. The surface pattern is derived from the interaction, not encoded in the representation.

Precedents #

Prosodic prespecification for a morphological exponent.

An exponent may be lexically specified for suprasegmental properties that interact with the phonological grammar. These specifications are part of the underlying representation (List 2 in DM's architecture) and persist through phonological computation unless overridden by higher-ranked constraints.

Fields are optional: none means the property is unspecified (determined by the phonological grammar alone).

  • inherentStress : Option Bool

    Inherent stress: some true = the exponent bears lexical stress; some false = the exponent is lexically unstressed; none = stress assignment is left to the phonological grammar.

    Example: Telugu singular -ni is some true — it enters the phonology with a prespecified stress that interacts with FT-BIN and IDENT-STRESS (@cite{aitha-2026} §5).

  • Preferred foot type, if any. Relevant for exponents that impose metrical requirements (e.g., stress-shifting suffixes in English that require a specific foot structure).

    Example: English -ity requires a trochaic foot on the preceding syllable (@cite{alderete-1999}).

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

          Is this exponent prosodically inert (no prespecification)?

          Equations
          Instances For

            A rich exponent: segmental content plus optional prosodic prespecification.

            This replaces the bare String in VocabItem for analyses where morpheme-specific prosodic properties are needed. The segmental content and prosodic specification are independent: a morpheme can have rich prosody with simple segments, or complex segments with no prosodic specification.

            • segments : String

              Segmental content (the traditional "exponent").

            • prosody : ProsodicPrespec

              Prosodic prespecification (empty = prosodically inert).

            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

                  Create a prosodically inert exponent (equivalent to a bare string).

                  Equations
                  Instances For

                    Create a stressed exponent.

                    Equations
                    Instances For

                      Create an unstressed exponent.

                      Equations
                      Instances For

                        A Vocabulary Item with rich phonological representation.

                        Identical to VocabItem except that exponent is a RichExponent rather than a bare String. The contextMatch, rootMatch, and specificity fields work exactly as in VocabItem.

                        • exponent : RichExponent

                          The phonological exponent with optional prosodic prespecification.

                        • contextMatch : CtxBool

                          Context check: does the terminal's feature bundle match?

                        • rootMatch : Option (RootBool)

                          Root restriction (optional).

                        • specificity :

                          Specificity for Elsewhere Condition resolution.

                        Instances For
                          def Morphology.DM.RichRepresentation.RichVocabItem.matches {Ctx Root : Type} (vi : RichVocabItem Ctx Root) (ctx : Ctx) (root : Root) :

                          Does a Rich Vocabulary Item match at a given terminal node?

                          Equations
                          Instances For
                            def Morphology.DM.RichRepresentation.richVocabularyInsert {Ctx Root : Type} (rules : List (RichVocabItem Ctx Root)) (ctx : Ctx) (root : Root) :

                            Insert a Rich Vocabulary Item: same Elsewhere Condition logic as vocabularyInsert, but returns a RichExponent.

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

                              Convert a standard VocabItem to a RichVocabItem with inert prosody. All existing VI rules are automatically prosodically inert.

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

                                A bare exponent is prosodically inert.

                                A stressed exponent is not prosodically inert.