[Wur14]: Tense and aspect in English infinitives #
Wurmbrand (Linguistic Inquiry 45(3), 2014) classifies English infinitival complements into three types based on tense-aspect behavior:
- Future irrealis (
decide,want,plan,hope): no independent tense; future orientation comes from a woll-like operator selected by the matrix verb. Example: "Leo decided to read a book" — reading is future of deciding. - Propositional (
believe,claim): NOW-anchored tense. The embedded event is simultaneous with the matrix attitude. Example: "Leo believes Julia to be a princess" — princess-status at believing time. - Restructuring (
try,begin): dependent on matrix tense; embedded event in the same temporal domain as the matrix.
Empirical anchors #
- (1a) "Leo decided to read a book." — future irrealis
- (1b) "Leo believes Julia to be a princess." — propositional
- (2a) "Leo decided to bring the toys tomorrow." — future-irrealis + episodic adverbial OK
- (2b) "*Leo believed Julia to bring the toys right then." — propositional
- episodic adverbial blocks bare infinitive (needs progressive)
Lean encoding #
The InfinitivalTenseClass type is substrate (Minimalist.ExtendedProjection),
shared with Studies/Ostrove2026. Wurmbrand's apparatus — temporal orientation,
woll decomposition, episodic predictions, and the verb classification table — is
study-local below; the empirical examples are generated from
Data/Examples/Wurmbrand2014.json.
Temporal orientation by class #
The temporal orientation of a complement relative to the matrix event.
- futureOriented : TemporalOrientation
Complement event after the matrix event.
- simultaneous : TemporalOrientation
Complement event simultaneous with the matrix event.
- dependent : TemporalOrientation
Complement event's temporal location depends entirely on the matrix.
Instances For
Equations
- Wurmbrand2014.instDecidableEqTemporalOrientation 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
Each infinitival class's predicted temporal orientation.
Equations
- Wurmbrand2014.classOrientation Minimalist.InfinitivalTenseClass.futureIrrealis = Wurmbrand2014.TemporalOrientation.futureOriented
- Wurmbrand2014.classOrientation Minimalist.InfinitivalTenseClass.propositional = Wurmbrand2014.TemporalOrientation.simultaneous
- Wurmbrand2014.classOrientation Minimalist.InfinitivalTenseClass.restructuring = Wurmbrand2014.TemporalOrientation.dependent
Instances For
Woll decomposition #
will = PRES + woll; would = PAST + woll (§2). The tense component undergoes SOT; woll supplies the future orientation.
- tense : Finset Ordering
The tense component (a
Finset Orderingcomparison cell). - hasWoll : Bool
Whether woll is present (future orientation).
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
will = present + woll.
Equations
- Wurmbrand2014.will_ = { tense := Tense.present, hasWoll := true }
Instances For
would = past + woll.
Equations
- Wurmbrand2014.would_ = { tense := Tense.past, hasWoll := true }
Instances For
Plain present (no woll).
Equations
- Wurmbrand2014.plainPresent = { tense := Tense.present, hasWoll := false }
Instances For
Only future-irrealis infinitives contain the future modal woll.
Equations
Instances For
Episodic interpretation predictions (Table 3) #
Availability of bare (nonprogressive) episodic interpretations (§4).
- possible : EpisodicAvailability
Possible: woll supplies an unrestricted future reference time.
- impossible : EpisodicAvailability
Impossible: the attitude holder's NOW is too short for perfective.
- matrixDependent : EpisodicAvailability
Matrix-dependent: possible iff the matrix reference time is large enough.
Instances For
Equations
- Wurmbrand2014.instDecidableEqEpisodicAvailability x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Each class's episodic prediction.
Equations
- Wurmbrand2014.classEpisodicPrediction Minimalist.InfinitivalTenseClass.futureIrrealis = Wurmbrand2014.EpisodicAvailability.possible
- Wurmbrand2014.classEpisodicPrediction Minimalist.InfinitivalTenseClass.propositional = Wurmbrand2014.EpisodicAvailability.impossible
- Wurmbrand2014.classEpisodicPrediction Minimalist.InfinitivalTenseClass.restructuring = Wurmbrand2014.EpisodicAvailability.matrixDependent
Instances For
Verb classification #
A verb classified by its infinitival tense class (Table 4).
- lemma_ : String
The verb lemma.
- tenseClass : Minimalist.InfinitivalTenseClass
Its tense class.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- Wurmbrand2014.want = { lemma_ := "want", tenseClass := Minimalist.InfinitivalTenseClass.futureIrrealis }
Instances For
Equations
- Wurmbrand2014.decide = { lemma_ := "decide", tenseClass := Minimalist.InfinitivalTenseClass.futureIrrealis }
Instances For
Equations
- Wurmbrand2014.plan = { lemma_ := "plan", tenseClass := Minimalist.InfinitivalTenseClass.futureIrrealis }
Instances For
Equations
- Wurmbrand2014.promise = { lemma_ := "promise", tenseClass := Minimalist.InfinitivalTenseClass.futureIrrealis }
Instances For
Equations
- Wurmbrand2014.believe = { lemma_ := "believe", tenseClass := Minimalist.InfinitivalTenseClass.propositional }
Instances For
Equations
- Wurmbrand2014.claim = { lemma_ := "claim", tenseClass := Minimalist.InfinitivalTenseClass.propositional }
Instances For
Equations
- Wurmbrand2014.try_ = { lemma_ := "try", tenseClass := Minimalist.InfinitivalTenseClass.restructuring }
Instances For
Equations
- Wurmbrand2014.begin_ = { lemma_ := "begin", tenseClass := Minimalist.InfinitivalTenseClass.restructuring }
Instances For
Equations
- Wurmbrand2014.manage = { lemma_ := "manage", tenseClass := Minimalist.InfinitivalTenseClass.restructuring }
Instances For
A verb ambiguous between two infinitival tense classes.
- lemma_ : String
- readings : List Minimalist.InfinitivalTenseClass
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Wurmbrand2014.instReprAmbiguousVerb = { reprPrec := Wurmbrand2014.instReprAmbiguousVerb.repr }
expect is ambiguous between future-irrealis and propositional (§3, §4.3).
Equations
- Wurmbrand2014.expect = { lemma_ := "expect", readings := [Minimalist.InfinitivalTenseClass.futureIrrealis, Minimalist.InfinitivalTenseClass.propositional] }
Instances For
seem is restructuring, but propositional with an experiencer (§4.4).
Equations
- Wurmbrand2014.seem = { lemma_ := "seem", readings := [Minimalist.InfinitivalTenseClass.restructuring, Minimalist.InfinitivalTenseClass.propositional] }
Instances For
Per-class classification theorems #
want is future-irrealis → future-oriented complement.
believe is propositional → simultaneous complement.
try is restructuring → dependent on matrix temporal domain.
Derivation theorems #
Propositional NOW-anchoring connects to the attitude eval-time shift:
standardShift sets the embedded eval time to the matrix event time.
Restructuring infinitives lack independent tense: dependent orientation,
the smallest complement size (vP), and no woll.
Future-oriented complements have woll and project a modal (wollP ≈ ModP).
Woll presence correlates exactly with future orientation.
Complement-size hierarchy #
Wurmbrand's theory-internal sizing is wollP > TP > vP/AspP. The substrate
InfinitivalTenseClass.toComplementSize maps future-irrealis and propositional
to the same fseq tier (ModP/TP), so the strict ordering is recorded here via a
study-local rank.
Wurmbrand's complement-size rank: future-irrealis > propositional > restructuring.
Equations
Instances For
Episodic availability tracks complement size: complements with their own temporal elements allow episodic readings; smaller ones are matrix-dependent.