Question-based desire semantics #
a wants p relative to a contextual question Q: the answers compatible with a's beliefs
are ordered by the desires they entail, and the ascription holds iff every best such answer
entails p — [PB25]'s semantics. Its definedness conditions are the paper's
metasemantic constraints — IsConsidered (every answer settles p), IsDiverse (both
p- and ¬p-answers), IsAntiDeckstacking (a salient proposition some answer entails is
itself settled; [Con02]), IsBelSensitive (the beliefs discriminate among the
answers; [Yal18]) — bundled as Defined and as the presupposition of toPartialProp,
under which the ascription is Strawson upward monotone (toPartialProp_strawsonEntails).
On the finest question the semantics is the best-worlds one (want_finest_iff).
le G a a': every desire in G entailed by a' is entailed by a — the
criteria-derived order with entailment as satisfaction.
Equations
- Desire.QuestionBased.le G a a' = (a ⊆ a')
Instances For
An answer compatible with the beliefs.
Equations
- Desire.QuestionBased.Live bel a = ∃ w ∈ a, w ∈ bel
Instances For
a wants p: every best live answer of Q entails p.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Every answer settles p.
Equations
- Desire.QuestionBased.IsConsidered Q p = ∀ a ∈ Q, (∀ w ∈ a, w ∈ p) ∨ ∀ w ∈ a, w ∉ p
Instances For
Some answer entails p and some entails ¬p.
Equations
- Desire.QuestionBased.IsDiverse Q p = ((∃ a ∈ Q, ∀ w ∈ a, w ∈ p) ∧ ∃ a ∈ Q, ∀ w ∈ a, w ∉ p)
Instances For
Every salient proposition in N that some answer entails is itself settled.
Equations
- Desire.QuestionBased.IsAntiDeckstacking N Q = ∀ q ∈ N, (∃ a ∈ Q, a ⊆ q) → Desire.QuestionBased.IsConsidered Q ↑q
Instances For
The beliefs discriminate among the answers: some answer is live and some is not.
Equations
- Desire.QuestionBased.IsBelSensitive Q bel = ((∃ a ∈ Q, Desire.QuestionBased.Live bel a) ∧ ∃ a ∈ Q, ¬Desire.QuestionBased.Live bel a)
Instances For
The four metasemantic constraints jointly.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Question-based want with its definedness conditions as presupposition.
Equations
- Desire.QuestionBased.toPartialProp G N Q bel p = { presup := fun (x : W) => Desire.QuestionBased.Defined N Q bel p, assertion := fun (x : W) => Desire.QuestionBased.Want G Q bel p }
Instances For
Strawson upward monotonicity: where both ascriptions are defined, want p entails
want q for p ⊆ q.
The finest question #
The finest question over a world list: one singleton answer per world.
Equations
- Desire.QuestionBased.finest worlds = List.map (fun (x : W) => {x}) worlds
Instances For
On the finest question over an exhaustive world list, question-based want is best-worlds want.