Inverse Voice Construction Family #
@cite{collins-2005} @cite{storment-2025} @cite{storment-2026}
A family abstraction over voice phenomena unified by smuggling (@cite{storment-2026}, §4.3 + §6 + §7): passive, dative shift, quotative inversion (QI), locative inversion (LI), middles, causatives, antipassives. Each is "an information-structurally marked configuration in which a given thematic argument is mapped onto an A-position that would not be accessible to the same argument in a standard unmarked configuration" (@cite{storment-2026}, eq. 121).
The unifying syntactic mechanism: a non-phase Voice head permits smuggling of a constituent containing the thematic argument to Spec,VoiceP, making it accessible to T⁰ for Case licensing.
This file abstracts the family invariant and provides instances for the constructions documented in @cite{storment-2026}. Specific paper analyses (Collins 2005 for passive; Storment 2026 for QI/LI) live in their respective Studies files; this file is the shared substrate.
Tag identifying which inverse-voice construction is at issue. Storment §4.3 lists these as the unified family.
- passive : InverseVoiceKind
- dativeShift : InverseVoiceKind
- quotativeInversion : InverseVoiceKind
- locativeInversion : InverseVoiceKind
- middle : InverseVoiceKind
- causative : InverseVoiceKind
- antipassive : InverseVoiceKind
Instances For
Equations
- Minimalist.instDecidableEqInverseVoiceKind x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- Minimalist.instReprInverseVoiceKind = { reprPrec := Minimalist.instReprInverseVoiceKind.repr }
Equations
- One or more equations did not get rendered due to their size.
Instances For
An inverse-voice construction is parameterized by its kind, the Voice head it projects, and a flag indicating whether the moved constituent's licensing succeeds (depends on having a single DP inside the smuggled constituent — Storment §5 transitivity constraint).
- kind : InverseVoiceKind
- voice : VoiceHead
- satisfiesTransitivityConstraint : Bool
True iff the constituent that smuggles to Spec,VoiceP contains at most one Case-needing DP (Storment §5 transitivity constraint). When false, the derivation crashes on Case licensing.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
The family invariant: every inverse-voice construction projects a Voice head that permits smuggling. Used as the well-formedness predicate.
Equations
Instances For
A construction is licensed iff its Voice permits smuggling AND the transitivity constraint is satisfied. The two conditions are independent, mirroring Storment's analysis in §4 and §5.
Equations
- c.licensed = (c.voiceWellFormed && c.satisfiesTransitivityConstraint)
Instances For
An agentive Voice can never appear in an inverse-voice construction: the family invariant fails.
Transitivity-constraint failure alone blocks licensing even with a smuggling-compatible Voice.
Instances #
QI/LI from @cite{storment-2026}, passive from @cite{collins-2005}. Middle (Gotah 2024), dative shift (Collins 2021/2024), and causatives (Belletti 2017) are accommodated by the family abstraction but await their own study files before adding canonical instances here.
Quotative inversion in its canonical form: anticausative Voice permits smuggling of the VP containing the quotative operator.
Equations
- Minimalist.qiCanonical = { kind := Minimalist.InverseVoiceKind.quotativeInversion, voice := Minimalist.voiceAnticausative, satisfiesTransitivityConstraint := true }
Instances For
Locative inversion in its canonical form: same Voice mechanism as QI per @cite{storment-2026}, §6.
Equations
- Minimalist.liCanonical = { kind := Minimalist.InverseVoiceKind.locativeInversion, voice := Minimalist.voiceAnticausative, satisfiesTransitivityConstraint := true }
Instances For
The passive in its canonical form (@cite{collins-2005}): Voice headed by by permits smuggling of PartP containing the underlying object. Passive Voice rather than anticausative — Collins's §4 proposes that by is the Voice head, distinct from the anticausative Voice projected by unaccusatives.
Equations
- Minimalist.passiveCanonical = { kind := Minimalist.InverseVoiceKind.passive, voice := Minimalist.voicePassive, satisfiesTransitivityConstraint := true }
Instances For
QI, LI, and passive are all licensed inverse-voice constructions. QI and LI share a Voice head (anticausative); passive uses the by-headed Voice. Three constructions, two Voice heads, one smuggling mechanism.