Neo-Gricean pragmatics: secondary implicatures and the Standard Recipe #
This file defines [Sau04]'s derivation of secondary implicatures and the Standard
Recipe of [Geu10]. A speaker's epistemic state is a set of worlds s : Set W (the same
object as the ContextSet of Discourse/CommonGround.lean), and an epistemic proposition —
what an utterance implicates about the speaker — is a set of states Set (Set W). Knowledge
Kφ is the principal down-set Set.Iic φ (the states s ⊆ φ), so the primary implicature
¬Kψ is (Iic ψ)ᶜ, the secondary implicature K¬ψ is Iic ψᶜ, competence Kψ ∨ K¬ψ is
Iic ψ ∪ Iic ψᶜ, and the empty state, a member of every Iic, is the inconsistent speaker.
Asserting φ against alternatives alts commits the speaker to Kφ and the primary
implicatures; K¬ψ is a secondary implicature iff it is consistent with that commitment.
Main definitions #
primaryImplicature,secondaryImplicature,competent: the epistemic propositions¬Kψ,K¬ψ,Kψ ∨ K¬ψ.commitment:Kφtogether with the primary implicatures of the alternatives.Consistent: an epistemic proposition holds of some nonempty state.IsSecondaryImplicature: [Sau04]'s condition forK¬ψ.
Main results #
isSecondaryImplicature_iff:K¬ψis a secondary implicature iff the strengthened meaningφ \ ψis consistent and entails no alternative —φ \ ψitself is the canonical witness, so a blocked secondary implicature is always blocked by a single primary; the disjunction case (K¬(A∧B) arises, K¬A is blocked) isStudies/Sauerland2004.lean.isSecondaryImplicature_of_ssubset: a lone asymmetrically stronger alternative always yields its secondary implicature.primaryImplicature_inter_competent: the Standard Recipe as an identity — on consistent states, the weak implicature plus competence is the strong implicature.
References #
Epistemic propositions #
The primary implicature ¬Kψ: the states that do not know ψ.
Equations
- NeoGricean.primaryImplicature ψ = (Set.Iic ψ)ᶜ
Instances For
The secondary implicature K¬ψ: the states that know ¬ψ.
Equations
- NeoGricean.secondaryImplicature ψ = Set.Iic ψᶜ
Instances For
Competence about ψ, Kψ ∨ K¬ψ: the states that know whether ψ.
Equations
- NeoGricean.competent ψ = Set.Iic ψ ∪ Set.Iic ψᶜ
Instances For
An epistemic proposition is consistent iff some nonempty state satisfies it.
Equations
- NeoGricean.Consistent E = ∃ s ∈ E, s.Nonempty
Instances For
Primary and secondary implicatures #
Asserting φ against scalar alternatives alts commits the speaker to Kφ plus the primary
implicature ¬Kψ for each alternative ([Sau04] (42), verified p. 383); K¬ψ is a
secondary implicature exactly when it is consistent with that commitment
([Sau04] (43)).
The speaker's commitment after asserting φ against alts: Kφ and the primary
implicature of each alternative. Per [Sau04] the alternatives are the asymmetrically
stronger ones (ψ ⊂ φ); the definition does not enforce the filter.
Equations
- NeoGricean.commitment φ alts = Set.Iic φ ∩ ⋂ χ ∈ alts, NeoGricean.primaryImplicature χ
Instances For
K¬ψ is a secondary implicature of asserting φ against alts iff it is consistent with
the commitment.
Equations
- NeoGricean.IsSecondaryImplicature φ alts ψ = NeoGricean.Consistent (NeoGricean.commitment φ alts ∩ NeoGricean.secondaryImplicature ψ)
Instances For
The strengthened meaning φ \ ψ is the canonical witness: K¬ψ is a secondary
implicature iff φ \ ψ is consistent and entails no alternative. A blocked secondary
implicature is thus always blocked by a single primary.
For a lone alternative χ, K¬ψ is a secondary implicature iff φ \ ψ is consistent
and does not entail χ.
Against its own alternative alone, K¬ψ is a secondary implicature iff the strengthened
meaning φ \ ψ is consistent.
A lone asymmetrically stronger alternative always yields its secondary implicature: the some ⇝ not all case.
Competence and the Standard Recipe #
Competence about ψ is [Sau04]'s Kψ ∨ K¬ψ — the speaker knows whether ψ, which
is support of the polar question Question.polar ψ by Question.mem_polar.
A consistent speaker cannot both know ψ and know ¬ψ.
The Standard Recipe, pointwise: for a consistent speaker competent about ψ, the strong
implicature K¬ψ is exactly the weak implicature ¬Kψ.
The Standard Recipe: on consistent states, the weak implicature plus competence is the strong implicature.