Gricean Maxims of Conversation #
@cite{grice-1975}
Logic and Conversation. In P. Cole & J.L. Morgan (eds.), Syntax and Semantics 3: Speech Acts, 41–58. Academic Press.
Design #
The Cooperative Principle and four maxims are formalized as types, not
as behavioral predictions. Behavioral predictions (e.g., "speakers
maximize informativity") belong in the implementing frameworks — RSA
formalizes Quantity via s1Score, NeoGricean via the Standard Recipe,
Dale & Reiter via incremental attribute selection. Study files that
test the maxims directly (e.g., @cite{engelhardt-etal-2006}) import
this module.
Linking theorems connecting maxims to specific frameworks belong in
Comparisons/.
The Quantity Maxim #
Grice's Quantity maxim has two sub-maxims:
- Q1: "Make your contribution as informative as is required (for the current purposes of the exchange)."
- Q2: "Do not make your contribution more informative than is required."
@cite{engelhardt-etal-2006} showed these behave asymmetrically: Q1 violations (under-description) are penalized in both production and explicit judgment; Q2 violations (over-description) are produced frequently, tolerated explicitly, but detected implicitly via processing costs.
The four Gricean maxims of conversation.
- quantity : Maxim
Make your contribution as informative as is required; do not make it more informative than is required.
- quality : Maxim
Do not say what you believe to be false; do not say that for which you lack adequate evidence.
- relation : Maxim
Be relevant.
- manner : Maxim
Avoid obscurity of expression; avoid ambiguity; be brief; be orderly.
Instances For
Equations
- Pragmatics.GriceanMaxims.instDecidableEqMaxim 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 Quantity maxim decomposes into two independent sub-maxims. Grice (1975) states both; @cite{engelhardt-etal-2006} showed empirically that they are independently violable.
- Q1 : QuantitySubmaxim
"Make your contribution as informative as is required (for the current purposes of the exchange)."
- Q2 : QuantitySubmaxim
"Do not make your contribution more informative than is required."
Instances For
Equations
- Pragmatics.GriceanMaxims.instDecidableEqQuantitySubmaxim x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Direction of a Quantity violation.
- underInformative : QuantityViolation
Too little information (violates Q1). E.g., "the apple" when two apples are present.
- overInformative : QuantityViolation
Too much information (violates Q2). E.g., "the red apple" when only one apple is present.
Instances For
Equations
- Pragmatics.GriceanMaxims.instDecidableEqQuantityViolation 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
Which sub-maxim a violation direction targets.
Equations
Instances For
The two violation directions target different sub-maxims.
The four Manner sub-maxims (@cite{grice-1975} p.46). @cite{martin-schaefer-kastner-2025} show that M2 (avoid ambiguity) and its counterpart (maintain ambiguity) drive the distribution of French anticausative se.
- avoidObscurity : MannerSubmaxim
M1: "Avoid obscurity of expression."
- avoidAmbiguity : MannerSubmaxim
M2: "Avoid ambiguity." Formalized as a parse-blocking predicate in
Theories.Pragmatics.AvoidAmbiguity.Blocked(@cite{jeretic-bassi-gonzalez-yatsushiro-meyer-sauerland-2025} eq 37). - beBrief : MannerSubmaxim
M3: "Be brief (avoid unnecessary prolixity)."
- beOrderly : MannerSubmaxim
M4: "Be orderly."
Instances For
Equations
- Pragmatics.GriceanMaxims.instDecidableEqMannerSubmaxim x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
Equations
- One or more equations did not get rendered due to their size.
Instances For
Direction of a Manner violation.
- obscure : MannerViolation
Unnecessarily obscure expression (violates M1).
- ambiguous : MannerViolation
Ambiguous when an unambiguous alternative exists (violates M2).
- verbose : MannerViolation
Unnecessarily verbose (violates M3).
- disordered : MannerViolation
Disordered presentation (violates M4).
Instances For
Equations
- Pragmatics.GriceanMaxims.instDecidableEqMannerViolation 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
Which sub-maxim a Manner violation targets.
Equations
- Pragmatics.GriceanMaxims.MannerViolation.obscure.submaxim = Pragmatics.GriceanMaxims.MannerSubmaxim.avoidObscurity
- Pragmatics.GriceanMaxims.MannerViolation.ambiguous.submaxim = Pragmatics.GriceanMaxims.MannerSubmaxim.avoidAmbiguity
- Pragmatics.GriceanMaxims.MannerViolation.verbose.submaxim = Pragmatics.GriceanMaxims.MannerSubmaxim.beBrief
- Pragmatics.GriceanMaxims.MannerViolation.disordered.submaxim = Pragmatics.GriceanMaxims.MannerSubmaxim.beOrderly
Instances For
The four Manner violation types each target different sub-maxims.
Ambiguity and obscurity target different sub-maxims.