Documentation

Linglib.Phenomena.Focus.Studies.IppolitoKissWilliams2025

Discourse only #

@cite{ippolito-kiss-williams-2025} @cite{merin-1999}

Part I: End-to-End Derivation Chains #

Concrete instantiations of the discourse only theory (@cite{ippolito-kiss-williams-2025} Def. 16) that derive the acceptability of specific cross-linguistic examples.

Architecture #

The discourse only theory (in Lexical/Particle/DiscourseOnly.lean) defines isDefined and ciContent as computable Bool functions over abstract types. This file instantiates those functions with a concrete 8-world model of the house-buying scenario used throughout IKW §7, then proves that the theory's predictions match the empirical data in Phenomena/Focus/DiscourseOnly.lean.

The House Model #

8 worlds varying on three binary properties: beautiful, expensive, renovated. The QUD "Should we buy the house?" is answered affirmatively only when the house is beautiful, affordable, AND renovated (w₀). This ensures:

Derivation Chains #

Each derivation theorem proves:

  1. isDefined = true (the presupposition is satisfied)
  2. ciContent = true (the CI holds: S supports α but S' doesn't)
  3. These match the datum's felicitous = true

For interrogative S' examples (30a, 31a, etc.), the derivation shows that the speaker's uncertainty about the answer blocks fullSupport for S' on all QUD answers, trivially satisfying the CI's condition (ii).

Part II: DTS Connection #

Connects the CI of discourse only to @cite{merin-1999}'s Decision-Theoretic Semantics, specifically the notion of unexpectedness from the analysis of but.

Key Connection #

Both but and discourse only express a form of evidential contrast:

The but/only Asymmetry (@cite{ippolito-kiss-williams-2025} §6) #

but requires negRelevant (BF < 1): the second clause must actively provide counter-evidence. Discourse only only requires ¬probSupports: the second clause merely fails to support the direction. Since negRelevant → ¬probSupports (anti-support implies non-support), but's condition is strictly stronger. This means every but context could license discourse only, but not vice versa.

@[reducible, inline]

8-world model for the house-buying scenario.

Encoding: w = 4b + 2e + r where

  • b ∈ {0,1}: beauty (0 = beautiful)
  • e ∈ {0,1}: expense (0 = affordable)
  • r ∈ {0,1}: renovation (0 = renovated)
WorldBeautifulExpensiveRenovatedBuy?
w₀
w₁
w₂
w₃
w₄
w₅
w₆
w₇
Equations
Instances For

    The house is expensive (w₂, w₃, w₆, w₇).

    Equations
    Instances For

      The house has been renovated (w₀, w₂, w₄, w₆).

      Equations
      Instances For

        Should we buy the house? Only if beautiful, affordable, and renovated (w₀).

        Equations
        Instances For

          Uniform prior: P(w) = 1/8 for each world.

          Equations
          • One or more equations did not get rendered due to their size.
          Instances For

            Speaker who asserts "beautiful" but asks about renovation: believes beautiful, uncertain about expense and renovation. DOX_sp = {w₀, w₁, w₂, w₃} (beautiful).

            Equations
            Instances For

              Context for core examples: S = "beautiful", S' = "expensive". No prior partial answers — fresh discourse.

              Subquestions per IKW §5.1: "Answering this question requires answering its plausible subquestions, such as Is the house beautiful? Is the house expensive?" We also include renovation since it appears in the polar Q examples.

              Equations
              • One or more equations did not get rendered due to their size.
              Instances For

                Context for clause-type examples: S = "beautiful", S' = interrogative. Speaker believes S but doesn't know the answer to S'. Same subquestions as core context — the QUD structure doesn't change with clause type.

                Equations
                • One or more equations did not get rendered due to their size.
                Instances For

                  "The house is beautiful, only it's expensive" (core declarative-declarative).

                  Equations
                  • One or more equations did not get rendered due to their size.
                  Instances For

                    "The house is beautiful, only has it been renovated?" (polar Q as S').

                    Equations
                    • One or more equations did not get rendered due to their size.
                    Instances For

                      The presupposition is satisfied: S' is relevant and S supports an answer.

                      The CI holds: ∃α (= buy) s.t. all partial answers support α (vacuous), S supports α, and S' does not support α.

                      The at-issue content is non-trivial: there exist worlds where both S and S' hold (e.g., w₂: beautiful ∧ expensive).

                      S and S' disagree w.r.t. the QUD: S supports "buy" but S' supports "don't buy", and they don't agree on any single answer.

                      Per-datum connection: the theory predicts felicitous for the core examples.

                      Each core example (Italian 29a, Russian 29b, Hungarian 29c, Mandarin 29d, English 2) instantiates this same semantic scenario.

                      The presupposition is satisfied even with interrogative S': the polar Q "has it been renovated?" has alternatives [renovated, ¬renovated], and knowing whether the house is renovated is relevant to buying.

                      The CI holds: the speaker believes the house is beautiful, so S supports "buy". But the speaker doesn't know the answer to "has it been renovated?", so the doxastic condition of fullSupport fails for S' on every QUD answer. S' trivially fails to support the buying direction.

                      Per-datum: predicts felicitous for all polar Q S' examples.

                      Russian 30a, Hungarian 31a, and Mandarin 32a all instantiate this scenario.

                      For any context where S supports some QUD answer and S' is an interrogative whose answer the speaker doesn't know, the CI's condition (ii) is satisfied: S' trivially fails to support any answer because fullSupport requires the doxastic condition (DOX_sp ⊆ q), which fails when the speaker doesn't believe any alternative of S'.

                      This generalizes the polar Q derivation to all interrogative S' examples (30a-d, 31a-d, 32a-d): the specific content of the question doesn't matter for the CI — only that the speaker doesn't know the answer.

                      Convert a DTS dichotomic issue {H, ¬H} to an inquisitive Issue.

                      A DTS Issue W is a single topic H (with ¬H implicit). The corresponding inquisitive issue has two alternatives: H and ¬H.

                      Equations
                      Instances For

                        The DTS issue and inquisitive issue have matching alternatives.

                        A witness for the discourse only → DTS unexpectedness connection.

                        Bundles a DTS context, a discourse only configuration (as raw propositions for the binary case), and evidence that S is positively relevant to the topic H. Unlike the but witness, this does NOT require S' to be negatively relevant — discourse only only requires S' to fail to support, which is strictly weaker than negative relevance.

                        • The DTS context (dichotomic issue H + prior)

                        • s : WBool

                          Left clausal argument S (as a proposition for the binary case)

                        • s' : WBool

                          Right clausal argument S' (as a proposition for the binary case)

                        • sPosRelevant : Theories.DTS.posRelevant self.dtsCtx self.s

                          S is positively relevant to H

                        Instances For
                          theorem Phenomena.Focus.Studies.IppolitoKissWilliams2025.probSupports_implies_posRelevant_binary {W : Type u_1} [Fintype W] (prior : Semantics.Questions.ProbabilisticAnswerhood.Prior W) (topic : BProp W) (evidence : WBool) (hH_pos : Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior topic > 0) (hNH_pos : (Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior fun (w : W) => !topic w) > 0) (hS_pos : Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior evidence > 0) (hNonneg : ∀ (w : W), prior.mass w 0) (hNorm : (Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior fun (x : W) => true) = 1) :
                          Semantics.Questions.Support.probSupports prior evidence topic = trueTheories.DTS.posRelevant { issue := { topic := topic }, prior := prior.mass } evidence

                          For binary issues, probabilistic probSupports (P(H|S) > P(H)) implies DTS posRelevant (BF_H(S) > 1).

                          Both capture the same intuition — S provides evidence for H — but via different formalizations: probSupports uses the absolute probability boost, while posRelevant uses the Bayes factor ratio.

                          The bridge is Bayes' theorem: P(H|S) > P(H) ↔ P(S∧H) > P(H)·P(S) (multiply by P(S) > 0) ↔ P(S∧H)·(1−P(H)) > P(H)·P(S∧¬H) (partition P(S), expand) ↔ P(S∧H)·P(¬H) > P(H)·P(S∧¬H) (normalization: P(¬H) = 1−P(H)) ↔ P(S|H) > P(S|¬H) (divide by P(H)P(¬H)) ↔ BF > 1.

                          theorem Phenomena.Focus.Studies.IppolitoKissWilliams2025.negRelevant_implies_not_probSupports {W : Type u_1} [Fintype W] (prior : Semantics.Questions.ProbabilisticAnswerhood.Prior W) (topic : BProp W) (evidence : WBool) (hH_pos : Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior topic > 0) (hNH_pos : (Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior fun (w : W) => !topic w) > 0) (hS_pos : Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior evidence > 0) (hNonneg : ∀ (w : W), prior.mass w 0) (hNorm : (Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior fun (x : W) => true) = 1) (hNeg : Theories.DTS.negRelevant { issue := { topic := topic }, prior := prior.mass } evidence) :

                          Negative relevance (DTS) implies non-support (probabilistic).

                          If S' is negatively relevant to H (BF < 1, i.e., P(S'|H) < P(S'|¬H)), then S' does not probabilistically support H. This is the formal content of IKW's observation that but's condition on the second clause is strictly stronger than discourse only's.

                          By contrapositive: if probSupports were true, Bayes' theorem would give posRelevant (BF > 1), contradicting negRelevant (BF < 1).

                          theorem Phenomena.Focus.Studies.IppolitoKissWilliams2025.but_sufficient_for_only {W : Type u_1} [Fintype W] (prior : Semantics.Questions.ProbabilisticAnswerhood.Prior W) (topic : BProp W) (s s' : WBool) (hH_pos : Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior topic > 0) (hNH_pos : (Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior fun (w : W) => !topic w) > 0) (_hS_pos : Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior s > 0) (hS'_pos : Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior s' > 0) (_hSpos : Theories.DTS.posRelevant { issue := { topic := topic }, prior := prior.mass } s) (hS'neg : Theories.DTS.negRelevant { issue := { topic := topic }, prior := prior.mass } s') (hNonneg : ∀ (w : W), prior.mass w 0) (hNorm : (Semantics.Questions.ProbabilisticAnswerhood.probOfProp prior fun (x : W) => true) = 1) :

                          Every but context can license discourse only.

                          When S is posRelevant and S' is negRelevant (the but condition), S' also fails to probabilistically support H (the only condition). This formalizes @cite{ippolito-kiss-williams-2025} §6's claim that discourse only is strictly weaker than but.

                          Discourse only's CI implies unexpectedness when the QUD is binary, S' is negatively relevant, and CIP holds.

                          When S is posRelevant and S' is negRelevant (the stronger but condition), Merin's Theorem 8 gives P(S'|S) < P(S'): S' is unexpected given S.

                          Note: this theorem uses the stronger but condition (negRelevant) rather than the weaker discourse only condition (¬probSupports). Unexpectedness in Merin's sense requires active counter-relevance, not just failure to support. This means unexpectedness is a consequence when discourse only sentences happen to meet the stronger but threshold.