Documentation

Linglib.Phenomena.Phonology.Studies.Berent2026

Berent (2026) @cite{berent-2026} #

Three arguments for abstraction in phonology. Glossa: a journal of general linguistics 12(1). 1--24.

Three experimental arguments that phonological grammar is substance-free, algebraic, and amodal:

  1. Abstract: syllable structure constraints (sonority sequencing) persist under articulatory suppression (TMS, mechanical) and in print reading, engaging Broca's area rather than motor cortex. Formalized as gradient markedness over the abstract SonorityRank type — the grammar sees only the ordering, not the articulatory features that correlate with it.

  2. Algebraic: identity restrictions (*XX ban, OCP) generalize to novel feature values unattested in the speaker's language (Hebrew /θ/, novel ASL handshapes). Formalized as the type-polymorphic mkOCP constraint — Lean's parametric polymorphism IS the algebraic property.

  3. Amodal: English speakers project spoken-language doubling constraints onto novel ASL signs, with a phonology--morphology split (identity banned in phonological contexts, reduplication preferred in morphological contexts). Formalized as competing OT parses over DoublingParse (see Theories/Phonology/Doubling.lean).

Formalization strategy #

The paper's central claims are metatheoretical — they argue about the nature of phonological representations rather than proposing new formal machinery. The deepest formalization insight is that Lean's type system already embodies the distinctions Berent draws:

The doubling theory (types, constraints, L1-parameterized model) is factored into Theories/Phonology/Doubling.lean. The experimental data supporting the doubling reversal is in @cite{berent-bat-el-brentari-dupuis-vaknin-nusbaum-2016}.

@cite{berent-2026}

Onset sonority profile: the relationship between C1 and C2 sonority in a two-segment onset.

The behavioral gradient rise > plateau > fall (@cite{berent-2026}, Figure 1A; data from Berent et al. 2007) maps directly to this classification on the abstract SonorityRank type.

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

      Classify a two-segment onset by its sonority profile. Operates on SonorityRank — the abstract hierarchy — not on articulatory features.

      Equations
      Instances For

        Onset markedness as an OT constraint: gradient violations by sonority profile. Uses mkMarkGrad from the shared constraint library.

        Rise = 0 violations, plateau = 1, fall = 2. This captures the behavioral gradient (blif > bnif > bdif > lbif; @cite{berent-2026}, data from Berent et al. 2007). The gradient is determined entirely by the abstract SonorityRank ordering — the grammar does not inspect whether "rise" means "stop-before-liquid" vs. "nasal-before-vowel".

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          @[reducible, inline]

          Gradient markedness of onset sonority profiles (convenience alias).

          Equations
          Instances For
            theorem Berent2026.sonority_gradient_abstract (r1 r2 : Phonology.Syllable.SonorityRank) :
            onsetMarkedness (onsetProfile r1 r2) = if r1.rank < r2.rank then 0 else if (r1.rank == r2.rank) = true then 1 else 2

            The sonority gradient is determined by abstract rank, not by features. Two segments with the same SonorityRank are treated identically regardless of their articulatory specification.

            theorem Berent2026.ocp_detects_aa {α : Type} [DecidableEq α] (a : α) (rest : List α) :

            OCP detects adjacent identity.

            theorem Berent2026.ocp_passes_ab {α : Type} [DecidableEq α] (a b : α) (rest : List α) (h : a b) :

            OCP passes over non-identical adjacency.

            The phonology--morphology reversal: the same OCP-XX produces opposite surface preferences depending on whether the morphological context licenses reduplication.

            This is the core of @cite{berent-2026}'s third argument: the reversal is amodal (it transfers from speech to sign) and L1-dependent (it depends on the speaker's morphological system). See Phonology.Doubling.doubling_reversal for the proof and @cite{berent-bat-el-brentari-dupuis-vaknin-nusbaum-2016} for the experimental evidence.

            Both doubling tableaux lift to generic ConstraintSystems via tableauSystem. The phonology--morphology reversal then becomes a probability-1 reversal: the same OCP-XX assigns probability 1 to .nonidentical in phonological contexts and to .reduplication in morphological contexts.

            In phonological contexts, .nonidentical has probability 1.

            In morphological contexts where reduplication is available, .reduplication has probability 1.