Postsuppositions #
@cite{brasoveanu-2009} @cite{lauer-2009} @cite{glass-2025}
Output-context constraints: conditions on the Common Ground after an utterance updates it, as opposed to presuppositions which constrain the input context.
@cite{glass-2025} argues that Mandarin yǐwéi has a postsupposition ◇¬p — after accepting "x yǐwéi p", the CG must be compatible with ¬p. This is distinct from a presupposition (input-context condition) and cannot be derived from veridicality alone.
A postsupposition: a constraint on the output context after a discourse update.
Unlike presuppositions (input-context constraints on PrProp.presup),
postsuppositions constrain what must hold of the context after the
at-issue content updates it.
The condition takes a context set (as List W) and the embedded
proposition p, returning whether the output-context requirement holds.
- condition : List W → (W → Bool) → Bool
Instances For
No postsupposition (trivially satisfied).
Equations
- Core.Postsupposition.Postsupposition.none = { condition := fun (x : List W) (x_1 : W → Bool) => true }
Instances For
Weak contrafactive postsupposition: the output context must be compatible with ¬p. That is, at least one world in the output context has p false.
This is yǐwéi's ◇¬p (@cite{glass-2025}, @cite{glass-2023}).
Equations
- Core.Postsupposition.Postsupposition.weakContrafactive = { condition := fun (cs : List W) (p : W → Bool) => cs.any fun (x : W) => !p x }
Instances For
Strong contrafactive postsupposition: the output context must entail ¬p. That is, all worlds in the output context have p false.
This is the hypothetical contra verb's requirement — UNATTESTED.
Equations
- Core.Postsupposition.Postsupposition.strongContrafactive = { condition := fun (cs : List W) (p : W → Bool) => cs.all fun (x : W) => !p x }
Instances For
Check satisfaction against a concrete context set and proposition.
Instances For
The trivial postsupposition is always satisfied.
Strong contrafactivity entails weak contrafactivity (for nonempty contexts): if CG ⊨ ¬p (all worlds have ¬p), then CG ◇ ¬p (some world has ¬p). This captures @cite{glass-2025}'s key observation that yǐwéi's requirement is strictly weaker than the hypothetical contra verb's.
Weak contrafactivity does NOT entail strong: a context can be compatible with ¬p without entailing ¬p.