Dunn (2025): Syntactic Variation from Individuals to Populations #
[Dun25] (Cambridge Elements in Construction Grammar) models syntactic
variation across individuals, populations (dialects), and contexts
(registers) in a computational CxG: constructions are sequences of
slot-constraints at the LEX/SYN/SEM levels (the SlotFiller levels of
ConstructionGrammar), and an individual's grammar is a frequency
profile over constructions. Formalized here: the frequency-profile
grammar (Grammar), the Element's centrality strata (central = more
than one standard deviation above the mean frequency; peripheral =
below the mean), and the cosine similarity underlying its
grammar-distance pipeline. The corpus case studies — classifier-based
variation detection, feature weighting, z-standardization of distances,
and the induced first- to fourth-order construction hierarchy — are
empirical pipeline, not formalized.
Slot-constraints at three levels #
The Element's example (3): a late-stage noun-phrase construction whose
slot-constraints draw on all three sources — [ SEM:141 ⟨which–whereas⟩ – SYN:66 ⟨shadiest–silliest⟩ – LEX: "person" ] — producing definite noun
phrases like "the worst person" and "the happiest person". The induced
SYN category, glossed by its superlative-adjective exemplars, is rendered
ADJ.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Example (3) mixes open (SEM, SYN) and fixed (LEX) slots.
Grammars as frequency profiles #
An individual's grammar: a nonnegative frequency profile over constructions. The weights are relative frequencies, not probabilities — no normalization is imposed.
- freq : C → ℚ
Usage frequency of each construction.
Frequencies are nonnegative.
Instances For
A construction is central when its frequency is more than one standard deviation above the inventory mean — the Element's operationalization of the centrality strata.
Instances For
A construction is peripheral when its frequency is below the inventory mean.
Equations
- g.IsPeripheral inv c = (g.freq c < g.meanFreq inv)
Instances For
Squared characterization of centrality: above the mean, with squared
deviation exceeding the variance. Keeps centrality decidable in ℚ.
Equations
- g.instDecidableIsPeripheral inv c = Dunn2025.Grammar.instDecidableIsPeripheral._aux_1 g inv c
The strata are disjoint: no construction is both central and peripheral.
Similarity between grammars #
Cosine similarity of two frequency profiles over a shared inventory — the inner-product measure underlying the Element's standardized cosine-distance pipeline.
Equations
Instances For
Cosine distance: the dissimilarity the Element's pipeline standardizes and ranks.
Equations
- p.cosineDist q inv = 1 - p.cosineSim q inv
Instances For
A nonzero profile is at distance 0 from itself.