The resultative construction family #
[GJ04]'s four-way resultative family — causative or noncausative, with a property or path result phrase — as a dual subevent structure: a verbal subevent related to a constructional subevent, with fusion linking verb meaning to constructional contribution.
Main definitions #
ResultativeSubconstruction: the 2 × 2 family, with its derived subevent structure (constructionalDesc) and constructions (toConstruction,resultativeNetwork)SubeventDesc,DualSubevent,SubeventRelation: dual subevent structureResultativeEntry,ResultativeEntry.fusedMC: a verb in a subconstruction, and its fused meaningfarSatisfied,rolesCoherent,temporalConstraintSatisfied: the paper's three substantive constraints
Core types #
The kind of subevent in a resultative.
- verbal : SubeventKind
From the verb's lexical meaning (e.g., hammering, kicking)
- constructional : SubeventKind
From the construction (CAUSE + BECOME/GO)
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ConstructionGrammar.Resultatives.instDecidableEqSubeventKind x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
How the verbal and constructional subevents are related ([GJ04] §3).
- means : SubeventRelation
The verbal subevent is the means of the constructional one — the default for all four core subconstructions: in "hammer the metal flat", hammering is the means of causing flatness.
- result : SubeventRelation
The verbal subevent results from the constructional one, as in sound-emission ("the trolley rumbled through the tunnel", ex. 17a) and disappearance resultatives (ex. 21a).
- instance_ : SubeventRelation
The verbal subevent is an instance of the constructional one, as in the follow-type cases ("Bill followed the thief into the library", ex. 50a).
- coOccurrence : SubeventRelation
The subevents merely co-occur, as in the way construction ("the car honked its way down the road", ex. 19a).
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ConstructionGrammar.Resultatives.instDecidableEqSubeventRelation 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
Equations
- ConstructionGrammar.Resultatives.instDecidableEqRPType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
The four subconstructions of the resultative family: causative or noncausative, crossed with a property or path result phrase ([GJ04] §2, summarized as (97)).
- causativeProperty : ResultativeSubconstruction
- causativePath : ResultativeSubconstruction
- noncausativeProperty : ResultativeSubconstruction
- noncausativePath : ResultativeSubconstruction
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ConstructionGrammar.Resultatives.instDecidableEqResultativeSubconstruction x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Whether a subconstruction is causative.
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.isCausative = true
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.isCausative = true
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.isCausative = false
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.isCausative = false
Instances For
Whether a subconstruction has a property (vs path) RP.
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.isPropertyRP = true
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.isPropertyRP = false
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.isPropertyRP = true
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.isPropertyRP = false
Instances For
The RP type of a subconstruction.
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.rpType = ConstructionGrammar.Resultatives.RPType.property
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.rpType = ConstructionGrammar.Resultatives.RPType.path
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.rpType = ConstructionGrammar.Resultatives.RPType.property
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.rpType = ConstructionGrammar.Resultatives.RPType.path
Instances For
Description of a subevent via event-structural features.
The two booleans encode the presence of CAUSE and BECOME/GO operators
in the subevent's event template (cf. Template in EventStructure.lean).
Verbal subevents are typically ⟨false, false⟩ (bare manner/activity);
constructional subevents are ⟨true, true⟩ (causative) or ⟨false, true⟩
(noncausative change-of-state/motion).
- hasCause : Bool
Whether CAUSE is part of this subevent
- hasBecome : Bool
Whether BECOME/GO is part of this subevent
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ConstructionGrammar.Resultatives.instBEqSubeventDesc.beq { hasCause := a, hasBecome := a_1 } { hasCause := b, hasBecome := b_1 } = (a == b && a_1 == b_1)
- ConstructionGrammar.Resultatives.instBEqSubeventDesc.beq x✝¹ x✝ = false
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
The dual subevent structure of a resultative ([GJ04] §3, the analysis in 14 and 16).
- verbal : SubeventDesc
The verbal subevent (from the verb's lexical semantics)
- constructional : SubeventDesc
The constructional subevent (from the construction)
- relation : SubeventRelation
How the subevents are related
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
- ConstructionGrammar.Resultatives.instBEqDualSubevent.beq x✝¹ x✝ = false
Instances For
Derived constructional subevent #
The constructional subevent's event-structural features are fully determined by the subconstruction type: causative subconstructions have CAUSE + BECOME; noncausative subconstructions have BECOME only. Verbal subevents are always bare (no CAUSE, no BECOME) — the manner comes from the verb's lexical semantics, not from event-structural operators.
The constructional subevent description a subconstruction determines: CAUSE exactly for the causatives, BECOME for all four.
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.constructionalDesc = { hasCause := true, hasBecome := true }
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.constructionalDesc = { hasCause := true, hasBecome := true }
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.constructionalDesc = { hasBecome := true }
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.constructionalDesc = { hasBecome := true }
Instances For
The verbal subevent is always a bare manner/activity (no CAUSE, no BECOME).
Instances For
Causative subconstructions have CAUSE in their constructional subevent.
Noncausative subconstructions lack CAUSE.
All subconstructions have BECOME in the constructional subevent.
Bridge to event structure templates #
[GJ04]'s constructional subevent maps to Rappaport Hovav & Levin's event structure templates: causative → accomplishment template, noncausative → achievement template. The hasCause/hasBecome features of SubeventDesc are exactly Template.HasCause/Template.HasResultState.
Map subconstruction to the constructional subevent's event template.
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.constructionalTemplate = ArgumentStructure.EventStructure.Template.accomplishment
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.constructionalTemplate = ArgumentStructure.EventStructure.Template.accomplishment
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.constructionalTemplate = ArgumentStructure.EventStructure.Template.achievement
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.constructionalTemplate = ArgumentStructure.EventStructure.Template.achievement
Instances For
The derived hasCause agrees with Template.HasCause.
The derived hasBecome agrees with Template.HasResultState.
Boundedness and aspect #
Whether an RP denotes a bounded endpoint.
Property RPs are typically bounded (reaching an endstate), but comparative/gradual APs ("hotter and hotter", "ever flatter") create unbounded property RPs (§4.1). Path RPs are bounded iff the goal is specific ("into the field" = bounded; "along the road" = unbounded).
- bounded : Boundedness
- unbounded : Boundedness
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ConstructionGrammar.Resultatives.instDecidableEqBoundedness x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Object selection (§2 of [GJ04], ex. 7–9) #
Within transitive resultatives, the object may be independently selected by the verb (selected) or licensed only by the construction (unselected). A special case of unselected: fake reflexives, where the object is a reflexive pronoun that cannot alternate with other NPs.
How the postverbal NP is selected (§2).
- selected : ObjectSelection
Verb independently selects the object: "The gardener watered the flowers flat" (7a)
- unselected : ObjectSelection
Construction licenses the object (verb doesn't take it independently): "They drank the pub dry" (cf. *They drank the pub)
- fakeReflexive : ObjectSelection
Special unselected: reflexive object that cannot alternate with other NPs: "We yelled ourselves hoarse" (cf. *We yelled Harry hoarse) (9a)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ConstructionGrammar.Resultatives.instDecidableEqObjectSelection x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- ConstructionGrammar.Resultatives.instBEqObjectSelection.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Intransitive resultatives have no object selection.
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.defaultObjectSelection = some ConstructionGrammar.Resultatives.ObjectSelection.selected
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.defaultObjectSelection = some ConstructionGrammar.Resultatives.ObjectSelection.selected
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.defaultObjectSelection = none
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.defaultObjectSelection = none
Instances For
Resultative entry #
A resultative entry: a verb in a subconstruction, with aspectual and selectional features. The dual subevent structure is derived from the subconstruction, and the Levin class feeds compositional fusion.
- verb : String
The verb form
- subconstruction : ResultativeSubconstruction
Which subconstruction
- subeventRelation : SubeventRelation
How the subevents are related (default: MEANS for core subconstructions)
- rpBoundedness : Boundedness
Boundedness of the result phrase
- bareVerbClass : Features.VendlerClass
Vendler class of the bare verb (without resultative)
- objectSelection : Option ObjectSelection
How the postverbal NP is selected (transitive only)
- levinClass : ArgumentStructure.LevinClass
Levin class of the verb, for MeaningComponents derivation
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.
- ConstructionGrammar.Resultatives.instBEqResultativeEntry.beq x✝¹ x✝ = false
Instances For
The dual subevent structure of an entry.
Equations
- e.dualSubevent = { verbal := ConstructionGrammar.Resultatives.verbalSubeventDesc, constructional := e.subconstruction.constructionalDesc, relation := e.subeventRelation }
Instances For
The verb's inherent meaning components, from its Levin class.
Equations
Instances For
Aspectual profile (§4 of [GJ04], Principle 27) #
The resultative's aspect is derived compositionally:
- Always dynamic (involves change)
- Always durative (extends over time)
- Telic iff the RP denotes a bounded path/property
The aspectual profile of a resultative, from RP boundedness.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The Vendler class of a resultative.
Equations
Instances For
Semantic roles and argument licensing #
Uses the canonical ThetaRole from the linking interface rather than
a paper-specific enum. [GJ04]'s four
resultative-relevant roles map to: agent, patient, theme, goal
(= "resultGoal" in their terminology).
An argument with its source (verb or construction).
- role : ThetaRole
The semantic role
- fromVerb : Bool
Whether this argument comes from the verb
- fromConstruction : Bool
Whether this argument comes from the construction
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
- ConstructionGrammar.Resultatives.instBEqArgSource.beq x✝¹ x✝ = false
Instances For
Whether an argument is fused (shared between verb and construction).
Equations
- a.isFused = (a.fromVerb && a.fromConstruction)
Instances For
Full Argument Realization (FAR) — Principle 37, §6.1 #
All obligatory arguments of both the verb and the construction must be syntactically realized. Arguments shared between verb and construction fuse into a single syntactic position.
Check FAR: every role's source is accounted for.
Equations
- ConstructionGrammar.Resultatives.farSatisfied args = args.all fun (a : ConstructionGrammar.Resultatives.ArgSource) => a.fromVerb || a.fromConstruction
Instances For
Semantic Coherence Principle — Principle 44, §6.2 #
A verb role rV and a construction role rC may fuse only if rV is construable as an instance of rC.
Which role pairs are coherent for fusion (Principle 44).
Agent can fuse with agent; patient with patient or theme; theme with patient or theme; goal with goal. All other combinations (experiencer, instrument, stimulus, source) are incoherent in the resultative construction.
Equations
- ConstructionGrammar.Resultatives.rolesCoherent ThetaRole.agent ThetaRole.agent = true
- ConstructionGrammar.Resultatives.rolesCoherent ThetaRole.patient ThetaRole.patient = true
- ConstructionGrammar.Resultatives.rolesCoherent ThetaRole.patient ThetaRole.theme = true
- ConstructionGrammar.Resultatives.rolesCoherent ThetaRole.theme ThetaRole.patient = true
- ConstructionGrammar.Resultatives.rolesCoherent ThetaRole.theme ThetaRole.theme = true
- ConstructionGrammar.Resultatives.rolesCoherent ThetaRole.goal ThetaRole.goal = true
- ConstructionGrammar.Resultatives.rolesCoherent rV rC = false
Instances For
Check semantic coherence: all fused arguments have coherent roles.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Temporal constraint (§4.2) #
Temporal ordering between subevents is constrained by the subevent relation:
- MEANS: The verbal subevent must temporally overlap with or precede the constructional subevent. Constructional-first is ruled out because you cannot achieve a result before performing the means to it.
- RESULT: The constructional subevent CAN precede the verbal subevent. E.g., "The door banged open" — the opening (constructional) precedes the banging (verbal result of the motion).
- INSTANCE/CO-OCCURRENCE: Simultaneity expected (the verbal IS the constructional, or they merely co-occur).
Temporal ordering between subevents.
- verbalFirst : TemporalOrder
- simultaneous : TemporalOrder
- constructionalFirst : TemporalOrder
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ConstructionGrammar.Resultatives.instDecidableEqTemporalOrder x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Check the temporal constraint given the subevent relation.
For MEANS, the constructional subevent cannot precede the verbal subevent. For RESULT, all orderings are acceptable (reversed directionality). For INSTANCE/CO-OCCURRENCE, simultaneity is expected but not enforced.
Equations
Instances For
Closed-scale → bounded RP bridge (§8 of [GJ04], #
Principle 27)
[GJ04] §8: productive property RPs "tend to be
nongradable" and "encode a clearly delimited state." The formal correlate
([Ken07]): productive RPs have a maximum endpoint on
their scale. dry (upper-bounded, has max) is productive; wet
(lower-bounded, no max) is not. flat, clean, shut, dead, open,
full, empty are all closed-scale (has max).
The aspectual chain: HasMax → bounded RP → telic resultative.
Map [Ken07]'s scale boundedness to [GJ04]'s RP boundedness. Scales with a maximum endpoint yield bounded RPs (the RP denotes a delimited endstate). Scales without a maximum yield unbounded RPs.
Equations
Instances For
Closed scales yield bounded RPs.
Upper-bounded scales yield bounded RPs (e.g., "dry").
Open scales yield unbounded RPs (e.g., "tall").
Lower-bounded scales yield unbounded RPs (e.g., "wet").
The full aspectual chain: a closed-scale adjective as RP yields a telic
resultative. HasMax → bounded → telic → accomplishment.
The dry/wet contrast: dry is productive (bounded → telic), wet is not (unbounded → atelic). Derives from scale structure alone.
Semantic contribution (meaning components) #
Each subconstruction's semantic contribution is derived from the causativity
dimension: causative subconstructions contribute CoS + causation (matching
the parent resultative in ArgumentStructure.lean); noncausative ones
contribute only CoS (BECOME without CAUSE). This is consistent with the
constructionalDesc: hasCause ↔ causation, hasBecome ↔ changeOfState.
The meaning components a subconstruction contributes.
Causative: CoS + causation (same as parent resultative).
Noncausative: CoS only (BECOME without CAUSE).
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.semanticContribution = { changeOfState := true, contact := false, motion := false, causation := true }
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.semanticContribution = { changeOfState := true, contact := false, motion := false, causation := true }
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.semanticContribution = { changeOfState := true, contact := false, motion := false, causation := false }
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.semanticContribution = { changeOfState := true, contact := false, motion := false, causation := false }
Instances For
All subconstructions contribute change-of-state (all have BECOME).
Causative subconstructions contribute causation.
Noncausative subconstructions do not contribute causation.
The semantic contribution is consistent with the constructional subevent:
hasCause ↔ causation and hasBecome ↔ changeOfState.
No subconstruction contributes instrument specificity.
Bundled: causative subconstruction contributes CoS + causation + ¬instrumentSpec.
Satisfies the hypotheses of fuse_cos_caus_enables.
Bundled: noncausative subconstruction contributes CoS + ¬causation + ¬instrumentSpec.
Satisfies the hypotheses of fuse_cos_only_partial.
Causative subconstructions match the parent resultative's semantic contribution.
Derived construction network #
The four subconstructions are derived from ResultativeSubconstruction
rather than hard-coded. Each subconstruction inherits from the existing
resultative parent in ArgumentStructure.lean.
The slot structure follows from two dimensions:
- Causative adds an agent subject + patient/theme object (4 slots)
- Noncausative has only a theme subject (3 slots)
- Property RP uses ADJ; Path RP uses ADP
The UPOS category of the result phrase slot.
Equations
Instances For
The role label for the result phrase slot.
Equations
Instances For
The name suffix for a subconstruction.
Equations
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativeProperty.nameSuffix = "CausativeProperty"
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.causativePath.nameSuffix = "CausativePath"
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativeProperty.nameSuffix = "NoncausativeProperty"
- ConstructionGrammar.Resultatives.ResultativeSubconstruction.noncausativePath.nameSuffix = "NoncausativePath"
Instances For
The construction a subconstruction determines, its meaning pole the
subconstruction's MeaningComponents contribution.
Slots are determined by the two dimensions:
- Causative: [NOUN subj, VERB head, NOUN obj, RP-UPOS rp]
- Noncausative: [NOUN subj, VERB head, RP-UPOS rp]
Equations
- One or more equations did not get rendered due to their size.
Instances For
The composed meaning: verb MC fused with the subconstruction's contribution.
Equations
Instances For
The causative property resultative as a construction.
Equations
Instances For
The causative path resultative as a construction.
Equations
Instances For
The noncausative property resultative as a construction.
Equations
Instances For
The noncausative path resultative as a construction.
Equations
Instances For
The full resultative family, derived from all four subconstructions.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The inheritance link from a subconstruction to the parent resultative.
Equations
- One or more equations did not get rendered due to their size.
Instances For
All four inheritance links, derived.
Equations
- One or more equations did not get rendered due to their size.
Instances For
The [GJ04] resultative family as a constructicon: the parent construction plus its four derived subconstructions and inheritance links.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Every derived link resolves to a member construction.
The links determine each subconstruction's mother: the resultative.
All inheritance links point to the same parent.
All four subconstructions are fully abstract (decomposable).
Causative subconstructions are transitive (4 slots); noncausative are intransitive (3 slots).
Schema-decomposition theorems for the subconstruction family
(causative_decompose_like_parent, noncausative_fewer_steps) live with
[Mul13]'s decomposition apparatus in Studies/Mueller2013.lean.
Verb–construction fusion (integration with ArgumentStructure.lean) #
A manner verb (no CoS, no causation, no instrumentSpec) in a causative
subconstruction acquires causative alternation: the subconstruction's
semantic contribution adds CoS + causation via fuse.
A manner verb in a noncausative subconstruction does NOT acquire the causative alternation: noncausative subconstructions lack causation.
Concrete: hit-class verb in causativeProperty → causative alternation.
Concrete: hit-class verb in noncausativeProperty → no alternation.
The composed meaning in a causative subconstruction matches the
composed meaning in the parent resultative construction.
All subconstructions contribute CoS via toConstruction, so the composed
meaning always has changeOfState = true regardless of the verb.
The resultative alternation itself is predicted for any non-instrument verb in any subconstruction (since all contribute CoS).
Universal aspect predictions #
Bounded RP yields telic resultative (= accomplishment).
Unbounded RP yields atelic resultative (= activity).
Resultative telicizes an activity verb: adding bounded RP to an activity yields an accomplishment (§4 of [GJ04], Principle 27).
The resultative's derived aspect matches telicization of the bare verb when the bare verb is an activity and the RP is bounded.
General chain theorems #
The full derivation pipeline connecting adjective scale structure, RP boundedness, aspect, and alternation participation. These are universally quantified — they hold for ANY verb class and ANY subconstruction satisfying the hypotheses, not just the attested entries.
Aspect chain: any adjective with a scale maximum, used as an RP in a resultative, produces a telic accomplishment.
Alternation chain: corollary of fuse_cos_caus_enables for
causative resultative subconstructions.
Noncausative contrast: corollary of fuse_cos_only_partial.
instrumentSpec blocking: corollary of instrumentSpec_blocks_after_fuse.