Gibson 2025: DLM and the Head-Direction Generalization #
@cite{gibson-2025} @cite{dryer-1992} @cite{greenberg-1963} @cite{dryer-haspelmath-2013}
@cite{gibson-2025} argues that Dependency Length Minimization (DLM) explains the head-direction generalization originally documented by @cite{greenberg-1963} and systematized by @cite{dryer-1992}: languages overwhelmingly prefer consistent (harmonic) head direction across construction types, because disharmonic order incurs higher total dependency length on recursive structures.
This file owns Gibson's quantitative argument: the WALS-derived count tables
he uses (Tables 1–3, plus the Single-Word-Exceptions discussion at Table 4),
the per-table harmonic-dominance theorems, the head-direction-generalization
statement over those tables, and the DLM-vs-WALS consistency theorems that
package the central claim. The DLM apparatus itself lives in
Theories/Syntax/DependencyGrammar/Formal/HarmonicOrder.lean.
Cross-tabulation apparatus #
The AlignmentCell / CrossTab 2×2 head-direction tabulation types are
defined here as paper-anchored apparatus rather than substrate, since the
only consumers are this paper plus the Levshina-style gradient extension
(Phenomena/WordOrder/Gradience.lean). They will be promoted to
Typology/WordOrder.lean substrate when a second paper-independent
consumer materialises (e.g., a FOFC.lean, a Hawkins1983.lean, or a
systematic WALS Ch 95/96/97 ingestion that needs the type at substrate
level).
Substrate-derivation evidence: WALS Ch 95 #
fromWALSCh95 constructs a CrossTab directly from
Data.WALS.F95A.allData (verb-object × adposition correlation;
@cite{dryer-haspelmath-2013} Ch 95). This is internal evidence that
Gibson's hand-coded Table 1 corresponds to the substrate-derivable
form: same correlation, same harmonic-dominance conclusion. Counts
differ in magnitude (Gibson 981 = 454+41+14+472; WALS Ch 95 raw =
984 = 456+42+14+472, the residual ~3 absorbed in Gibson's reporting
and ~158 "Other" languages excluded by Gibson). Cell pairings match
exactly: hihf = HI×HF = (VO, postpositions); hfhi = HF×HI = (OV,
prepositions). Phenomena/WordOrder/Studies/DryerHaspelmath2013.lean
has its own aggregate-count ch95_harmonic_dominant theorem at higher
stringency (>16×); chronological dependency rules prohibit DH2013
importing this file, so it is not currently wired through.
A single cell in a 2×2 head-direction cross-tabulation. dir1
and dir2 are the head directions of two construction types being
correlated. The struct does not enforce that dir1 / dir2
originate from genuinely head-direction-bearing constructions;
consumers carry that contract.
- dir1 : HeadDirection
- dir2 : HeadDirection
- count : ℕ
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.
Instances For
A cell is harmonic when both constructions take the same head direction.
Equations
- c.IsHarmonic = (c.dir1 = c.dir2)
Instances For
Equations
A 2×2 cross-tabulation of two head-direction-bearing construction types (e.g., verb-object × adposition). The four cells enumerate the head-initial / head-final combinations.
- name : String
- construction1 : String
- construction2 : String
- hihi : AlignmentCell
- hihf : AlignmentCell
- hfhi : AlignmentCell
- hfhf : AlignmentCell
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Total count of harmonic (diagonal) cells.
Equations
- t.harmonicCount = t.hihi.count + t.hfhf.count
Instances For
Total count of disharmonic (off-diagonal) cells.
Equations
- t.disharmonicCount = t.hihf.count + t.hfhi.count
Instances For
Total number of languages in the table.
Equations
- t.totalCount = t.harmonicCount + t.disharmonicCount
Instances For
Harmonic pairings strictly outnumber disharmonic. A raw-count primitive; serious typological generalisations require sample-bias correction (cf. @cite{dryer-1992}'s genus method).
Equations
- t.IsHarmonicDominant = (t.harmonicCount > t.disharmonicCount)
Instances For
Equations
Gibson Table 1: Verb-Object order × Adposition order (981 languages).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Gibson Table 2: Verb-Object order × Subordinator order (456 languages).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Gibson Table 3: Verb-Object order × Relative clause order (665 languages).
Equations
- One or more equations did not get rendered due to their size.
Instances For
All three Gibson cross-tabulations.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Table 1: harmonic (926) > disharmonic (55).
Table 2: harmonic (393) > disharmonic (63).
Table 3: harmonic (547) > disharmonic (118).
Harmonic cells have matching directions.
Disharmonic cells have mismatched directions.
The head-direction generalization: across all three of Gibson's construction-pair tables, harmonic word-order pairings dominate. The underlying observation goes back to @cite{greenberg-1963} and was systematized by @cite{dryer-1992}; @cite{gibson-2025} argues DLM explains it (consistent head direction keeps recursive spine dependencies local).
Construction types where disharmonic order is common (Gibson's Table 4).
These are cases where the dependent is typically a single word (no recursive subtree), so head direction doesn't affect DLM. Gibson's argument: DLM only cares about direction when subtrees intervene between head and dependent.
- adjN : SingleWordException
adjective-noun: many VO languages have Adj-N (head-final order).
- demN : SingleWordException
demonstrative-noun: many OV languages have Dem-N (head-initial order).
- intensAdj : SingleWordException
intensifier-adjective: "very tall" is head-initial in many OV languages.
- negVerb : SingleWordException
negator-verb: "not run" is head-initial in many OV languages.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Phenomena.WordOrder.Studies.Gibson2025.instDecidableEqSingleWordException x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
All single-word exceptions from Gibson Table 4.
Equations
- One or more equations did not get rendered due to their size.
Instances For
These exceptions all involve dependents that are typically single words (leaves in the dependency tree), not recursive phrases.
Equations
- Phenomena.WordOrder.Studies.Gibson2025.isSingleWordDependent Phenomena.WordOrder.Studies.Gibson2025.SingleWordException.adjN = True
- Phenomena.WordOrder.Studies.Gibson2025.isSingleWordDependent Phenomena.WordOrder.Studies.Gibson2025.SingleWordException.demN = True
- Phenomena.WordOrder.Studies.Gibson2025.isSingleWordDependent Phenomena.WordOrder.Studies.Gibson2025.SingleWordException.intensAdj = True
- Phenomena.WordOrder.Studies.Gibson2025.isSingleWordDependent Phenomena.WordOrder.Studies.Gibson2025.SingleWordException.negVerb = True
Instances For
Equations
- One or more equations did not get rendered due to their size.
WALS confirms harmonic order is more common, for a given table.
Equations
Instances For
Combined consistency check: DLM prediction and WALS observation agree.
Equations
Instances For
For all three of Gibson's construction pairs, DLM predicts harmonic is cheaper AND WALS confirms harmonic is more common. This is @cite{gibson-2025}'s central claim: DLM explains the head-direction generalization.
Per-table DLM-WALS consistency theorems.
Build a CrossTab for WALS Ch 95 (verb-object × adposition) by
counting datapoints in each of the four cells of
@cite{dryer-haspelmath-2013}'s WALS Ch 95. The same underlying
correlation viewed via raw WALS counts rather than Gibson's
hand-coded snapshot.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The substrate-derived Ch 95 CrossTab is harmonic-dominant — the
same fact voAdposition_harmonic_dominant proves over Gibson's
hand-coded counts, restated over the WALS-derived form. The
substrate-side claim is harmonicCount > disharmonicCount; the
aggregate-count form in DryerHaspelmath2013.ch95_harmonic_dominant
proves the stronger 16-to-1 dominance.