annularExcess
annularExcess defines the difference between total annular cost and the topological floor for a mesh of N concentric rings. Carrier-budget and charge-zero arguments in the Recognition Science cost-covering bridge cite this decomposition directly. The definition is a one-line subtraction of the precomputed floor from the summed ring costs.
claimFor an annular mesh of $N$ concentric rings with integer winding number $m$, the excess cost equals the total annular cost minus the topological floor value determined by $N$ and $m$.
background
The Annular J-Cost Framework supplies the phi-weighted cost function and annular sampling machinery for the RS topological cost-covering bridge. An AnnularMesh is a structure consisting of $N$ rings together with a single integer charge $m$ such that every ring carries exactly winding number $m$. annularCost sums the individual ring costs; annularTopologicalFloor returns the minimal cost enforced by that charge on the $N$-ring mesh.
proof idea
One-line wrapper that subtracts annularTopologicalFloor N mesh.charge from annularCost mesh.
why it matters in Recognition Science
The definition supplies the excess term required by annularExcess_nonneg, carrier_budget, and excess_bounded. It completes the annular topological floor and excess decomposition listed in the module documentation. The construction supports the transition from Jensen coercivity on rings to mesh-independent budget bounds for zero-charge carriers.
scope and limits
- Does not apply outside annular meshes with uniform winding.
- Does not compute numerical values or bounds; those appear in separate theorems.
- Does not address non-integer charges or non-concentric geometries.
formal statement (Lean)
468noncomputable def annularExcess {N : ℕ} (mesh : AnnularMesh N) : ℝ :=
proof body
Definition body.
469 annularCost mesh - annularTopologicalFloor N mesh.charge
470
471/-- Annular coercivity: for charge m ≠ 0, total annular cost diverges
472 as Θ(m² log N). Specifically:
473 annularCost ≥ (π²κ/4) · m² · ∑_{n=1}^{N} 1/n. -/
used by (19)
-
charge_zero_of_covered -
annularExcess_nonneg -
BudgetedCarrier -
carrier_budget -
excess_bounded -
carrier_cost_eq_excess_of_zero_charge -
defect_floor_exceeds_any_bound -
defect_topological_floor_unbounded -
uniformChargeMesh_excess_zero -
annularExcess_le_sum_of_ringCost_le_topologicalFloor_plus_regularError -
RealizedDefectAnnularExcessBounded -
realizedDefectAnnularExcessBounded_of_costBounded -
realizedDefectCostBounded_of_charge_zero_and_excessBounded -
ringRegularErrorBound_of_ringPerturbationControl -
eulerBudgetedCarrier -
honestPhaseFamily_excess_zero -
zetaDerivedPhaseFamily_excess_zero -
sampledTraceToAnnularTrace_excess_zero -
not_costDivergent_of_charge_zero