Prosodic Word (PrWd) #
@cite{selkirk-1984}
The prosodic word (PrWd, ω) is the prosodic constituent immediately above the foot in the prosodic hierarchy:
σ < f < **ω** < φ < ι
PrWd is the domain for a cluster of phonological processes:
- Stress assignment and metrical parsing
- Vowel harmony (progressive harmony in Telugu)
- Minimal word constraints (bimoraic minimum)
- Obligatory hiatus resolution (within PrWd; optional across PrWd)
Morphosyntax-Prosody Mapping #
Not all morphological elements are PrWd-internal. The mapping from morphosyntactic structure to prosodic structure determines which elements fall within the PrWd and which form their own domain:
| Morphological status | PrWd membership | Example (Telugu) |
|---|---|---|
| Root | Internal | samudr- |
| Derivational suffix | Internal | (not shown) |
| Inflectional suffix | Internal | -am, -ni, -ki |
| Agreement suffix | Internal | -ni (1SG), -vi (2SG) |
| Postposition | External | -lō, -tō, -gurinci |
This boundary is diagnosed by vowel harmony scope, minimal word effects, and obligatory vs optional hiatus resolution (@cite{aitha-2026} §3.2).
Connection to Linglib #
Core.Prosody defines the prosodic hierarchy levels (σ, f, ω, φ, ι)
and intonational structure. This module provides the internal
structure of the prosodic word: syllable constituency, weight
profiles, minimal word constraints, and the morphosyntax-prosody
mapping that determines PrWd boundaries.
The morphological status of an element relative to the prosodic word. Determines whether the element is parsed inside the PrWd with the stem or forms a separate prosodic domain.
- root : MorphStatus
Root morpheme: always PrWd-internal.
- derivational : MorphStatus
Derivational affix: PrWd-internal with the stem.
- inflectional : MorphStatus
Inflectional affix (case, number, tense): PrWd-internal.
- agreement : MorphStatus
Agreement marker: PrWd-internal (crucially, for Telugu nominal predicative agreement; @cite{aitha-2026} §3.1).
- postposition : MorphStatus
Postposition: forms a separate PrWd. Evidence: not subject to progressive vowel harmony, obeys minimal word constraint independently, hiatus resolution across boundary is optional (@cite{aitha-2026} §3.2).
- clitic : MorphStatus
Clitic: may be PrWd-internal or -external depending on the language and the specific clitic.
Instances For
Equations
- Theories.Phonology.ProsodicWord.instBEqMorphStatus.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Is this morphological element parsed inside the PrWd with the stem?
The boundary between PrWd-internal and PrWd-external elements is empirically diagnosed by:
- Vowel harmony: progressive harmony in Telugu affects only PrWd-internal suffixes, not postpositions
- Minimal word constraint: postpositions independently satisfy the bimoraic minimum; inflectional suffixes do not
- Hiatus resolution: obligatory within PrWd, optional across PrWd boundaries
Equations
- Theories.Phonology.ProsodicWord.MorphStatus.root.isPrWdInternal = true
- Theories.Phonology.ProsodicWord.MorphStatus.derivational.isPrWdInternal = true
- Theories.Phonology.ProsodicWord.MorphStatus.inflectional.isPrWdInternal = true
- Theories.Phonology.ProsodicWord.MorphStatus.agreement.isPrWdInternal = true
- Theories.Phonology.ProsodicWord.MorphStatus.postposition.isPrWdInternal = false
- Theories.Phonology.ProsodicWord.MorphStatus.clitic.isPrWdInternal = false
Instances For
A prosodic word: a sequence of syllables (by weight) that forms a single domain for stress assignment and phonological processes.
The syllables field gives the weight profile in linear order.
For example, Telugu samudram 'ocean' has profile [L, L, H]
(sa.mu.dram).
- syllables : List Syllable.SyllWeight
Instances For
Equations
- Theories.Phonology.ProsodicWord.instBEqPrWd.beq { syllables := a } { syllables := b } = (a == b)
- Theories.Phonology.ProsodicWord.instBEqPrWd.beq x✝¹ x✝ = false
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Total mora count of a prosodic word.
Equations
- w.moraCount = List.foldl (fun (x1 : Nat) (x2 : Theories.Phonology.Syllable.SyllWeight) => x1 + x2.morae) 0 w.syllables
Instances For
Number of syllables.
Equations
Instances For
Does a prosodic word satisfy the minimal word constraint?
@cite{mccarthy-prince-1993}: the smallest prosodic word must contain at least one foot, which requires at least two morae (for moraic trochee languages) or two syllables (for syllabic trochee languages).
Telugu requires a bimoraic minimum (@cite{aitha-2026} §3.2): the shortest standalone words are informal 2SG imperatives like rā 'come' (CVV = 2μ) and pō 'go' (CVV = 2μ). No word consists of a single light syllable.
Equations
- w.satisfiesMinWord minMorae = decide (w.moraCount ≥ minMorae)
Instances For
A morphological element with its prosodic properties. Used to determine how it interacts with the stem's PrWd.
- form : String
Surface form (for documentation).
- status : MorphStatus
Morphological status (determines PrWd membership).
- initialWeight : Syllable.SyllWeight
Weight of the initial syllable. Relevant for the Telugu weak alternation: the long form is triggered when a light initial syllable follows within the PrWd (@cite{aitha-2026} §3.2).
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.
- Theories.Phonology.ProsodicWord.instBEqMorphElement.beq x✝¹ x✝ = false
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Does this element trigger the long stem form in Telugu weak nouns?
The long form (-āni) surfaces when the element is:
- PrWd-internal (inflectional suffix or agreement marker), AND
- Its initial syllable is light (CV = 1μ)
Postpositions never trigger the long form, even if they begin with a light syllable (e.g., -gurinci 'about', -eduru 'in front of'), because they are PrWd-external.
Equations
Instances For
Hiatus resolution obligation: within a PrWd, hiatus resolution is obligatory; across PrWd boundaries, it is optional.
@cite{aitha-2026} §3.2: Telugu koṭṭu 'to hit' + -āli 'OBLIG' → koṭṭāli (obligatory deletion of /u/ word-internally), but kukka eduru 'in front of the dog' allows optional retention.
- obligatory : HiatusObligation
- optional : HiatusObligation
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Determine hiatus resolution obligation from the morphological status of the following element.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A single heavy syllable (CVV or CVC) = 2μ: satisfies bimoraic min.
A single light syllable (CV) = 1μ: violates bimoraic min.
Two light syllables (CV.CV) = 2μ: satisfies bimoraic min.
-lō 'in' (CVV = 2μ): satisfies min word as a separate PrWd.
-kinda 'below' (CVC.CV = 3μ): satisfies min word.
ACC -ni: PrWd-internal, light → triggers long form.
DAT -ki: PrWd-internal, light → triggers long form.
1SG -ni: PrWd-internal (agreement), light → triggers long form.
P -lō 'in': PrWd-external → does NOT trigger long form.
P -gurinci 'about': PrWd-external → does NOT trigger long form, even though its initial syllable gu- is light.