Highlighting #
[RvG10] [RF15] [STBR10] [Kri17]
A highlighted proposition is one that has been made salient by a recent utterance and that addresses the current question under discussion (QUD). The notion was introduced by [RvG10] for disjunctive questions (the affirmative disjunct is highlighted and feeds the polarity particle response in [RF15]). It generalises in [Kri17] and the verum-marker literature (e.g. [MV26]) to a discourse-management primitive shared across focus, biased polar questions, and verum strategies.
What this module provides #
HighlightingContext W— bundles a set of salient propositions with the current QUD.AddressesQUD— a proposition is comparable to a QUD alternative, the simplest [STBR10] version of "contextually entails an answer".Highlighted— the conjunctionsalient ∧ addresses-QUD. This is exactly the [MV26] (38) presupposition.- [RF15] polarity particles
agree/reversewith acommitmentprojection.
Consumers (verum studies, biased polar question studies, evidential discourse studies) import this file rather than re-stipulating the predicate locally.
Known unmigrated consumers (deferred) #
This substrate landed alongside [MV26]'s formalisation; existing files that use highlighting-shaped notions but have not yet been migrated:
Semantics/Attitudes/Preferential.lean—HighlightingClauseTypehighlightedValuefor Pruitt-Roelofsen 2011 / Uegaki 2022 hope-whether.
Studies/FarkasRoelofsen2017.lean— paper-side highlighted-alternative prose; F&R 2015 is the substrate's own anchor.Semantics/Questions/Singleton.lean—IsSingletondocuments itself in [RF15] terminology but is a different abstraction (property of aQuestion, not a discourse context).Semantics/Questions/Bias/Defs.lean—OriginalBias/ContextualEvidencecover adjacent ground (prior-discourse bias) with a different shape; bridge not yet written.
Migration to consume Highlighting.HighlightingContext is queued for
follow-up work; landing the substrate first lets the new MartinezVera2026
study consume it without forcing an immediate four-file refactor.
A highlighting context: the set of propositions made salient by recent utterances, paired with the QUD they should address.
- salient : Set (Set W)
Propositions made salient by recent utterances.
- qud : Question W
The current question under discussion.
Instances For
A proposition p addresses a question q iff it is comparable to
some alternative — entailing it or being entailed by it. The simplest
Set-valued version of [STBR10]'s
"contextually entails an answer".
Equations
- Semantics.Highlighting.AddressesQUD q p = ∃ a ∈ q.alt, p ⊆ a ∨ a ⊆ p
Instances For
[MV26] (38): proposition p is highlighted in
context c iff it has been made salient by an utterance and addresses
the current QUD.
Equations
- Semantics.Highlighting.Highlighted c p = (p ∈ c.salient ∧ Semantics.Highlighting.AddressesQUD c.qud p)
Instances For
The empty highlighting context: no salient propositions, the trivial QUD that is resolved by anything.
Equations
- Semantics.Highlighting.empty = { salient := ∅, qud := Question.declarative Set.univ }
Instances For
A highlighting context built from a single salient proposition that declaratively resolves its own QUD.
Equations
- Semantics.Highlighting.singleton p = { salient := {p}, qud := Question.declarative p }
Instances For
Add a proposition to the salient set without touching the QUD.
Equations
- Semantics.Highlighting.addSalient c p = { salient := insert p c.salient, qud := c.qud }
Instances For
[RF15]'s polarity-particle response slot.
agree (English yes, German ja, Romance sí/oui) confirms the
highlighted proposition; reverse (English no, German nein,
Romance no/non) commits to its (set-theoretic) complement.
The two-cell taxonomy is the cross-linguistic minimum; English/German elaborate it with intonation, Polish/Czech and Mandarin add further morphology — extensions live in study files, not here.
- agree : ResponseParticle
- reverse : ResponseParticle
Instances For
Equations
- Semantics.Highlighting.instDecidableEqResponseParticle 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
The proposition committed to by a polarity-particle response, given a
highlighted proposition p. agree projects to p; reverse
projects to pᶜ (set-theoretic complement).
Equations
Instances For
The two response particles disagree on every world: agree commits to
p, reverse commits to pᶜ, and these partition Set.univ.