Multi-Turn Impossibility
Paper Theorem 9.1 · Lean module MoF_13_MultiTurn
Multi-turn interaction does not buy the defender anything: the impossibility recurs at every turn.
Statement
::: theorem Let
The proof is trivial: T1 fires once per turn.
Per-turn boundary fixation
::: remark History dependence is free. The functions
Why it gets worse for the defender
The attacker, not the defender, benefits from the extra degree of freedom.
Attacker's best observation is monotone
Let
Steering toward transversality
The paper and the Lean file formalize this as transversality_reachable: under mild assumptions, the attacker can steer the conversation toward a configuration where tier T3 bites. The defender has no symmetric steering lemma.
Capacity parity disadvantage
Even if attacker and defender have equal "capacity" (say, equal description length), the defender loses effective capacity because part of it is consumed by utility preservation: every safe input is a constraint that fixes
::: theorem Capacity parity disadvantage. Let
In Lean
structure MultiTurnSystem (X : Type*) [TopologicalSpace X] where
T : ℕ
f : Fin T → (X → ℝ)
D : Fin T → (X → X)
τ : ℝ
-- Main theorem: boundary fixation at every turn
theorem multi_turn_impossibility
[T2Space X] [ConnectedSpace X]
(sys : MultiTurnSystem X)
(h_cont_f : ∀ t, Continuous (sys.f t))
(h_cont_D : ∀ t, Continuous (sys.D t))
(h_preserve : ∀ t x, sys.f t x < sys.τ → sys.D t x = x)
(h_nontrivial : ∀ t, (∃ x, sys.f t x < sys.τ) ∧ (∃ x, sys.τ < sys.f t x)) :
∀ t, ∃ z, sys.f t z = sys.τ ∧ sys.D t z = z
-- Attacker benefits
theorem running_max_monotone : …
theorem transversality_reachable : …
theorem capacity_parity_disadvantage : …Next
- Stochastic Impossibility — randomization doesn't help either.
- Pipeline Degradation — what happens when turns involve tool calls.