A chunk of a chunk system has size at most the escape price
ProvedKServer.chunk_size_le_priceLet be a chunk system with online escapes with escape price . Then every chunk of has size at most the escape price:
Why. The cost axiom of a chunk system holds against every online escape rule, in particular against the rule that escapes immediately, before serving the first request of the current chunk. That rule lets any evader off for exactly the escape price, so the conditional cost that the axiom charges to a chunk is at most , and the size of the chunk is bounded by it.
Consequence. In any satisfiable chunk system the size floor is at most the escape price, so a chunk-level statement demanding a size floor larger than its escape price is vacuous. This is the basic consistency constraint tying the two parameters of the induction together.
import Mathlib import Definitions.Def_KServer_model import Definitions.Def_KServer_evader import Definitions.Def_KServer_evader_bail import Definitions.Def_KServer_chunk_system_b import Definitions.Def_KServer_chunk_cond
namespace KServer
theorem chunk_size_le_price {X : Type*} [MetricSpace X] {s t : X}
{cLo cHi total price : ℝ} {mL : ℕ} (C : ChunkSystemB X s t cLo cHi total price mL)
(hp : 0 ≤ price) (ω : C.Ω) (i : Fin C.m) : C.size ω i ≤ price := by sorry
end KServer