Quantitative Volume Bounds
Paper Theorems 7.1–7.2 · Lean modules MoF_17_CoareaBound, MoF_18_ConeBound
Tiers T2 and T3 both conclude "positive measure". The volume bounds make that explicit — concrete lower bounds on how much unsafe region survives the defense.
The coarea bound for the ε-band
::: theorem Coarea volume bound. Let
where
What the bound tells you
- Smoother surfaces → wider
-bands. Halving halves the allowed gradient of , so the -band at least doubles its extent in each direction. In dimension the band volume scales as . - Sharper thresholds → tighter bands. The band shrinks polynomially in
but remains positive as long as .
The cone bound for the persistent region
::: theorem Cone measure bound. On
with
:::
The bound is tight: equality
Two bounds side by side
| Coarea bound (band) | Cone bound (persistent) | |
|---|---|---|
| Object | ||
| Dimension | any | |
| Lower bound | ||
| Input you need | a point | the cone interval length |
| Shrinks as… |
Why the coarea name?
The bound is actually elementary — just Lipschitz control of
The Lean proof uses the concrete ball inclusion to avoid formalizing the full coarea formula.
In Lean
-- MoF_17_CoareaBound
theorem epsilon_band_contains_ball
{f : ℝ → ℝ} {L : ℝ} (hL : 0 < L) (hf : LipschitzWith L f) …
theorem epsilon_band_measure_lower_bound : …
-- MoF_18_ConeBound
theorem cone_implies_persistent
{f : ℝ → ℝ} (z δ₀ c : ℝ) (hc : c > ℓ*(K+1))
(h_cone : ∀ x ∈ Ioo z (z + δ₀), f x ≥ τ + c*(x - z)) :
MeasureTheory.volume { x | f (D x) > τ } ≥ δ₀Both are stated against Lebesgue measure on MoF_Cost_01_BallVolume.
Next
- Persistent Unsafe Region — where the cone bound applies.
- ε-Robust Constraint — where the coarea bound applies.
- Engineering Prescription — how the designer should read these bounds.