Be/Have Auxiliary Selection in European Perfects #
@cite{burzio-1986} @cite{sorace-2000}
Many European languages select between be and have as the perfect auxiliary based on the transitivity/unaccusativity of the lexical verb. The canonical "Auxiliary Selection Hierarchy":
- Unaccusative verbs → be (Italian è arrivato, French est arrivé)
- Unergative/transitive verbs → have (Italian ha mangiato, French a mangé)
English has collapsed this distinction: all verbs take have.
Bridge to Aspect #
Vendler's achievement class (telic, punctual) correlates with unaccusativity: canonical achievements (arrive, die, fall) are unaccusative and select be in split-auxiliary languages.
Types #
Equations
- Phenomena.AuxiliaryVerbs.Selection.instDecidableEqPerfectAux 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
Transitivity class relevant to auxiliary selection.
- unaccusative : TransitivityClass
- unergative : TransitivityClass
- transitive : TransitivityClass
- reflexive : TransitivityClass
Instances For
Equations
- Phenomena.AuxiliaryVerbs.Selection.instDecidableEqTransitivityClass 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
Language-level auxiliary selection rule.
- split : SelectionRule
- haveOnly : SelectionRule
- beOnly : SelectionRule
- mixed : SelectionRule
Instances For
Equations
- Phenomena.AuxiliaryVerbs.Selection.instDecidableEqSelectionRule 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
Functions #
Auxiliary selection driven by a single binary parameter: does the language treat reflexives as BE-selecting (Romance pattern) or HAVE-selecting (German pattern)? Unaccusatives always select BE, unergatives and transitives always select HAVE; the only point of cross-linguistic variation in this small typology is the reflexive row (@cite{burzio-1986}, @cite{sorace-2000}).
Equations
- One or more equations did not get rendered due to their size.
- Phenomena.AuxiliaryVerbs.Selection.selection reflexIsBe Phenomena.AuxiliaryVerbs.Selection.TransitivityClass.unaccusative = Phenomena.AuxiliaryVerbs.Selection.PerfectAux.be
- Phenomena.AuxiliaryVerbs.Selection.selection reflexIsBe Phenomena.AuxiliaryVerbs.Selection.TransitivityClass.unergative = Phenomena.AuxiliaryVerbs.Selection.PerfectAux.have
- Phenomena.AuxiliaryVerbs.Selection.selection reflexIsBe Phenomena.AuxiliaryVerbs.Selection.TransitivityClass.transitive = Phenomena.AuxiliaryVerbs.Selection.PerfectAux.have
Instances For
Canonical (Romance) auxiliary selection: reflexives → be.
Equations
Instances For
German auxiliary selection: reflexives → haben, not sein (@cite{burzio-1986}).
Equations
Instances For
Does this transitivity class canonically select be?
Defined off canonicalSelection so the equivalence is true by
construction.
Equations
Instances For
Equations
- Phenomena.AuxiliaryVerbs.Selection.instDecidablePredTransitivityClassSelectsBe c = id inferInstance
Data #
A cross-linguistic auxiliary selection datum.
- language : String
- selectionRule : SelectionRule
- exampleVerb : String
- transitivityClass : TransitivityClass
- selectedAux : PerfectAux
- gloss : 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.
- Phenomena.AuxiliaryVerbs.Selection.instBEqAuxSelectionDatum.beq x✝¹ x✝ = false
Instances For
Italian arrivare (arrive) — unaccusative, selects essere (@cite{burzio-1986}).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Italian mangiare (eat) — transitive, selects avere (@cite{burzio-1986}).
Equations
- One or more equations did not get rendered due to their size.
Instances For
French arriver (arrive) — unaccusative, selects être (@cite{burzio-1986}).
Equations
- One or more equations did not get rendered due to their size.
Instances For
German ankommen (arrive) — unaccusative, selects sein (@cite{burzio-1986}).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dutch aankomen (arrive) — unaccusative, selects zijn (@cite{sorace-2000}).
Equations
- One or more equations did not get rendered due to their size.
Instances For
English arrive — have-only system, canonical split is collapsed.
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
Theorems #
English arrive breaks the canonical pattern: the verb is unaccusative
yet the language has a have-only perfect system, so the canonical
Romance prediction (.be) and the actually-selected auxiliary (.have)
disagree. This is the data point worth stating as a theorem; the
other previously-listed equalities all reduce to rfl over the
selection lookup table and have been removed.