Documentation

Linglib.Phenomena.Conditionals.Studies.AlonsoOvalle2009

Alonso-Ovalle 2009 — "Counterfactuals, correlatives, and disjunction" #

@cite{alonso-ovalle-2009}

Linguistics and Philosophy 32(2): 207–244.

Core proposal #

The natural interpretation of disjunctive counterfactuals — "if A or B, would C" — selects from each disjunct's closest worlds, NOT from the union's closest worlds. @cite{alonso-ovalle-2009} (p. 207) refutes @cite{lewis-1973}'s standard minimal-change semantics on this reading without abandoning minimal change. Two refinements:

  1. Disjunctions introduce propositional alternatives in the semantic derivation (Hamblin-style alternative semantics, following Aloni 2003a, Simons 2005, and Alonso-Ovalle's own dissertation). The Or Rule (10) p. 212: or outputs the SET {⟦B⟧, ⟦C⟧} as alternatives rather than the Boolean union.
  2. Conditionals are correlative constructions (von Fintel 1994, Izvorski 1996, Bhatt & Pancheva 2006, Schlenker 2004). The if-clause is a universal quantifier over propositions; then is a propositional anaphor. This forces universal quantification over the disjunct alternatives.

Truth condition (eqn 25-26 p. 217) #

⟦if A, would C⟧ = λw. ∀p ∈ Alt(A): f_{≤,w}(p) ⊆ ⟦C⟧

Equivalently: every disjunct alternative's closest worlds satisfy the consequent. This is structurally @cite{santorio-2018}'s sdaEval — universal-over-per-alternative-conditionals (Simplification reading).

Connection to linglib substrate #

aoConditional IS @cite{santorio-2018}'s sdaEval (Phenomena/Conditionals/Studies/Santorio2018.lean); the bridge is rfl. The frameworks DIFFER in their treatment of the alternative set, not the per-alternative evaluation:

The differential prediction lives in @cite{santorio-2018} §IV.3 (Karenina/W&P 8-alternative example) and is proved as santorio_finds_mixed_truthmaker_ao_misses_it in that file.

§1 The bumper crop scenario (p. 208) #

Same scenario as @cite{mckay-vaninwagen-1977} (a variation of Nute 1975): "If we had had good weather this summer or the sun had grown cold, we would have had a bumper crop." Standard minimal-change with Boolean or predicts TRUE; intuition says FALSE. Worlds and similarity ordering already formalised in Studies/McKayVanInwagen1977.lean::cropSim and consumed via the substrate.

§2.1–2.2 The analysis #

def Phenomena.Conditionals.Studies.AlonsoOvalle2009.aoConditional {W : Type u_1} [DecidableEq W] [Fintype W] (sim : Core.Order.SimilarityOrdering W) (alts : List (Santorio2018.DecAlt W)) (C : WProp) [DecidablePred C] (w : W) :

@cite{alonso-ovalle-2009} conditional verdict for a disjunctive antecedent (eqn 25–26 p. 217): every disjunct alternative's closest worlds satisfy the consequent.

Definitionally equal to @cite{santorio-2018}'s sdaEval — the Simplification reading. The two accounts diverge in how the alternative SET is generated (see module docstring), not in this per-alternative evaluation rule.

Equations
Instances For
    theorem Phenomena.Conditionals.Studies.AlonsoOvalle2009.aoConditional_eq_sdaEval {W : Type u_1} [DecidableEq W] [Fintype W] (sim : Core.Order.SimilarityOrdering W) (alts : List (Santorio2018.DecAlt W)) (C : WProp) [DecidablePred C] (w : W) :
    aoConditional sim alts C w = Santorio2018.sdaEval sim alts C w

    Bridge: AO = Santorio's sdaEval. Definitionally equal; the two formalisations of the per-alternative-conditional reading coincide. The substantive difference between @cite{alonso-ovalle-2009} and @cite{santorio-2018} is the alternative-set construction, not this evaluation rule.

    def Phenomena.Conditionals.Studies.AlonsoOvalle2009.aoAlternatives {W : Type u_1} (A B : WProp) [DecidablePred A] [DecidablePred B] :

    Disjunct-only alternative set construction (Hamblin Or Rule, eqn 13 p. 213). For a disjunctive antecedent A or B, @cite{alonso-ovalle-2009}'s alternative set is exactly [⟨A, _⟩, ⟨B, _⟩] — the two disjunct denotations bundled with decidability. No conjunction, no disjunctive closure, no Katzir-generated structural alternatives. This is the locality @cite{santorio-2018} §III argues against.

    Equations
    Instances For

      §2.2.3 Universal force #

      The two-component analysis — alternative-generating or plus correlative-style universal quantification — entails the conjunction inference (27a) ⊨ (27b) ∧ (27c). The Lean witness below uses sdaEval_iff_forall from the @cite{santorio-2018} substrate.

      theorem Phenomena.Conditionals.Studies.AlonsoOvalle2009.ao_conjunction_inference {W : Type u_1} [DecidableEq W] [Fintype W] (sim : Core.Order.SimilarityOrdering W) (A B : WProp) [DecidablePred A] [DecidablePred B] (C : WProp) [DecidablePred C] (w : W) :

      Conjunction inference (eqn 27 p. 218): a disjunctive would- counterfactual entails each per-disjunct counterfactual. This is the SDA validity that @cite{alonso-ovalle-2009}'s analysis derives from universal force over alternatives. Consequence of sdaEval_iff_forall.