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 #
- Worked example: some/all symmetry verified computationally
- Bridge to Fox 2007: exh vacuous with symmetric alts, correct without
- Bridge to Katzir 2007: structural F breaks symmetry
- 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):
- Katzir defines F(S) structurally → symmetry is broken in F
- Fox defines
exhvia innocent exclusion → symmetric alts are not in I-E (they appear in different maximal consistent exclusions) - Fox & Katzir prove that contextual restriction C cannot break symmetry — only F can
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.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Alternatives.FoxKatzir2011.instBEqHWWorld.beq x✝ y✝ = (x✝.ctorIdx == y✝.ctorIdx)
Instances For
"All" and "some but not all" are symmetric alternatives of "some": they partition "some"'s denotation.
Symmetric complement verified: some ∧ ¬all = sbna on this domain.
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.
The symmetry problem in a nutshell: with the full set {some, all, sbna}, exh is vacuous (no SIs). With the restricted set {some, all}, exh correctly derives ¬all.
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.
all_is_alternative_to_some: "all" ∈ F("some")symmetry_problem_solved: "some but not all" ∉ F("some")
These are re-exported from StructuralAlternatives.lean.
F contains the non-symmetric alternative (all) but excludes the symmetric partner (sbna). This is exactly what's needed for exh to derive the correct SI ¬all.
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):
- For SI: F(S) = Horn scales (stipulated)
- For AF: F(S) = Rooth's focus semantics (type-based)
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
- Alternatives.FoxKatzir2011.substitutionSourceFC lexicon φ salient = lexicon ++ φ.subtrees ++ salient
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.