Compensatory Lengthening in Moraic Theory #
Compensatory lengthening (CL) as the filling of stranded morae following segment deletion. This module formalizes the core theoretical claims of @cite{hayes-1989}:
Moraic Conservation: CL processes conserve total mora count. Deletion strands a mora; spreading fills it.
Onset Deletion Asymmetry: CL does not compensate for loss of onset consonants, because onsets are universally non-moraic.
Weight Prerequisite: CL occurs only in languages with a syllable weight distinction (bimoraic syllables), because only such languages have morae that can be stranded.
The CL typology classifies seven attested CL types, all derivable from moraic representations without stipulating constraints on association line rearrangements.
@cite{hayes-1989}
The typology of compensatory lengthening processes (@cite{hayes-1989}, §5.1).
Each type is defined by the deletion trigger and the spreading target. All types share the core mechanism: deletion strands a mora, which is then filled by spreading from an adjacent segment.
- classical : CLType
Vowel lengthens when a following coda consonant deletes. Example: Latin *kasnus → ka:nus.
- totalAssimilation : CLType
Total assimilation of a consonant, formally equivalent to CL. Example: asta → [atta] (progressive), asta → [assa] (regressive).
- glideFormation : CLType
Glide formation shortens a vowel, freeing a mora that lengthens an adjacent segment. Example: tia → [tya:].
- prenasalization : CLType
Prenasalization absorbs a mora from the following stop. Example: Bantu amba → [a: m̌ba].
- doubleFlop : CLType
Non-adjacent CL via double flop. Deletion causes resyllabification, which strands a mora accessible to a non-adjacent vowel. Example: Ancient Greek *odwos → o:dos.
- vowelLoss : CLType
Vowel in the following syllable deletes; the preceding vowel lengthens via Parasitic Delinking. Example: Middle English talə → [ta:l].
- inverseCL : CLType
A vowel deletes or shortens, with concomitant lengthening of the following consonant. Example: Luganda aika → [akka].
Instances For
Equations
- Phonology.Moraic.CL.instDecidableEqCLType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- Phonology.Moraic.CL.instReprCLType = { reprPrec := Phonology.Moraic.CL.instReprCLType.repr }
Equations
- One or more equations did not get rendered due to their size.
Instances For
Delete a segment from a moraic syllable at a given index in the moraic tier. Returns the modified syllable and the number of stranded morae.
Following @cite{hayes-1989} §3: deletion on the segmental tier only — the mora remains, becoming segmentally unaffiliated.
Equations
Instances For
Delete an onset consonant from a moraic syllable. Returns the modified syllable. No morae are stranded because onsets are non-moraic.
Equations
- Phonology.Moraic.CL.deleteOnset σ idx = { onset := σ.onset.eraseIdx idx, moraic := σ.moraic }
Instances For
Direction of spreading to fill a stranded mora.
- left : SpreadDir
Spread from the left: the preceding segment acquires the stranded mora. This is the typical case for classical CL and vowel loss CL.
- right : SpreadDir
Spread from the right: the following segment acquires the stranded mora. This is the typical case for inverse CL.
Instances For
Equations
- Phonology.Moraic.CL.instDecidableEqSpreadDir x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Apply spreading to fill stranded morae in a moraic syllable.
Following @cite{hayes-1989}: CL is part of syllabification. When a mora is stranded, syllabification principles fill it by spreading from the nearest available segment. The direction of spreading is language-specific (part of the syllabification algorithm).
Handles 1 or 2 stranded morae (geminate deletion).
Equations
- One or more equations did not get rendered due to their size.
- Phonology.Moraic.CL.spreadToFill σ strandedMorae dir✝ = if (strandedMorae == 0) = true then σ else σ
Instances For
Onset Deletion Asymmetry (@cite{hayes-1989}, §5.2.1): Deleting an onset consonant strands zero morae, because onset consonants are universally non-moraic.
This follows directly from the representation: onsets are List Segment
with no mora association. There is nothing to strand.
This is the strongest theorem in the formalization — fully general over all syllables and all onset indices. It is derived from the representation, not stipulated.
Moraic Conservation for single-mora CL (@cite{hayes-1989}, Rule (64)): Deleting a monomoraic segment and spreading left preserves total morae.
Moraic conservation also holds for rightward spreading (inverse CL).
Weight prerequisite (@cite{hayes-1989}, §6): deleting a non-moraic coda (WBP inactive) strands zero morae. No CL is possible.
Deleting a moraic coda (WBP active) strands one mora. CL is possible.
Vowel-loss directionality (@cite{hayes-1989}, §5.2.2):
CL through vowel loss always lengthens the vowel to the left of the
deleted vowel, never to the right. In moraic theory this follows from
Parasitic Delinking + the No-Crossing Constraint (derived from temporal
precedence in Phonology.Autosegmental.no_crossing,
@cite{sagey-1986} §5.3): a stranded mora can only be picked up by
spreading leftward without crossing.
Syllabification with WBP (Rule (10)) produces moraic codas that can
trigger CL. This connects MoraicParams to the CL mechanism: the same
parameter that determines syllable weight also determines CL possibility
(@cite{hayes-1989}, §6).
Without WBP, syllabification produces non-moraic codas: no CL.