RSA Conditional Antecedent Embedding #
@cite{chierchia-2004} @cite{geurts-2010} @cite{von-fintel-1999}
Models scalar implicatures embedded in conditional antecedents.
The Phenomenon #
"If some students passed, the professor will be happy"
The antecedent of a conditional is a DOWNWARD-ENTAILING context:
- "If all students passed, P" entails "If some students passed, P"
This predicts DE-like blocking of local implicatures, similar to "no one".
Theoretical Background #
Conditional antecedents are DE because:
- Let p ⊆ q (p entails q)
- Then: "If q, r" entails "If p, r" (contrapositive reasoning)
For scalar implicatures:
- "some" ⊆ "all" (in terms of truth conditions)
- So: "If all passed, happy" entails "If some passed, happy"
Local SI would strengthen "some" to "some-but-not-all", making:
- "If some-but-not-all passed, happy"
This is WEAKER than "If some passed, happy" (true in fewer cases). RSA should prefer the more informative global interpretation.
Student outcome for conditional scenario.
- noneP : StudentResult
- someP : StudentResult
- allP : StudentResult
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- RSA.ConditionalEmbedding.instBEqStudentResult.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Professor's happiness state.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- RSA.ConditionalEmbedding.instBEqProfState.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
World for conditional embedding.
Tracks both the student outcome and whether the professor is happy.
- students : StudentResult
- professor : ProfState
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Instances For
Equations
Instances For
"Some students passed" - weak (existential) reading.
Equations
Instances For
"Some-but-not-all students passed" - strong (exact) reading.
Equations
Instances For
"All students passed".
Equations
Instances For
"No students passed".
Equations
Instances For
"The professor is happy".
Equations
Instances For
Interpretations of "If some students passed, the professor will be happy":
- Global: "some" is weak; if any student passed, prof is happy
- Local: "some" is strong; if some-but-not-all passed, prof is happy
- global : CondInterpretation
- local_ : CondInterpretation
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- RSA.ConditionalEmbedding.instBEqCondInterpretation.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Material conditional semantics: "If P, Q" = ¬P ∨ Q.
- Global: ¬(some passed) ∨ happy = (none passed) ∨ happy
- Local: ¬(some-not-all passed) ∨ happy = (none ∨ all passed) ∨ happy
Equations
- RSA.ConditionalEmbedding.conditionalMeaning RSA.ConditionalEmbedding.CondInterpretation.global w = (!RSA.ConditionalEmbedding.somePassed w || RSA.ConditionalEmbedding.profHappy w)
- RSA.ConditionalEmbedding.conditionalMeaning RSA.ConditionalEmbedding.CondInterpretation.local_ w = (!RSA.ConditionalEmbedding.someNotAllPassed w || RSA.ConditionalEmbedding.profHappy w)
Instances For
Relevant worlds for the conditional scenario.
We include worlds where the conditional's consequent may or may not hold.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Equations
- One or more equations did not get rendered due to their size.
Global interpretation: "If some passed, happy"
- False only when: some passed AND prof unhappy
- True when: none passed OR prof happy
Local interpretation: "If some-but-not-all passed, happy"
- False only when: some-but-not-all passed AND prof unhappy
- True when: (none OR all passed) OR prof happy
The key DE property: Global ENTAILS Local.
"If some passed, happy" → "If some-but-not-all passed, happy"
This is because:
- Global is false when (some ∧ unhappy) - includes someP and allP
- Local is false only when (some-not-all ∧ unhappy) - only someP
So Global being true implies Local is true.
Local does NOT entail Global. When all students passed and prof is unhappy:
- Local is true (antecedent "some-not-all" is false)
- Global is false (antecedent "some" is true, consequent false)
The conditional antecedent is DE: weakening the antecedent strengthens the conditional.
"If some passed, happy" entails "If all passed, happy" because:
- some ⊇ all (some is satisfied by more worlds than all)
- So the weaker antecedent gives a stronger conditional
This is the DE property: p ⊆ q implies "If q, r" ⊆ "If p, r"
RSA predicts: in conditional antecedents, global is preferred over local. This is the same prediction as for DE contexts under "no".