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 #
- @cite{alderete-1999}: Lexical prespecification of stress (English stress-shifting suffixes like -ity, -ic)
- @cite{koehnlein-cameron-2024}: Foot structure as a lexical property (motivating syllable-internal prosodic oppositions)
- @cite{moren-zsiga-2006}: Lexical tone in Thai
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).
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).- preferredFoot : Option Theories.Phonology.Syllable.FootType
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
- One or more equations did not get rendered due to their size.
Instances For
Is this exponent prosodically inert (no prespecification)?
Equations
- p.isInert = (p.inherentStress.isNone && p.preferredFoot.isNone)
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
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
- Morphology.DM.RichRepresentation.RichExponent.bare s = { segments := s }
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 : Ctx → Bool
Context check: does the terminal's feature bundle match?
Root restriction (optional).
- specificity : ℕ
Specificity for Elsewhere Condition resolution.
Instances For
Does a Rich Vocabulary Item match at a given terminal node?
Equations
Instances For
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.
Telugu singular -ni: stressed exponent.
Equations
Instances For
Telugu n-exponent -am: prosodically inert (no prespecification).