Documentation

Linglib.Theories.Semantics.Alternatives.FoxKatzir2011

Fox & Katzir 2011: On the Characterization of Alternatives #

@cite{fox-katzir-2011}

Fox, D. & Katzir, R. (2011). On the characterization of alternatives. Natural Language Semantics, 19(1), 87–107.

Core Argument #

The formal alternatives for Scalar Implicatures (SI) and Association with Focus (AF) are determined the same way — via @cite{katzir-2007}'s structural complexity, not via Horn scales (for SI) or Rooth's focus semantics (for AF).

Key Formalized Results #

  1. Worked example: some/all symmetry verified computationally
  2. Bridge to Fox 2007: exh vacuous with symmetric alts, correct without
  3. Bridge to Katzir 2007: structural F breaks symmetry
  4. Unified F(S,C) (37): structural alternatives with contextual extension

The core symmetry infrastructure (isSymmetric, symmetric_complement, both_excluded_inconsistent, context_cannot_break_symmetry) lives in Symmetry.lean — those concepts predate this paper and are used across the exhaustification literature.

Connection to Linglib #

This file bridges @cite{katzir-2007} (StructuralAlternatives.lean) and @cite{fox-2007} (Fox2007.lean):

The Canonical Symmetric Example #

S = "John did some of the homework" S₁ = "John did all of the homework" S₂ = "John did some but not all of the homework"

⟦S₁⟧ ∪ ⟦S₂⟧ = ⟦S⟧ and ⟦S₁⟧ ∩ ⟦S₂⟧ = ∅ — the classic partition.

Three homework worlds: did all, did some (but not all), did none.

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

      With both symmetric alternatives, neither is innocently excludable: MCE₁ excludes all (index 1), MCE₂ excludes sbna (index 2).

      Without the symmetric alternative sbna (i.e., with Horn-scale alternatives {some, all}), "all" IS innocently excludable.

      F Breaks Symmetry #

      While C cannot break symmetry, the formal alternatives F(S) can. @cite{katzir-2007}'s structural definition excludes "some but not all" from F("some") because it requires ConjP/NegP structure not derivable from the substitution source.

      These are re-exported from StructuralAlternatives.lean.

      Unified Definition: F_SI = F_AF (claim 27) #

      Fox & Katzir argue that the formal alternatives for SI and AF should be defined identically — both via structural complexity (extending @cite{katzir-2007} to focused constituents).

      The standard view (26):

      Their proposal (37): both use structural alternatives restricted to focused constituents: F(S, C) = {S' : S' derived from S by replacing focused constituents with items ≲_C-comparable}

      This preserves focus sensitivity (from Rooth) while allowing symmetry breaking (from Katzir).

      Simplification: our formalAlternatives does not enforce the focus restriction (replacements may target any constituent, not only focused ones). The full definition 37 would require focus-marking on parse tree nodes. This simplification is conservative: the actual F(S,C) is a subset of our formalAlternatives.

      The substitution source for F(S, C) (conditions 34–35): Lexicon ∪ sub-constituents of S ∪ salient constituents in C.

      This extends @cite{katzir-2007}'s substitution source (def 41) with contextually salient material, enabling examples like Matsumoto's "warm"/"a little bit more than warm" (ex. 36).

      Equations
      Instances For

        Structural alternatives with contextual extension (definition 37). F(S, C) = {S' : S' ≲_C S}, where the substitution source includes salient constituents from context C.

        When salient = [], this reduces to @cite{katzir-2007}'s original structuralAlternatives (modulo the focus restriction; see above).

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