On two points the hypotheses of the zero-floor regrouping lemma are contradictory
ProvedKServer.chunk_combining_zero_floor_two_point_vacuousThe open regrouping lemma KServer.chunk_combining_zero_floor asks, for a chunk system with size floor , size ceiling and Doob jump bound , that the chunks be regrouped into exactly chunks with sizes in a window satisfying
Statement. If the underlying metric space has exactly two points , this hypothesis package is unsatisfiable: there is no such , and .
Why. By two-point rigidity (KServer.chunk_two_point_expTotal_le) the expected total mass of a chunk system on a two-point space with size floor is at most . Hence and therefore , which contradicts .
Consequence for the mission. The zero-floor regrouping lemma holds vacuously over two-point metric spaces, so no counterexample to it — and hence no two-point obstruction to the BCR induction at size floor zero — can be built there. Any counterexample must use a metric space with at least three points. (The hypotheses and are those of the open lemma and are not needed for the contradiction.)
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_combining_zero_floor_two_point_vacuous {X : Type*} [MetricSpace X] {s t : X}
{cB T pe : ℝ} {mL : ℕ} (C : ChunkSystemB X s t 0 cB T pe mL)
(hst : s ≠ t) (htwo : ∀ x : X, x = s ∨ x = t)
{jbS : ℝ} (hjb : C.DoobJumpBound jbS) (hjb0 : 0 ≤ jbS) (hcB : 0 ≤ cB)
{M : ℕ} (hM0 : 0 < M) {cLo' : ℝ} (hlo0 : 0 < cLo')
(hlo : cLo' ≤ (∑ ω, C.P ω * ∑ i, C.size ω i) / M - (cB + jbS)) : False := by sorry
end KServer