Documentation

Linglib.Phenomena.Questions.Studies.GroenendijkStokhof1984

@cite{groenendijk-stokhof-1984}: Studies on the Semantics of Questions #

@cite{belnap-1982}

Single-paper formalisation of the partition-semantics theorems from @cite{groenendijk-stokhof-1984} (Ch. I), formulated over the GSQuestion W substrate. The substrate primitive ans and its basic algebraic properties live in Core/Question/Partition/Cells.lean; this file owns the paper-anchored theorems about refinement, exhaustivity, and de dicto answers.

Theorems #

Wh ↔ polar refinement #

theorem Phenomena.Questions.Studies.GroenendijkStokhof1984.wh_refines_polar {W : Type u_1} {E : Type u_2} [DecidableEq E] (domain : List E) (pred : EWBool) (e : E) (he : e domain) :
have whQ := Semantics.Questions.GSQuestion.ofProject fun (w : W) => List.map (fun (x : E) => pred x w) domain; have polarQ := Semantics.Questions.polarQuestion (pred e); QUD.refines whQ polarQ

Wh-question refines the polar question for any individual in the domain. Core result of @cite{groenendijk-stokhof-1984}: knowing the answer to Who walks? determines the answer to Does John walk? because the full extension determines each individual's value.

Proof: if the lists domain.map (pred · w) and domain.map (pred · v) are equal (same wh-answer), then pred e w = pred e v for any e ∈ domain (same polar answer).

theorem Phenomena.Questions.Studies.GroenendijkStokhof1984.wh_ans_determines_polar_ans {W : Type u_1} {E : Type u_2} [DecidableEq E] (domain : List E) (pred : EWBool) (e : E) (he : e domain) (w v : W) :
have whQ := Semantics.Questions.GSQuestion.ofProject fun (w' : W) => List.map (fun (x : E) => pred x w') domain; QUD.ans whQ w v = truehave polarQ := Semantics.Questions.polarQuestion (pred e); QUD.ans polarQ w v = true

If ANS("Who walks?", i) is known, ANS("Does John walk?", i) is determined. Direct corollary of wh_refines_polar.

Answerhood thesis (p. 15) #

@cite{groenendijk-stokhof-1984} p. 15: the complete true answer at any index is determined by Q (functionally projected).

theorem Phenomena.Questions.Studies.GroenendijkStokhof1984.ans_situation_dependent {W : Type u_1} (q : Semantics.Questions.GSQuestion W) (w v : W) (hDiff : ¬QUD.r q w v) :
∃ (u : W), QUD.ans q w u QUD.ans q v u

The same question can have different answers at different indices.

Exhaustivity #

theorem Phenomena.Questions.Studies.GroenendijkStokhof1984.exhaustive_answers {W : Type u_1} {E : Type u_2} [DecidableEq E] (domain : List E) (pred : EWBool) (w v : W) :
have q := Semantics.Questions.GSQuestion.ofProject fun (w' : W) => List.map (fun (x : E) => pred x w') domain; QUD.ans q w v = true edomain, pred e w = pred e v

Exhaustive answers: ANS pins down the full extension of the predicate.

De dicto / non-rigid descriptions (p. 27) #

def Phenomena.Questions.Studies.GroenendijkStokhof1984.deDictoAnswer {W : Type u_1} {E : Type u_2} [DecidableEq E] (description : WE) (pred : EWBool) :
WBool

De dicto answer via a (possibly non-rigid) description.

Equations
Instances For
    theorem Phenomena.Questions.Studies.GroenendijkStokhof1984.nonrigid_may_fail_semantic {W : Type u_1} {E : Type u_2} [DecidableEq E] (description : WE) (hNonrigid : ∃ (w : W) (v : W), description w description v) :
    ∃ (pred : EWBool) (q : Semantics.Questions.GSQuestion W) (w : W) (v : W), QUD.r q w v deDictoAnswer description pred w = true deDictoAnswer description pred v = false

    @cite{groenendijk-stokhof-1984} p. 27: non-rigid descriptions may fail to be semantic answers. For any non-rigid description there exists a predicate and question such that the de dicto answer holds at one world but fails at another world in the same cell — witnessing that de dicto answers are not semantic (partition-based).

    Proof: given description w₀ ≠ description v₀, let pred e _ := decide (e = description w₀) and q := QUD.trivial. Then de dicto at w₀ = true (reflexivity) and at v₀ = false (non-rigidity).

    The original statement universally quantified pred, which is false — a constant predicate makes de dicto answers trivially uniform. The correct G&S claim is that non-rigid descriptions are not guaranteed to give semantic answers, i.e., there exists a breaking scenario for any non-rigid description.

    Refinement ↔ answer transfer #

    theorem Phenomena.Questions.Studies.GroenendijkStokhof1984.refinement_transfers_answers {W : Type u_1} (q1 q2 : Semantics.Questions.GSQuestion W) (hRefines : QUD.refines q1 q2) (w v : W) :
    QUD.ans q1 w v = trueQUD.ans q2 w v = true

    G&S refinement transfers answers: q1 ⊑ q2 implies that any ans q1-true world v is also ans q2-true.

    theorem Phenomena.Questions.Studies.GroenendijkStokhof1984.answer_transfer_implies_refinement {W : Type u_1} (q1 q2 : Semantics.Questions.GSQuestion W) (hTransfer : ∀ (w v : W), QUD.ans q1 w v = trueQUD.ans q2 w v = true) :

    Converse: ANS-transfer implies refinement.

    G&S refinement ↔ answer transfer.