Conversational Backgrounds #
A conversational background maps worlds to sets of propositions. Two roles:
- Modal base (
ModalBase) determines accessibility —R_f(w, w') ≡ w' ∈ ⋂f(w). - Ordering source (
OrderingSource) ranks accessible worlds by how many ordering propositions they satisfy.
A conversational background maps worlds to sets of propositions.
Kratzer's key innovation: the modal base and ordering source are both conversational backgrounds, but play different roles.
Equations
- Semantics.Modality.Kratzer.ConvBackground W = (W → List (W → Prop))
Instances For
The modal base: determines which worlds are accessible.
Instances For
The ordering source: determines how accessible worlds are ranked.
Instances For
A conversational background is realistic iff for all w: w ∈ ⋂f(w). The actual world satisfies all propositions in the background.
[Kra81]: realistic conversational backgrounds make every fact
about w part of ⋂f(w). UNVERIFIED page reference.
Equations
- Semantics.Modality.Kratzer.isRealistic f = ∀ (w : W), ∀ p ∈ f w, p w
Instances For
A conversational background is totally realistic iff for all w:
⋂f(w) = {w}. The strongest form: only the actual world is accessible.
UNVERIFIED page reference.
Equations
- Semantics.Modality.Kratzer.isTotallyRealistic f = ∀ (w : W), Intensional.Premise.propIntersection (f w) = {w}
Instances For
The empty conversational background: f(w) = ∅ for all w.
⋂f(w) = W (vacuous intersection), so the empty background is itself
trivially realistic. UNVERIFIED page reference.