IBR for Scalar Games #
For scalar interpretation games (truth sets totally ordered by inclusion), IBR converges to exhaustive interpretation (exhMW) at level 1.
The proof chains through strongestAt as a bridge predicate:
ibrN > 0 ↔ strongestAt ↔ exhMW
(rational choice) (order theory)
The left equivalence is proved by induction on the IBR sequence
(ibrN_pos_iff_strongestAt). The right equivalence is pure order theory
with no probabilities (strongestAt_iff_exhMW). This bypasses the general
convergence machinery in Convergence.lean entirely for scalar games.
Key results:
ibr_equals_exhMW: at every IBR level ≥ 1, the listener's support for a message is its exhMW interpretation — the scalar case where [Fra11]'s Fact 1 (§10,R₁(mS) ⊆ ExhMM(S)) sharpens to an equalityibr_converges_to_exhMW: IBR stabilizes at level 1 for scalar games (a derived strengthening; the paper states Fact 1 for R₁ only)
Franke writes ExhMM (minimal models) for the operator linglib names exhMW
(minimal worlds, the project-canonical name).
Scalar games #
A scalar game has truth sets that are totally ordered by inclusion — the
Horn-scale structure under which [Fra11]'s Fact 1 (R₁(mS) ⊆ ExhMM(S),
§10) sharpens to an equality. Without it, "dominated" messages (never optimal
at any state) fall back to the literal listener, breaking the exhMW
characterization.
Equations
- Franke2011.isScalarGame G = ∀ (m₁ m₂ : M), G.trueStates m₁ ⊆ G.trueStates m₂ ∨ G.trueStates m₂ ⊆ G.trueStates m₁
Instances For
In a scalar game, trueMessages are totally ordered: for any two states, one's true messages are a subset of the other's.
Proof: If ∃ m₁ ∈ trueMessages(s₁) \ trueMessages(s₂) and ∃ m₂ ∈ trueMessages(s₂) \ trueMessages(s₁), then trueStates(m₁) and trueStates(m₂) are incomparable (s₁ distinguishes them one way, s₂ the other), contradicting isScalarGame.
In a scalar game, at an m-true state with fewest true messages, every message true there is weaker than m: its truth set contains trueStates(m).
Alternative-set bridge #
Convert interpretation game to alternative set for exhaustification.
Equations
- Franke2011.toAlternatives G = {x : Set T | ∃ (m : M), (fun (s : T) => G.meaning m s) = x}
Instances For
The prejacent proposition for a message.
Equations
- Franke2011.prejacent G m s = G.meaning m s
Instances For
Strict subset of trueMessages implies <_ALT under toAlternatives G.
Key lemma: s' <_ALT s implies trueMessages s' ⊂ trueMessages s.
The strongestAt bridge #
strongestAt G m s — "m is the strongest true message at s":
m is true at s, and trueStates(m) is contained in trueStates(m')
for every other message m' true at s.
In a scalar game, this picks out the unique most informative message. This predicate is the purely set-theoretic bridge between the probabilistic IBR sequence and the logical exhMW operator:
ibrN > 0 ↔ strongestAt ↔ exhMW
The left equivalence is rational choice (proved via ibrN_opt_singleton).
The right equivalence is pure order theory (no probabilities).
Equations
- Franke2011.strongestAt G m s = (G.meaning m s ∧ ∀ (m' : M), G.meaning m' s → G.trueStates m ⊆ G.trueStates m')
Instances For
Forward: strongestAt → exhMW. Pure order theory, no probabilities.
Backward: exhMW → strongestAt (requires scalar game).
exhMW-minimality → card-minimality (via scalar totality) →
strongest (via scalar_minimal_messages_weaker).
For scalar games, strongestAt ↔ exhMW. The purely set-theoretic core of the IBR = exhMW theorem. No probabilities, no EG monotonicity.
IBR positivity at scalar games #
Main theorems #
IBR = exhMW for scalar games ([Fra11] Fact 1, §10, sharpened).
At any IBR level k+1 of a scalar interpretation game, the listener's positive-probability states for message m are exactly the exhMW-minimal states.
Franke's Fact 1 states containment (R₁(mS) ⊆ ExhMM(S)) for the level-1
receiver, with equality under a "homogeneity" condition. For scalar games the
nested truth sets deliver equality at every level ≥ 1, which is what is proved
here — a per-level statement, not a fixed-point theorem.
The proof chains through strongestAt as a bridge:
ibrN > 0 ↔ strongestAt ↔ exhMW
(rational choice) (order theory)
Restriction: requires hIBR : ∃ k, H = ibrN G (k + 1), i.e. H arises from
the IBR iteration; the claim is false for arbitrary hearer strategies.
Two structural hypotheses:
isScalarGame: truth sets are totally ordered by inclusion (nested)hDistinct: no two messages have identical truth sets
For scalar games, IBR stabilizes at level 1: ibrN G 1 already assigns
positive probability exactly to the exhMW-minimal states, bypassing the
general convergence machinery (ibr_reaches_fixed_point in
Convergence.lean).
The stabilization claim is derived here; [Fra11] states Fact 1 for the level-1 receiver only.