Auxiliary verb constructions: inflection-locus typology #
The auxiliary-verb-construction (AVC) inflection typology of [And06a]:
the semantic head is always the lexical verb, but the inflectional host
varies across five macro-patterns. Graduated from the dissolved Typology/
drawer (the orthogonal be/have-selection typology split off to
Semantics/ArgumentStructure/AuxiliarySelection.lean).
The five patterns #
| Pattern | Infl host | Example |
|---|---|---|
| Aux-headed | AUX | English have eaten, is eating |
| Lex-headed | LEX | Pipil weli ni-nehnemi |
| Doubled | AUX+LEX | Gorum miŋ ne-gaʔ-ru ne-laʔ-ru |
| Split | AUX or LEX | Jakaltek (abs/erg), Finnish neg-aux ei |
| Split/doubled | AUX+LEX | Pipil, Doyayo (Ch 5), Hemba |
Main definitions #
InflPattern— the five-way inflectional-distribution macro-classification.AVCElement— which element(s) of an AVC bear a given property.InflPattern.semanticHead/inflHost/inflOnlyOnPhrasalHead/lvVerbForm.
Per-language AVCDatum instances + Fragment-grounding verification theorems
live in Studies/Anderson2006.lean (paper-anchored data).
Core types #
Anderson's 5-way inflectional pattern typology for AVCs.
- auxHeaded : InflPattern
Inflection hosted on auxiliary; lexical verb is nonfinite. E.g., English will go, French va manger.
- lexHeaded : InflPattern
Inflection hosted on lexical verb; auxiliary is grammaticalized. E.g., Pipil weli ni-nehnemi (AUX uninflected, LV carries person); Doyayo mi¹ (gi²) kpel¹-ko¹ (Ch 3 ex 15a).
- doubled : InflPattern
Inflection appears on both auxiliary and lexical verb. E.g., Gorum miŋ ne-gaʔ-ru ne-laʔ-ru (subject + TAM on both).
- split : InflPattern
Inflection split between AUX and LV (different features on each element, with no overlap). E.g., Jakaltek šk-ach w-ila (absolutive on AUX, ergative on LV); Finnish neg-aux ei (person/number on AUX, connegative + aspect on LV).
- splitDoubled : InflPattern
Some categories on both AUX and LV (doubled), others exclusive to one element (split). [And06a] ch. 5 §5.2 dedicates ~30 pages to this pattern with 30+ language exemplars across §§5.2.1–5.2.3 (Limbu, Manam, Kuot, Doyayo, Mbay, Lamba, Pipil, Persian, Swahili, Panyjima, Kemantney, Oshikwanyama, Shambala, Vinmavis, Nambiquara, Baure, Luganda, Nasioi, Os, Xhosa, ...). Common, not marginal.
Instances For
Equations
- AuxiliaryVerbs.instDecidableEqInflPattern x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- AuxiliaryVerbs.instReprInflPattern = { reprPrec := AuxiliaryVerbs.instReprInflPattern.repr }
Equations
Which element(s) of an AVC bear a given property.
- aux : AVCElement
- lex : AVCElement
- both : AVCElement
Instances For
Equations
- AuxiliaryVerbs.instDecidableEqAVCElement x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- AuxiliaryVerbs.instReprAVCElement = { reprPrec := AuxiliaryVerbs.instReprAVCElement.repr }
Key functions #
The semantic head is always the lexical verb (Anderson's invariant).
Equations
Instances For
Which element hosts inflection in each pattern.
Equations
- AuxiliaryVerbs.InflPattern.auxHeaded.inflHost = AuxiliaryVerbs.AVCElement.aux
- AuxiliaryVerbs.InflPattern.lexHeaded.inflHost = AuxiliaryVerbs.AVCElement.lex
- AuxiliaryVerbs.InflPattern.doubled.inflHost = AuxiliaryVerbs.AVCElement.both
- AuxiliaryVerbs.InflPattern.split.inflHost = AuxiliaryVerbs.AVCElement.both
- AuxiliaryVerbs.InflPattern.splitDoubled.inflHost = AuxiliaryVerbs.AVCElement.both
Instances For
Whether inflection is hosted exclusively on the phrasal head (= AUX). Only aux-headed AVCs have this property: the AUX hosts all inflection and the LV is fully nonfinite. In doubled AVCs, both elements carry inflection, so the phrasal head is not the sole inflectional host.
Equations
- AuxiliaryVerbs.InflPattern.auxHeaded.inflOnlyOnPhrasalHead = true
- AuxiliaryVerbs.InflPattern.lexHeaded.inflOnlyOnPhrasalHead = false
- AuxiliaryVerbs.InflPattern.doubled.inflOnlyOnPhrasalHead = false
- AuxiliaryVerbs.InflPattern.split.inflOnlyOnPhrasalHead = false
- AuxiliaryVerbs.InflPattern.splitDoubled.inflOnlyOnPhrasalHead = false
Instances For
Expected verb form of the lexical verb in each AVC pattern. Aux-headed: LV is nonfinite (infinitive/participle). Lex-headed: LV is finite (carries TAM). Doubled/split/splitDoubled: LV is finite (carries at least some inflection).
Equations
- AuxiliaryVerbs.InflPattern.auxHeaded.lvVerbForm = UD.VerbForm.Inf
- AuxiliaryVerbs.InflPattern.lexHeaded.lvVerbForm = UD.VerbForm.Fin
- AuxiliaryVerbs.InflPattern.doubled.lvVerbForm = UD.VerbForm.Fin
- AuxiliaryVerbs.InflPattern.split.lvVerbForm = UD.VerbForm.Fin
- AuxiliaryVerbs.InflPattern.splitDoubled.lvVerbForm = UD.VerbForm.Fin
Instances For
Invariant theorems #
About InflPattern itself — Fragment-independent substrate facts. Per-language
verification theorems live in Studies/Anderson2006.lean.
Anderson's key insight: the semantic head is always the lexical verb, regardless of inflectional pattern.
In aux-headed AVCs, inflection is exclusively on the phrasal head (AUX).
In lex-headed AVCs, inflection is not on the phrasal head.
In doubled AVCs, inflection appears on both elements, so the phrasal head is not the sole host.
In aux-headed AVCs, the lexical verb is nonfinite.
In lex-headed AVCs, the lexical verb is finite.