A complement question pair: Q and its negated counterpart. Key observation: same partition, different required answers.
- positiveQ : String
The positive question
- negativeQ : String
The negative question
- domain : String
Domain description
Facts: who/what satisfies the predicate
Facts: who/what doesn't satisfy the predicate
- positiveAnswer : String
Correct answer to positive question
- negativeAnswer : String
Correct answer to negative question
- source : String
Source citation
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Classic example from @cite{groenendijk-stokhof-1984}: "Who walks?" vs "Who doesn't walk?" Source: @cite{groenendijk-stokhof-1984}, p. 280
Equations
- One or more equations did not get rendered due to their size.
Instances For
"Which students passed?" vs "Which students didn't pass?"
Equations
- One or more equations did not get rendered due to their size.
Instances For
"What did John buy?" vs "What didn't John buy?" (from a contextually salient set)
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
Key theoretical claim: complement questions induce the same partition.
Proof sketch (@cite{groenendijk-stokhof-1984}):
- ⟦Who walks?⟧ = λw.λv. [walk_w = walk_v]
- ⟦Who doesn't walk?⟧ = λw.λv. [¬walk_w = ¬walk_v]
- But ¬walk_w = ¬walk_v iff walk_w = walk_v (set complement is injective)
- Therefore the partitions are identical.
The answers differ despite identical complements.
An answer is appropriate if it names the right set of individuals. For positive Q: name the satisfiers. For negative Q: name the non-satisfiers.
- question : String
The question
- isPositive : Bool
Is this the positive or negative form?
- answer : String
The proposed answer
- appropriate : Bool
Is this answer appropriate?
- explanation : String
Explanation
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
"John and Mary" is appropriate for "Who walks?"
Equations
- One or more equations did not get rendered due to their size.
Instances For
"Bill" is INappropriate for "Who walks?"
Equations
- One or more equations did not get rendered due to their size.
Instances For
"Bill" is appropriate for "Who doesn't walk?"
Equations
- One or more equations did not get rendered due to their size.
Instances For
"John and Mary" is INappropriate for "Who doesn't walk?"
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
The parallel between wh-complement and polar question polarity.
Polar Questions:
- PPQ "Is it raining?" → biased toward "yes"
- NPQ "Isn't it raining?" → biased toward "yes" (= "no, it's not raining")
Wh-Questions:
- "Who P?" → answer names satisfiers of P
- "Who doesn't P?" → answer names satisfiers of ¬P
In both cases, the FORM of the question (positive vs negative) determines which answer is "direct" even when the partition is the same.
- polarExample : String
Polar question example
- whExample : String
Corresponding wh-question example
- positiveAsksFor : String
What the positive form asks for
- negativeAsksFor : String
What the negative form asks for
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
Key observation: partition semantics alone cannot explain the asymmetry.
If ⟦Who walks?⟧ = ⟦Who doesn't walk?⟧ (as partitions), then partition semantics predicts they should have the same answers. But they don't.
Possible solutions:
- Questions denote MORE than partitions (e.g., structured meanings)
- Answer appropriateness is pragmatic, not purely semantic
- The "focus" or "aboutness" of the question matters
- structuredMeanings : TheoreticalPosition
- pragmaticAnswerhood : TheoreticalPosition
- aboutnessFocus : TheoreticalPosition
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
G&S's own solution involves the DENOTATION DOMAIN. "Who walks?" asks about the extension of "walk". "Who doesn't walk?" asks about the extension of "not walk". These are different semantic objects even if they induce the same partition.
Equations
- Phenomena.Questions.WhComplement.gsolution = "The question asks about a specific predicate's extension; " ++ "negation changes which predicate we're asking about."