Verb denotation — what a verb does #
A verb is, first of all, an operation: applied to its arguments it builds an event predicate. This file is that operation — the DO layer of the Verb API — parallel to how the φ substrate models person features as operations rather than predicates.
For a change-of-state verb the operation is the [BKG20]
§1.3.2 decomposition (Verb.CosModel): a root denotes a state predicate and the
event predicate is built by become'/cause', dispatched on the root's kinds.
The proto-role theta-grid (Verb.subjectRole/objectRole, derived from the
effective EntailmentProfiles via EntailmentProfile.toRole) supplies the
participant roles.
Main definitions #
Verb.subjectRole/Verb.objectRole— the theta-grid from the proto-role profilesVerb.CosModel+inchoative/causative/denote— the change-of-state denotation, dispatched on the root'skinds
Main results #
CosModel.causative_entails_inchoative,denote_result_entails_resultState— the [BKG20] entailments, derived from the root signature
The sublexical again operator and its reading hierarchy live with their
anchoring study, Studies/BeaversKoontzGarboden2020.lean.
References #
The theta-grid (derived from the proto-role profiles) #
The subject's theta-role, derived from its effective EntailmentProfile
(verb override, else Levin-class profile) via EntailmentProfile.toRole.
Equations
- v.subjectRole = v.effectiveSubjectEntailments.bind fun (x : ArgumentStructure.EntailmentProfile) => x.toRole
Instances For
The object's theta-role, derived from its effective EntailmentProfile.
Equations
- v.objectRole = v.effectiveObjectEntailments.bind fun (x : ArgumentStructure.EntailmentProfile) => x.toRole
Instances For
Change-of-state decomposition ([BKG20] §1.3.2) #
For a change-of-state verb the opaque lexical core unpacks into the
event-structural decomposition of [BKG20] (22)–(24): a
root denotes a state predicate ⟦√V⟧(x,s), and the verb's event predicate is
built by the templatic operators become' and cause'. The root's
kinds selects which operators apply — .result → become,
.cause → cause/effector — so the decomposition is the denotational payoff
of the root's kinds.
The change-of-state model ([BKG20] (22)): the
templatic primitives a COS verb's denotation is built from. become/cause/
effector are model primitives here (BKG refine their truth conditions in
their §1.6); a Study instantiates them.
⟦√V⟧(x,s)(BKG (22a)): a statesof the root's lexical property holds ofx(e.g.flat'(x,s)). The root denotes a state predicate.become'(s,e)(BKG (22b)): eventegives rise to states.cause'(v,e)(BKG (22c)): eventvcauses evente.effector'(y,v)(BKG (22c)):yis the effector of eventv.The bare manner/activity core
⟦√V⟧(e)of a pure-manner root (no change), e.g.jog/run's action specification.
Instances For
The inchoative denotation ([BKG20] (23c)):
λxλe. ∃s. become'(s,e) ∧ ⟦√V⟧(x,s) — an event of change giving rise to a
state of the root's property holding of the patient x.
Equations
- M.inchoative v x e = ∃ (s : State), M.become s e ∧ M.rootState v x s
Instances For
The causative denotation ([BKG20] (24c)): the
inchoative embedded under an effector and a causing event —
λyλxλw. ∃e. effector'(y,w) ∧ cause'(w,e) ∧ inchoative(x)(e).
Equations
- M.causative v y x w = ∃ (e : Event Time), M.effector y w ∧ M.cause w e ∧ M.inchoative v x e
Instances For
BKG's first prediction ([BKG20] p. 16): the causative entails the inchoative — there is an event satisfying the inchoative, "by simple virtue of" the embedding (∃-projection over the caused event). Holds by construction, not stipulation.
The result-state entailment: the inchoative entails the patient reaches a
state of the root's property — ∃s. become'(s,e) ∧ ⟦√V⟧(x,s). The
non-cancelable result of a change-of-state root (the break vs hit
contrast, [BKG20] (6)); definitional, hence immediate.
Composing the two predictions: a caused change reaches the root state — the causative entails the full result-state condition.
The verb's change-of-state denotation, dispatched on its root's
kinds (cf. [BKG20] (18)–(19)): .cause →
causative, else .result → inchoative, else the bare manner core. The root's
kinds select the event template — the denotational payoff of the signature.
Equations
- M.denote v y x = if Verb.LexKind.cause ∈ v.closedKinds then M.causative v y x else if Verb.LexKind.result ∈ v.closedKinds then M.inchoative v x else M.manner v
Instances For
The denotational payoff of a .result root: any verb whose root signature
carries result has a denotation entailing the result state — whether the
root is causative (.cause) or inchoative. The
[BKG20] non-cancelable result, derived from the
signature rather than stipulated (and absent for a pure-manner root, whose
denote is the manner core).
The denotational result entailment is the template diagnostic: a verb
whose root's EventStructure.Template embeds a result state has a denotation
entailing that result state — denote_result_entails_resultState and
Template.HasResultState are one fact, through the closed kind signature
([BKG20]; [RHL98]).