Documentation

Linglib.Studies.MeinhardtEtAl2024

Meinhardt, Mai, Baković & McCollum (2024): ATR Harmony Subregular Classification #

Worked example using the function-level subregular substrate (Core/Computability/Subregular/Function/) to classify a fragment of Eastern Nilotic ATR harmony per [MMBMcC24].

The paper #

[MMBMcC24] (NLLT 42:1191-1232) propose a tightening of the [HL13] Weakly Deterministic (WD) function class. Their thesis:

Maasai dominant/recessive harmony (paper §3.1, p. 1203) #

The empirically critical fact (paper p. 1203, "(non-exceptional) dominant vowels are underlyingly specified for the spreading value of the harmonic feature, [+ATR]"): dominance is a lexical property of the root, independent of the surface ATR value of any individual segment. A dominant root triggers spreading regardless of its constituent vowels' phonetic ATR; a recessive root does not.

The bidirectional Maasai pattern (paper p. 1193, ex 1a):

What this file does (audit-corrected) #

Per CLAUDE.md "stimulus contrasts" discipline for Studies files:

  1. Defines a 4-symbol alphabet Seg capturing the dominant/recessive distinction the paper insists is empirically load-bearing — the formaliser-invented alphabet from the previous version of this file (which conflated [+ATR] with the spreading trigger) is replaced.
  2. Encodes the rightward [+ATR] spreading half of Maasai harmony as both a SFST and an OSLRule. Per paper §5.4 (p. 45), single- direction iterative spreading is Output-Strictly-Local — the output decision at each position depends on whether the immediately preceding output symbol is +ATR. The OSL classification is tighter than Left-Subsequential and is what the paper actually predicts for the unidirectional pass.
  3. Decide-checks input/output examples corresponding to ex 1a-i and ex 1a-ii from the paper (encoded in the toy alphabet).
  4. Proves the bidirectional dominant-recessive map maasai is weakly deterministic (maasai_weaklyDeterministic) via a non-interacting bimachine, yet unbounded-circumambient as covariation (maasai_isUnboundedCircumambient) — the same predicate Tutrugbu satisfies — while not RequiresBothSides (maasai_not_requiresBothSides). That asymmetry is the WD/ND boundary [MMBMcC24] draws.

What this file does NOT do #

Scope note: cross-construction extrapolation #

The OSL framing here characterises ATR harmony within a single spell-out domain (root + affixes). [SCD26] argue that ATR harmony in Guébie particle-verb focus-fronting constructions is also local at the moment of spell-out but surface-discontinuous after subsequent A′-movement. Their pattern is not a counterexample to the OSL classification of root-internal ATR harmony — the two analyses describe disjoint construction types — but it does refute the broader extrapolation that "ATR harmony is strictly local on the surface" universally. See Studies/SandeClemDabkowski2026.lean for the discontinuous case.

Minimal alphabet capturing the dominance-vs-recessive distinction that drives Maasai ATR harmony per [MMBMcC24] p. 1203. Four symbols stand in for the relevant phonological contrasts:

  • recL — a recessive [-ATR] vowel (e.g., /ɪ/, /ʊ/). Surfaces as [-ATR] absent harmony; raises to [+ATR] under spread.
  • recH — a recessive [+ATR] vowel (e.g., /i/, /u/). Already [+ATR]; passes spread through.
  • dom — a dominant vowel. Triggers [+ATR] spread regardless of its own surface quality (the paper's load-bearing distinction).
  • a — the opaque /a/. Blocks spread.

Consonants are omitted as they are transparent to the harmony.

Instances For
    @[implicit_reducible]
    Equations
    def MeinhardtEtAl2024.instReprSeg.repr :
    SegStd.Format
    Equations
    Instances For
      @[implicit_reducible]
      Equations
      • One or more equations did not get rendered due to their size.

      Whether the segment is a [+ATR] vowel (after surface realisation). A dom segment surfaces as [+ATR] by definition; recH is underlyingly [+ATR]; recL is [-ATR] (until raised by spread); a is neither.

      Equations
      Instances For

        Surface form of a segment under spreading [+ATR]: recessive [-ATR] vowels raise; everything else passes through unchanged (including the opaque /a/, which blocks the spread that would have reached it).

        Equations
        Instances For

          OSL rule encoding rightward [+ATR] spreading from a dominant root.

          The rule's k = 2: the output decision at each position depends on the single immediately preceding output symbol (per [CEH15] the canonical OSL fragment of phonological maps). Rule logic:

          • Current input is dom → emit recH (dominant always surfaces as [+ATR]).
          • Current input is a → emit a (opaque, blocks spread; the next position's output context will be a, not a +ATR vowel).
          • Current input is recH → emit recH (already +ATR, passes through).
          • Current input is recL and previous output was recH → emit recH (spread continues).
          • Current input is recL otherwise → emit recL (no spread to here).

          Per paper §5.4 (p. 45): single-direction iterative spreading patterns are OSL but not ISL, because the output decision genuinely depends on the output history (how spread has propagated) rather than the input history alone.

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

            Equivalent SFST for the same map: state tracks whether spread is active. Demonstrates that the rule has both an OSL representation (above) and a Subsequential representation (here) — the latter being the umbrella class.

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

              Rightward [+ATR] spreading is Left-Output-Strictly-Local ([CEH15]; [MMBMcC24] §5.4). Witness: the OSL rule rightwardATR_osl defined above.

              This is the tighter classification per the paper — single-direction iterative spreading patterns are properly contained in OSL, strictly above the ISL class but strictly below the (Left-)Subsequential class.

              Rightward [+ATR] spreading is also Left-Subsequential (a weaker claim than OSL but the umbrella class). Witness: the SFST.

              Since OSL ⊆ Left-Subsequential (Function/Hierarchy.lean), the OSL classification automatically lifts.

              Bidirectional Maasai harmony — weakly deterministic (faithful) #

              Maasai dominant-recessive ATR harmony spreads [+ATR] from a dominant root to recessive vowels on both sides. Modelled here in its non-opaque core: a recessive recL raises to recH iff the word contains a dominant vowel anywhere (maasai). This is a union of two independent spreading passes, so it is weakly deterministic ([MMBMcC24], unbounded semiambient): the bimachine maasaiBM tracks a dominant seen on each side and its output is literally a unite of one-sided rules. Yet — like Tutrugbu — a recessive's surface ATR co-varies with information unboundedly far on either side, so maasai also satisfies IsUnboundedCircumambient. The contrast is exactly the WD/ND boundary the paper draws: both maps are circumambient as covariation, but only Tutrugbu RequiresBothSides (suppression/conjunction).

              def MeinhardtEtAl2024.hasDom (xs : List Seg) :
              Bool

              The word contains a dominant trigger.

              Equations
              Instances For
                def MeinhardtEtAl2024.maasai (xs : List Seg) :
                List Seg

                Bidirectional dominant-recessive harmony (non-opaque core): a recessive raises iff the word has a dominant trigger anywhere.

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

                  The non-interacting bimachine: each side's state tracks a dominant seen on that side; a recessive raises if either side has one — a union of one-sided rules.

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

                    maasaiBM's cell output is a unite of one-sided raise-rules.

                    theorem MeinhardtEtAl2024.maasaiBM_lState (xs : List Seg) :
                    maasaiBM.lState xs = xs.any fun (x : Seg) => x == Seg.dom

                    The left state after a prefix is exactly "a dominant occurs in it".

                    theorem MeinhardtEtAl2024.maasaiBM_rState (xs : List Seg) :
                    maasaiBM.rState xs = xs.any fun (x : Seg) => x == Seg.dom

                    The right state after a suffix is exactly "a dominant occurs in it".

                    Maasai ATR harmony is weakly deterministic ([MMBMcC24]): the bidirectional dominant-recessive spread is a non-interacting bimachine.

                    Maasai is unbounded-circumambient as covariation — at every distance, a medial recessive's ATR flips under a dominant placed far to the left or far to the right. The same predicate Tutrugbu satisfies (tutrugbu_isUnboundedCircumambient); the difference is that Maasai does not RequiresBothSides.

                    Hence Maasai does not require both sides — it escapes the teeth, unlike Tutrugbu. Covariation (both languages) and interaction (Tutrugbu only) come apart.

                    Strictness witness subsequential ⊊ WD: Maasai is weakly deterministic yet not left-subsequential. A synchronous left-subsequential map is right-myopic (IsLetterLeftSubsequential.isRightMyopic), but Maasai's bidirectional spread is not (maasai_isUnboundedCircumambient).