Beckman & Pierrehumbert (1986) @cite{beckman-pierrehumbert-1986} #
Intonational Structure in Japanese and English. Phonology Yearbook 3: 255–309.
Core Contributions #
This paper establishes the prosodic hierarchy above the word — accentual phrase (AP), intermediate phrase (ip), intonation phrase (IP) — via cross-linguistic comparison of Japanese and English intonation. It introduced three key analytical innovations:
Accentual phrase: the domain of pitch accent distribution, delimited by a phrasal H and boundary L in Japanese. At most one pitch accent per AP (culminativity at the phrasal level).
Catathesis: pitch range compression triggered by bitonal pitch accents. The domain is the intermediate phrase. Blocked by ip boundaries. Chaining produces descending F0 staircases.
Intermediate phrase: the domain of catathesis. In Japanese, 1–3 APs, bounded by pause or glottalization + L boundary tone. In English, decomposed from @cite{pierrehumbert-1980}'s single "phrase accent" into an ip-terminal tone (phrase accent) distinct from the IP boundary tone.
The paper also demonstrates that Japanese tonal patterns are much sparser than earlier autosegmental accounts assumed — closer to English in their distribution of tones to tone-bearing units.
Bridge to RegisterTier #
Catathesis is formalized as register-based downstep applied to the
intonation domain: each bitonal pitch accent within an intermediate
phrase contributes a register l feature, producing cumulative terracing
via realizePitch (@cite{snider-1999}, @cite{lionnet-2025}). The ip
boundary resets the register, preventing catathesis from propagating
across phrases.
An accentual phrase: the lowest level of prosodic phrasing defined by the intonation pattern.
In Japanese, delimited by a phrasal H and boundary L tone. Contains at most one pitch accent. An unaccented AP has the rising pitch shape (L → phrasal H) but no accent HL fall (§2.2).
In English, the AP is less firmly established. It corresponds to the domain of a single pitch accent plus the surrounding material up to the next accent or phrase boundary (§2.4).
Accentedness is derived from the accent field: an AP is accented iff its accent is non-null.
- accent : Features.Prosody.PitchAccent
Pitch accent type (null if unaccented)
- nWords : ℕ
Number of words grouped in this phrase
Instances For
Equations
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
An AP is accented iff it has a non-null accent.
Equations
- ap.isAccented = (ap.accent != Features.Prosody.PitchAccent.null)
Instances For
Convert a sequence of APs into register specifications.
Each bitonal accent contributes a register l (downstep) feature;
non-bitonal or null accents contribute no register feature (registerless).
This bridges catathesis to @cite{snider-1999}'s RegisterTier: the
descending staircase in catathesis chains (Fig. 11) is the same
terracing effect produced by cumulative register l features.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Catathesis produces terracing (§3, Fig. 11): a sequence of
bitonal accents within an ip produces a descending staircase.
This follows from realizePitch applied to the register specs.
Catathesis lowers pitch: after one bitonal accent, the pitch is strictly lower than the starting level.
Count catathesis applications in a sequence of APs.
Equations
- BeckmanPierrehumbert1986.catathesisCount aps = (List.filter (fun (x : BeckmanPierrehumbert1986.AccentualPhrase) => x.accent.isBitonal) aps).length
Instances For
An ip with no bitonal accents has zero catathesis — no pitch compression occurs.
Catathesis is triggered by the accent HL, not by any HL sequence. An unaccented AP (with phrasal H + boundary L) does NOT trigger catathesis (§3.1).
An intermediate phrase: a sequence of accentual phrases terminated by a phrase accent.
@cite{beckman-pierrehumbert-1986} §4.1: in Japanese, the ip is the domain of catathesis. It can be as short as a single AP and seldom contains more than three. Its boundary is marked by pause or glottalization, and the phrase-final L tone provides evidence for disjuncture.
§4.3: in English, the ip is reanalyzed from @cite{pierrehumbert-1980}'s framework. The phrase accent (H or L) is terminal to the ip, while the boundary tone is terminal to the IP.
- aps : List AccentualPhrase
Accentual phrases within this ip
- phraseAccent : Features.Prosody.PhraseAccent
Phrase accent: terminal tone of the ip
- aps_nonempty : self.aps ≠ []
Non-empty: an ip contains at least one AP
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
An intonation phrase: one or more intermediate phrases terminated by a boundary tone (§4.2).
- ips : List IntermediatePhrase
Intermediate phrases within this IP
- boundaryTone : Features.Prosody.BoundaryTone
Boundary tone: terminal tone of the IP
- ips_nonempty : self.ips ≠ []
Non-empty
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
The terminal contour of an IP is composed from the phrase accent
of its final ip and the IP boundary tone. This is the structural
decomposition that @cite{beckman-pierrehumbert-1986} §4.2–4.3
establish and that @cite{steedman-2000} uses in the CCG Tune type.
Equations
- ip.terminalContour = { phraseAccent := (ip.ips.getLast ⋯).phraseAccent, boundaryTone := ip.boundaryTone }
Instances For
Register specs within a single ip: catathesis chains.
Equations
Instances For
Register specs across an IP: each ip resets the register. This is the structural basis for "catathesis is blocked by ip boundaries" (§4.1, §4.4, Figs. 17–18 vs. 12–13).
Each ip gets independent register specs — the l features from
one ip do not propagate into the next.
Equations
Instances For
Where catathesis takes effect relative to the triggering accent.
@cite{beckman-pierrehumbert-1986} §3.3: in Japanese, catathesis applies within the accent itself (affecting the trailing L). In English, catathesis applies after the second tone of the triggering bitonal accent.
- withinAccent : CatathesisTiming
- afterAccent : CatathesisTiming
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- BeckmanPierrehumbert1986.instDecidableEqCatathesisTiming x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Language-specific intonation system parameters.
@cite{beckman-pierrehumbert-1986} §6: Japanese and English share the same prosodic hierarchy but differ in how accents relate to the lexicon, the size of the pitch accent inventory, and whether unaccented phrases are possible.
- accentSpec : Features.Prosody.AccentSpecification
How accents are specified (lexical vs postlexical)
- accentShapes : List Features.Prosody.PitchAccent
The set of contrastive pitch accent shapes (excluding null)
- hasUnaccented : Bool
Whether lexically unaccented words/phrases exist
- apBoundaryLAlwaysPresent : Bool
Whether the accentual phrase boundary L is always present
- catathesisTiming : CatathesisTiming
When catathesis applies relative to the triggering accent (§3.3)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Number of contrastive accent shapes — derived, not stipulated.
Equations
- sys.accentInventorySize = sys.accentShapes.length
Instances For
Japanese intonation system (§2, §6):
- Accent location is lexical (H*+L at specified mora)
- Single accent shape
- Unaccented words exist (and are common)
- Boundary L is always present
Equations
- One or more equations did not get rendered due to their size.
Instances For
English intonation system (§2, §6):
- Accent shape is postlexical (chosen by intonation)
- Six contrastive accent shapes
- Every content word has an accentable syllable
- AP boundary is less clearly defined
Equations
- One or more equations did not get rendered due to their size.
Instances For
Japanese has lexical accent specification.
English has postlexical accent specification.
Japanese has fewer accent shapes than English (derived from the actual accent lists, not a stipulated number).
Japanese uses exactly one accent shape.
English uses exactly six accent shapes.
All Japanese accents are bitonal (and therefore trigger catathesis).
Not all English accents are bitonal — H* and L* are monotonal.
An accented AP (e.g., uma'i 'delicious', Fig. 6a).
Equations
- BeckmanPierrehumbert1986.accentedAP = { accent := Features.Prosody.PitchAccent.H_star_plus_L, nWords := 1 }
Instances For
An unaccented AP (e.g., mame 'beans', Fig. 6).
Equations
- BeckmanPierrehumbert1986.unaccentedAP = { accent := Features.Prosody.PitchAccent.null, nWords := 1 }
Instances For
Two-AP ip: accented + unaccented (Figs. 3, 5). Catathesis applies once — the unaccented AP is in a lower pitch range.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The register specs for this ip show one downstep.
Pitch realization: from baseline 4, the accented AP is at 3 (downstepped by catathesis) and the unaccented AP stays at 3.
Three-AP ip: accented + accented + unaccented (staircase, Fig. 11).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Two downsteps produce a two-level staircase.
Pitch realization: 4 → 3 → 2 → 2 (descending staircase).
Catathesis blocking: same APs split across two ips. The second ip starts at full pitch range, not at the compressed level.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The register specs are independent per ip.
Each ip starts from its own baseline — catathesis does not leak across the ip boundary. The first ip has pitch [3] (from baseline 4); the second ip independently has [3, 3].
Compare: if there were no ip boundary, all three APs would be in one catathesis chain, producing [3, 2, 2] instead of [3] + [3, 3]. The second AP is at pitch 3 (not 2) because the boundary resets the register.
Construct a CCG Tune from a B&P IntonationPhrase and a pitch accent. The tune's terminal contour is the IP's terminal contour — the same phrase accent + boundary tone decomposition that @cite{steedman-2000} uses for prosodic CCG categories.
Equations
- BeckmanPierrehumbert1986.ipToTune ip accent = { accent := accent, terminal := ip.terminalContour }
Instances For
The terminal contour of a CCG Tune constructed from a B&P IP
is exactly the B&P terminal contour — @cite{steedman-2000}'s
Tune decomposition and B&P's IP decomposition produce the same
TerminalContour by construction.
A declarative IP (L phrase accent, L% boundary tone).
Equations
- One or more equations did not get rendered due to their size.
Instances For
A continuation-rise IP (L phrase accent, H% boundary tone).
Equations
- One or more equations did not get rendered due to their size.
Instances For
A declarative IP has the same terminal contour as @cite{steedman-2000}'s rheme tune (H* L L%).
A continuation-rise IP has the same terminal contour as @cite{steedman-2000}'s theme tune (L+H* L H%).
The ip/φ domain serves two independent functions:
- Catathesis domain (B&P §4): register resets at ip boundaries
- Focus-prosody domain (@cite{kratzer-selkirk-2020} §7): [FoC] = φ-Level-Head
Whether focus marking triggers catathesis depends on the accent inventory: guaranteed in Japanese (all accents are bitonal), not guaranteed in English (H* is monotonal).
In Japanese, [FoC] spellout at φ-level always triggers catathesis: the only accent shape (H*+L) is bitonal. Focus-marking and catathesis are inseparable in the Japanese system.
Proof chain: [FoC] → φ-Level-Head (K&S 34) → pitch accent (head = most prominent) → bitonal (Japanese has only H*+L) → catathesis (B&P §3).
In English, [FoC] spellout at φ-level does NOT guarantee catathesis: the default rheme accent H* is monotonal, so catathesis only occurs when the speaker selects a bitonal accent shape (H*+L, H+L*, L*+H, L+H*).
More catathesis (more bitonal accents) produces lower pitch: replacing a registerless AP with a bitonal-accented one produces pointwise lower-or-equal pitch realization.
Catathesis blocking: realizing an ip from the higher (reset)
starting offset produces pointwise higher-or-equal pitch than
continuing from a compressed offset. When an ip boundary resets the
register to offset n, subsequent pitches are at least as high as
if catathesis had continued from any lower offset m ≤ n.
Direct application of realizePitch_baseline_mono.
Concrete catathesis blocking: a fresh ip starting from offset 4
(reset) yields higher pitches [3, 3] than the same specs continued
from a compressed offset 3, which give [2, 2].
Catathesis register specs only contain TRN.empty (maintain) or
TRN.downstep (lower) — never TRN.upstep (raise). This ensures
catathesis is monotonically compressive.
Japanese catathesis timing: catathesis applies within the accent.
English catathesis timing: catathesis applies after the accent.