Documentation

Linglib.Phenomena.FreeChoice.Studies.AloniVanOrmondt2023

@cite{aloni-vanormondt-2023}: QBSML applied to modified numerals + split disjunction #

@cite{aloni-vanormondt-2023} @cite{aloni-2022}

Aloni & van Ormondt 2023 introduces QBSML, the first-order extension of Aloni 2022's BSML, and applies it to a battery of inferences arising from modified numerals analysed as disjunctions: at least n φ ↦ n ∨ more, at most n φ ↦ n ∨ less.

The framework's central facts (paper §5):

FactStatement
3[Pa ∨ Pb]⁺ ⊨_epi ◇Pa ∧ ◇Pb (ignorance, R state-based)
4[∀xPx ∨ Qx]⁺ ⊭ ∀x(◇Px ∧ ◇Qx) (obviation; counterexample on paper Fig. 16)
5card(s)=1 ⇒ M, s ⊨ [∀x(Px ∨ Qx)]⁺ ⇒ M, s ⊨ ∃xPx ∧ ∃xQx (distribution under full information)
6[∀x(Px ∨ Qx)]⁺ ⊨_epi ∃x◇Px ∧ ∃x◇Qx (distribution° on epistemic models)
7[□(Pa ∨ Pb)]⁺ ⊨ ◇Pa ∧ ◇Pb (□-free choice)
8[◇(Pa ∨ Pb)]⁺ ⊨ ◇Pa ∧ ◇Pb (◇-free choice; ≡ Aloni 2022 NS FC at first-order)
9[∀x◇(Px ∨ Qx)]⁺ ⊨ ∀x◇Px ∧ ∀x◇Qx (universal FC; @cite{chemla-2009})
10[¬(Pa ∨ Pb)]⁺ ⊨ ¬Pa ∧ ¬Pb (negation behaviour; ignorance disappears)

What this file proves #

The QBSML substrate now carries the universal forms of Facts 8 and 10 (in Theories/Semantics/QBSML/FreeChoice.lean). This file instantiates both at a concrete model — paralleling Aloni2022.lean's pattern of substrate-theorem invocation:

Concrete model #

What is deferred #

Atoms and worlds #

This file reuses Phenomena.FreeChoice.{FCAtom, PowerSet2World} from the existing FreeChoice substrate, ensuring AvO 2023 + Aloni 2022 both target the same world space.

Two unary predicates P and Q: provides the non-degenerate disjunction Pa ∨ Qa matching the paper's Pa ∨ Pb schema (where the a, b are domain elements rather than predicate-instances). With monadic predicates over a 2-element domain, Pa ∨ Qa and Pa ∨ Pb are equally non-trivial instantiations of split disjunction.

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

      Single variable x.

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

          Universal-access deontic-style model on PowerSet2World.

          • pInterp .P w = {d ∈ {a, b} | w.holds d} (P holds at w iff w models the atom)
          • pInterp .Q w = {d ∈ {a, b} | w.holds d} (Q same shape — picks out same set)

          Both predicates have the same per-world extension. The disjunction PxQx is non-degenerate at the formula level even though at this model the two interpretations coincide. A model with divergent P and Q extensions would discriminate further; this minimal model suffices for the substrate-instantiation tests below.

          Universal access (access _ = univ) means R is indisputable on every state but not state-based — same shape as Aloni2022.deonticModel.

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

            The atomic formula Px.

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

              The atomic formula Qx.

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

                Fact 10 (Negation behaviour) at avoModel:

                Enriched negation [¬(Px ∨ Qx)]⁺ entails the conjunction of negated disjuncts ¬Px ∧ ¬Qx. One-line invocation of the substrate's negationStrip_Q (Theories/Semantics/QBSML/FreeChoice.lean). Mirrors Aloni2022.aloni2022_fact11_dual_prohibition style — substrate theorem, model + NE-free witnesses applied.

                Fact 8 (Narrow-Scope free choice / ◇-FC) at avoModel:

                Enriched possibility-disjunction [◇(Px ∨ Qx)]⁺ entails ◇Px ∧ ◇Qx. One-line invocation of narrowScopeFC_Q. The first-order analogue of Aloni2022.aloni2022_fact4_NS_FC — same template, lifted to QBSML's monadic predicate language.

                avoModel's universal accessibility makes R indisputable on every state (every world sees the same Finset.univ). Mirrors Aloni2022.deonticModel_indisputable_on_team for the QBSML carrier.

                Indisputability vs state-basedness (paper §4.1.1, Definition 4.10):

                • Indisputable: all worlds in s↓ see the same accessible set (R constant).
                • State-based: every w ∈ s↓ sees exactly s↓ (R(w) = s↓).

                State-basedness is strictly stronger and is the precondition for the epistemic facts: Fact 3 (ignorance), Fact 6 (epistemic distribution). Facts 8 and 10 (formalised above) need no frame condition at all — they hold on every model.