Documentation

Linglib.Studies.Thomas2026

Thomas (2026): A probabilistic, question-based approach to additivity #

[Tho26] [CGR18] [FG12]

Formalisation of [Tho26], which unifies the canonical additive use of too with a previously unstudied "argument-building" use by stating felicity in terms of Bayesian inquisitive answerhood. The substrate primitives (Answers, IsResolutionEvidencedBy, evidencesResolutionMore, IsRelevantTo) live in Semantics/Questions/Probabilistic.lean; this file encodes the felicity conditions of [Tho26] Def 64 and their abstract consequences.

Main definitions #

Main statements #

Implementation notes #

The relevant question RQ need not be a Current Question; [Tho26] §5.4.3 requires only that it be relevant to some discourse question, which IsTooLicensedByDQ captures via IsRelevantTo. The two prejacent conditions rule out the [BC08] ecstatic case (the prejacent already entails the answer) and the "some-instrument vs cello" case (a weaker prejacent would do); see the per-field docstrings of IsTooFelicitous.

TOO felicity #

structure Thomas2026.IsTooFelicitous {W : Type u_1} (prejacent antecedent : Set W) (rq : Question W) (μ : PMF W) :

Conditions (a)-(c) of [Tho26] Def 64. The full Def 64 additionally requires the relevant question to be relevant to a discourse question; that is IsTooLicensedByDQ.

Instances For

    Abstract consequences #

    theorem Thomas2026.IsTooFelicitous.antecedent_probOfSet_pos {W : Type u_1} {μ : PMF W} {prejacent antecedent : Set W} {rq : Question W} (h : IsTooFelicitous prejacent antecedent rq μ) :
    μ.probOfSet antecedent > 0

    TOO felicity entails that the antecedent puts positive prior mass: a direct corollary of Answers.probOfSet_pos applied to the antecedent condition.

    theorem Thomas2026.IsTooFelicitous.conjunction_probOfSet_pos {W : Type u_1} {μ : PMF W} {prejacent antecedent : Set W} {rq : Question W} (h : IsTooFelicitous prejacent antecedent rq μ) :
    μ.probOfSet (antecedent prejacent) > 0

    TOO felicity entails that the conjunction puts positive prior mass — same corollary applied to the conjunction condition.

    theorem Thomas2026.IsTooFelicitous.exists_strict_improvement {W : Type u_1} {μ : PMF W} {prejacent antecedent : Set W} {rq : Question W} (h : IsTooFelicitous prejacent antecedent rq μ) :
    ∃ (𝒜 : Set (Set W)), Semantics.Questions.Probabilistic.IsResolutionEvidencedBy rq 𝒜 (antecedent prejacent) μ μ.condProbSet (antecedent prejacent) (⋂₀ 𝒜) > μ.condProbSet antecedent (⋂₀ 𝒜)

    TOO felicity entails that the conjunction is genuinely stronger evidence than the antecedent alone (the [Tho26] §4.4 intuition that too marks a strict improvement). The witness 𝒜 from conjunction_stronger exhibits this; the inequality is evidencesResolutionMore unfolded.

    RQ relevance to a discourse question #

    def Thomas2026.IsTooLicensedByDQ {W : Type u_1} (prejacent antecedent : Set W) (rq dq : Question W) (μ : PMF W) :

    The full [Tho26] Def 64: IsTooFelicitous together with the requirement that rq be relevant to some discourse question dq. The RQ need not be a Current Question — §5.4.3 requires only relevance to a DQ.

    Equations
    Instances For

      Predicted infelicity #

      def Thomas2026.IsTooInfelicitous {W : Type u_1} (prejacent antecedent : Set W) (μ : PMF W) :

      Too is predicted infelicitous for a given (prejacent, antecedent) when no relevant question satisfies the felicity conditions ([Tho26] §5.5).

      Equations
      Instances For

        Data conformance #

        Each row of Data/Examples/Thomas2026.json records the paper's Def 64 diagnosis as a def64_status feature: satisfied, or the condition the paper identifies as failing (antecedent_violation for (3), conjunction_violation for (72)/(19c), prejacent_violation_i for (11), prejacent_violation_ii for (30)). The either row carries no diagnosis — fn. 9 leaves either to future work — so the transfer equation is stated for too rows only.

        theorem Thomas2026.too_acceptable_iff_def64_satisfied (row : Data.Examples.LinguisticExample) :
        row Examples.allrow.feature? "particle" = some "too"(row.judgment = Features.Judgment.acceptable row.feature? "def64_status" = some "satisfied")

        Transfer equation: a too row is acceptable iff the paper exhibits an (ANT, RQ) pair satisfying all of Def 64. Uniform across the standard and argument-building rows — [Tho26]'s unification thesis.

        Worked witness #

        A concrete model showing the answerhood structure underlying TOO felicity is satisfiable and discriminating. Over W = Fin 3 with the uniform prior, the evidence R = {1} answers the two-alternative question Q (alternatives A = {0,1} and B = {2}) via the singleton resolution {A}, while the trivial evidence Set.univ answers nothing. This instantiates the raises_prob and dominates fields that the abstract IsTooFelicitous structure never forces a caller to exhibit.

        @[reducible, inline]
        Equations
        Instances For
          @[reducible, inline]
          Equations
          Instances For
            @[reducible, inline]
            Equations
            Instances For
              @[reducible, inline]
              Equations
              Instances For
                noncomputable def Thomas2026.Witness.μ :
                PMF W

                The uniform prior on Fin 3.

                Equations
                Instances For

                  The relevant question: Avery invited Bailey? against Avery invited Cameron? — two incomparable alternatives A and B.

                  Equations
                  Instances For
                    theorem Thomas2026.Witness.mu_apply (i : W) :
                    μ i = 3⁻¹
                    theorem Thomas2026.Witness.hsel (A' : Set W) :
                    A' Q.altA' AR A' =

                    Positive witness: R answers Q, via the singleton resolution {A}.

                    Discriminating contrast: Answers distinguishes the informative evidence R from the uninformative Set.univ.