Explanation of defect_floor_exceeds_any_bound
(1) What the declaration says in plain English
The theorem defect_floor_exceeds_any_bound states that for any DefectSensor with nonzero charge and any finite real bound K, there exists a natural number N (refinement depth) such that K is strictly less than the annular topological floor computed at that depth for the sensor's charge. In other words, the defect's topological floor diverges to infinity as sampling is refined.
(2) Why it matters in Recognition Science
This result is central to the carrier-defect budget comparison strategy (Phase 4a of the RH closure plan) in the module. The carrier family has charge zero and thus bounded excess cost, while the defect family (from the reciprocal zeta) has nonzero charge m and a topological floor that grows as Θ(m² log N). The divergence supplies the contradiction: no finite carrier budget can bound the defect's total cost on shared circles, ruling out hypothetical zeros with nonzero charge.
(3) How to read the formal statement
The Lean declaration reads:
theorem defect_floor_exceeds_any_bound
(sensor : DefectSensor) (hm : sensor.charge ≠ 0)
(K : ℝ) :
∃ N : ℕ, K < annularTopologicalFloor N sensor.charge :=
defect_topological_floor_unbounded sensor hm K
In standard mathematical notation: ∀ sensor with charge ≠ 0, ∀ real K, ∃ natural N such that K < annularTopologicalFloor(N, charge). The proof is a direct call to the unboundedness result.
(4) Visible dependencies or certificates in the supplied source
It depends directly on defect_topological_floor_unbounded (invoked in the proof body). Closely related declarations in the same module include carrier_defect_budget_contradiction (identical statement packaged for budget transfer) and defect_cost_unbounded_of_shared_pair (unbounded cost for nonzero charge on shared circles). The module imports supporting structures from AnnularCost, DefectSampledTrace, and CostCoveringBridge.
(5) What this declaration does not prove
It does not establish the existence or concrete definition of DefectSensor, annularTopologicalFloor, or DefectPhaseFamily; those live in imported modules. It assumes nonzero charge but does not prove that such charges occur for zeta zeros. It is a supporting lemma for the budget comparison and does not constitute the full RH contradiction or any empirical verification.