Government in Dependency Grammar #
@cite{osborne-2019}
Formalizes government (@cite{osborne-2019}, Ch 4 §4.8, Ch 5): the mechanism by which a head determines the morphosyntactic form of its dependent.
Government is distinct from:
- Selection: what semantic type the head requires (animate, proposition, etc.)
- Subcategorization: which argument slots the head has
- Government: what morphosyntactic form the head requires (case, verb form)
Key Insight #
The same valency frame (transitive verb taking two NP arguments) can have different government patterns: "want to go" vs "enjoy swimming" — same slot count, different morphological requirements on the complement.
Bridges #
- →
CRDC.lean: government complementsValencyFrame— valency says WHAT slots exist, government says HOW they're filled - →
HeadCriteria.lean: government is criterion 5 (morphological determination) — the governor is the head - →
Core/Basic.lean:ArgSlothascatanddepType; government adds morphological form constraints
A morphosyntactic feature that a head can govern on its dependent. @cite{osborne-2019}.
- case_ : GovernedFeature
- vform : GovernedFeature
- mood : GovernedFeature
- finiteness : GovernedFeature
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
A government requirement: head requires dependent to have specific feature value. @cite{osborne-2019}.
- headCat : UD.UPOS
- depRel : UD.DepRel
- feature : GovernedFeature
- requiredValue : String
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
Verb + to-infinitive: "want to go" — want governs infinitival form. @cite{osborne-2019}.
Equations
- DepGrammar.Government.govVerbInfinitive = { headCat := UD.UPOS.VERB, depRel := UD.DepRel.xcomp, feature := DepGrammar.Government.GovernedFeature.vform, requiredValue := "infinitive" }
Instances For
Verb + bare infinitive: "make him go" — make governs base form. @cite{osborne-2019}.
Equations
- DepGrammar.Government.govVerbBareInf = { headCat := UD.UPOS.VERB, depRel := UD.DepRel.xcomp, feature := DepGrammar.Government.GovernedFeature.vform, requiredValue := "base" }
Instances For
Verb + gerund: "enjoy swimming" — enjoy governs gerund form. @cite{osborne-2019}.
Equations
- DepGrammar.Government.govVerbGerund = { headCat := UD.UPOS.VERB, depRel := UD.DepRel.xcomp, feature := DepGrammar.Government.GovernedFeature.vform, requiredValue := "gerund" }
Instances For
Verb + finite that-clause: "think that..." — think governs finite complement. @cite{osborne-2019}.
Equations
- DepGrammar.Government.govVerbFinite = { headCat := UD.UPOS.VERB, depRel := UD.DepRel.ccomp, feature := DepGrammar.Government.GovernedFeature.finiteness, requiredValue := "finite" }
Instances For
Preposition + accusative: "with him/*he" — preposition governs accusative case. @cite{osborne-2019}.
Equations
- DepGrammar.Government.govPrepAcc = { headCat := UD.UPOS.ADP, depRel := UD.DepRel.obj, feature := DepGrammar.Government.GovernedFeature.case_, requiredValue := "acc" }
Instances For
All English government requirements from @cite{osborne-2019}.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Match a governed feature against a word's feature bundle. Returns true if the word has the required value.
Equations
- One or more equations did not get rendered due to their size.
- DepGrammar.Government.matchGovFeature w DepGrammar.Government.GovernedFeature.finiteness reqVal = match w.features.finite with | true => reqVal == "finite" | false => reqVal == "nonfinite"
- DepGrammar.Government.matchGovFeature w DepGrammar.Government.GovernedFeature.mood reqVal = true
Instances For
Check if a dependency edge satisfies its government requirements.
Equations
- One or more equations did not get rendered due to their size.
Instances For
A government pattern: a verb with its government requirements.
Distinct from CRDC.ValencyFrame which captures WHAT dependents appear.
- verb : String
- requirements : List GovRequirement
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
"want" governs infinitival complement: "want to go"
Equations
- DepGrammar.Government.wantGov = { verb := "want", requirements := [DepGrammar.Government.govVerbInfinitive] }
Instances For
"enjoy" governs gerund complement: "enjoy swimming"
Equations
- DepGrammar.Government.enjoyGov = { verb := "enjoy", requirements := [DepGrammar.Government.govVerbGerund] }
Instances For
"think" governs finite complement: "think that..."
Equations
- DepGrammar.Government.thinkGov = { verb := "think", requirements := [DepGrammar.Government.govVerbFinite] }
Instances For
"make" governs bare infinitive: "make him go"
Equations
- DepGrammar.Government.makeGov = { verb := "make", requirements := [DepGrammar.Government.govVerbBareInf] }
Instances For
Government and valency are orthogonal: valency says WHAT dependents, government says WHAT FORM. @cite{osborne-2019}. A verb can have the same valency (transitive, taking xcomp) but different government (infinitive vs gerund complement).
"want to go" and "enjoy swimming" — both take a VP complement (same valency: verb + xcomp), but want requires infinitive while enjoy requires gerund.
"She wants to go" — verb governs infinitival complement. Words: she(0) wants(1) to(2) go(3) Deps: wants → she (nsubj), wants → go (xcomp), go → to (mark)
Equations
- One or more equations did not get rendered due to their size.
Instances For
"She enjoys swimming" — verb governs gerund complement. Words: she(0) enjoys(1) swimming(2) Deps: enjoys → she (nsubj), enjoys → swimming (xcomp)
Equations
- One or more equations did not get rendered due to their size.
Instances For
"with him" — preposition governs accusative case. Words: with(0) him(1) Deps: with → him (obj)
Equations
- One or more equations did not get rendered due to their size.
Instances For
"with he" — preposition government violation (nominative instead of accusative).
Equations
- One or more equations did not get rendered due to their size.
Instances For
"with him" satisfies case government (accusative).
"with he" violates case government (nominative instead of accusative).
"She wants to go" satisfies infinitive government.
"She enjoys swimming" satisfies gerund government.
Bridge → CRDC.lean: Same valency frame can have different government. Both "want" and "enjoy" are transitive (take xcomp), but differ in government. Valency frame (what slots exist) is independent of government (how slots are realized morphologically).
Bridge → HeadCriteria.lean: Government is one of the six head criteria (criterion 5: morphological determination). The governor is the head. Core arguments satisfy all 6 criteria including government.
Bridge → Core/Basic.lean: ArgSlot captures what relation and direction
a dependent has. Government adds a morphological dimension: the slot for
xcomp is the same regardless of whether the governed form is infinitive
or gerund.
Government requirements are distinct across all five English patterns.