Osborne & Groß (2012): Constructions Are Catenae — Data #
Dependency trees from Osborne & Groß (2012), "Constructions are catenae: Construction Grammar meets Dependency Grammar" (Cognitive Linguistics 23(1):165–216).
Each tree is a concrete linguistic example analyzed with dependency
structure. The catena proofs connecting these trees to the paper's
theoretical claims are in DG_OsborneGross2012Bridge.lean.
Construction Types #
The paper demonstrates catenae across five construction types:
- Idioms (§3): fixed V+N combinations where the idiomatic words form a catena skipping the determiner
- Light verb constructions (§4): semantically bleached verb + meaningful noun, same dependency pattern as idioms
- Verb chains (§5): auxiliary hierarchies forming connected chains
- Displacement (§7): topicalized element + governor connected despite linear separation
- Comparative correlative (§6): each correlative clause forms a catena
The five construction types analyzed in @cite{osborne-gross-2012}.
- idiom : ConstructionType
- lightVerbConstruction : ConstructionType
- verbChain : ConstructionType
- displacement : ConstructionType
- comparativeCorrelative : ConstructionType
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
"spill the beans" (p. 181) — idiom {spill, beans} skips determiner.
Words: spill(0) the(1) beans(2) Deps: spill(0) → beans(2:obj), beans(2) → the(1:det) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"give the sack" (p. 183) — same V-det-N pattern.
Words: give(0) the(1) sack(2) Deps: give(0) → sack(2:obj), sack(2) → the(1:det) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"kick the bucket" (p. 181) — decoding idiom (FKO1988 §1.1.1).
Words: kick(0) the(1) bucket(2) Deps: kick(0) → bucket(2:obj), bucket(2) → the(1:det) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"pull some strings" (p. 183) — idiom {pull, strings} skips quantifier.
Cf. Catena.pulledSomeStrings for the past-tense variant.
Words: pull(0) some(1) strings(2) Deps: pull(0) → strings(2:obj), strings(2) → some(1:det) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"take a bath" (p. 187) — LVC {take, bath} skips determiner.
The verb is semantically bleached; the V+N combination carries idiosyncratic meaning not predictable from its parts.
Words: take(0) a(1) bath(2) Deps: take(0) → bath(2:obj), bath(2) → a(1:det) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"have a look" (p. 187) — same LVC pattern.
Words: have(0) a(1) look(2) Deps: have(0) → look(2:obj), look(2) → a(1:det) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"give a yell" (p. 187) — same LVC pattern.
Words: give(0) a(1) yell(2) Deps: give(0) → yell(2:obj), yell(2) → a(1:det) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"He will have helped" — 3-element verb chain (p. 190).
In Osborne's DG, auxiliaries form a hierarchical chain (not UD-flat): will governs have, have governs helped. The verb chain is a catena but NOT a constituent — the subtree of will includes "he".
Words: he(0) will(1) have(2) helped(3) Deps: will(1) → he(0:nsubj), will(1) → have(2:dep), have(2) → helped(3:dep) Construction nodes: {1, 2, 3}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"She will have been doing it" — 4-element verb chain (p. 190, ex. 19b).
The full chain {will, have, been, doing} = {1,2,3,4} is a catena. The subject "she" and object "it" break it up linearly, but the chain remains connected in the dependency tree.
Words: she(0) will(1) have(2) been(3) doing(4) it(5) Deps: will(1) → she(0:nsubj), will(1) → have(2:dep), have(2) → been(3:dep), been(3) → doing(4:dep), doing(4) → it(5:obj) Construction nodes: {1, 2, 3, 4}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"Beans she spilled" — topicalization (p. 200).
The displaced element "beans" and its governor "spilled" form a catena despite being separated by "she" in the linear string. This is also a risen catena (see Discontinuity.lean): connected in the dependency tree but non-contiguous in linear order.
Words: beans(0) she(1) spilled(2) Deps: spilled(2) → beans(0:obj), spilled(2) → she(1:nsubj) Construction nodes: {0, 2}
Equations
- One or more equations did not get rendered due to their size.
Instances For
"The more you eat the fatter you get" — comparative correlative (p. 194, ex. 23a).
The CC is a formal idiom (FKO1988 §1.1.3): a productive syntactic pattern with non-compositional semantics. Each correlative clause forms a catena, and the apodosis is NOT a constituent.
Words: the(0) more(1) you(2) eat(3) the(4) fatter(5) you(6) get(7) Deps: get(7) → eat(3:advcl), eat(3) → you(2:nsubj), eat(3) → more(1:advmod), more(1) → the(0:det), get(7) → you(6:nsubj), get(7) → fatter(5:xcomp), fatter(5) → the(4:det) Protasis nodes: {0, 1, 2, 3} Apodosis nodes: {4, 5, 6, 7}
Equations
- One or more equations did not get rendered due to their size.
Instances For
Bridge content (merged from DG_OsborneGross2012Bridge.lean) #
Bridge: Osborne & Groß (2012) DG Catenae → CxG Constructions #
@cite{fillmore-kay-oconnor-1988} @cite{osborne-gross-2012}
Connects the dependency trees from Studies/OsborneGross2012/Data.lean
to the catena theory from Catena.lean and the CxG types from
ConstructionGrammar.Basic and FillmoreKayOConnor1988.
Verified Claims #
Claim 1 (p. 176): Every construction type — idioms, LVCs, verb chains, displacement, comparative correlatives — corresponds to a catena. All 10 example trees are verified. All non-trivial constructions are non-constituent catenae, demonstrating that the catena concept is needed.
Claim 2 (p. 176): When a more fixed construct (idiom, LVC) is broken up by a less fixed one (NP), both form catenae. Verified for all 7 V-det-N examples and the CC's two clauses.
CxG ↔ DG Bridge #
Four CatenalCx instances covering the full specificity spectrum
(lexicallySpecified → partiallyOpen → fullyAbstract), connecting CxG
Construction descriptions to DG catena witnesses.
FKO1988 IdiomType classification is bridged to catena verification:
substantive decoding idioms ("kick the bucket") and formal idioms
(the comparative correlative) are both catenae.
3-element chain {will, have, helped} = {1,2,3}.
4-element chain {will, have, been, doing} = {1,2,3,4}.
The full VP {will, have, been, doing, it} = {1,2,3,4,5} is a catena but not a constituent — the subject "she" prevents it.
Protasis = {the, more, you, eat} = {0,1,2,3}.
Apodosis = {the, fatter, you, get} = {4,5,6,7}.
Protasis IS a constituent (subtree of eat = {eat, you, more, the}).
Degree markers {the, more} and {the, fatter} each form catenae.
Claim 1 (Osborne & Groß 2012, p. 176): Constructions are catenae.
Verified across all five construction types, 10 example trees total.
All non-constituent constructions: these require the catena concept — a constituent-based framework cannot represent any of them.
Claim 2: when a more fixed construct (idiom, LVC) is broken up by a less fixed one (NP), the words of both always form catenae.
In each V-det-N tree, the construction {V, N} = {0, 2} is a catena AND the intervening NP {det, N} = {1, 2} is also a catena. The NP breaks up the construction, but catena-hood is preserved for both participants.
For the CC, the protasis and apodosis interleave at the sentence level: the apodosis depends on the protasis (advcl), yet both form catenae.
Claim 2 (Osborne & Groß 2012, p. 176): When a more fixed construct is broken up by a less fixed one, both form catenae.
Verified for all 7 V-det-N examples (idioms + LVCs) and the CC's two clauses. Each pair shows: construction catena ∧ intervening catena.
Each construction type is represented as a CatenalCx: a CxG
Construction description paired with a DG tree and catena proof.
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
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
CatenalCx instances cover the full specificity spectrum.
FKO1988's IdiomType classification (interpretability × grammaticality ×
formality) is bridged to catena verification. Both ends of the formality
spectrum — substantive idioms and formal idioms — are catenae.
"kick the bucket" is a substantive decoding idiom in FKO1988's typology.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The CC is a formal idiom in FKO1988's typology (§1.2.1).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Both substantive and formal idioms are catenae: the idiom classification does not affect catena-hood. Substantive idiom {kick, bucket} and formal idiom protasis {the, more, you, eat} are both catenae.
Bridge to FKO1988 CC: the comparativeCorrelative construction from
FKO1988 matches the CC tree verified here. Both describe the same
formal idiom — FKO1988 provides the CxG description, Osborne & Groß
provide the DG catena analysis.