Skip to content

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 f:RnR be L-Lipschitz with L>0, and let μ denote Lebesgue measure. If there exists c with f(c)=τε/2, then

B(c,ε4L)Bε,μ(Bε)Vn(ε4L)n

where Vn is the volume of the unit ball in Rn. In R1 this simplifies to μ(Bε)ε/(2L). :::

What the bound tells you

  • Smoother surfaces → wider ε-bands. Halving L halves the allowed gradient of f, so the ε-band at least doubles its extent in each direction. In dimension n the band volume scales as Ln.
  • Sharper thresholds → tighter bands. The band shrinks polynomially in ε but remains positive as long as ε>0.

The cone bound for the persistent region

::: theorem Cone measure bound. On R with Lebesgue measure, if

f(x)τ+c(xz)for all x(z,z+δ0)

with c>(K+1), then

μ({x:f(D(x))>τ})δ0.

:::

The bound is tight: equality =δ0 holds precisely when the cone condition fails at z+δ0. If the cone extends further, the persistent region is strictly larger.

Two bounds side by side

Coarea bound (band)Cone bound (persistent)
ObjectBε{x:f(D(x))>τ}
Dimensionany nR1 (extends to Rn)
Lower boundVn(ε/(4L))nδ0
Input you needa point c with f(c)=τε/2the cone interval length δ0
Shrinks as…L grows(K+1) approaches the cone slope

Why the coarea name?

The bound is actually elementary — just Lipschitz control of f inside a ball. The name "coarea" is inherited from the paper's appendix, which frames the same calculation as a crude coarea-formula bound:

μ(Bε)=τετHn1(f1(t))dtfHn1(f1(τε/2))εL.

The Lean proof uses the concrete ball inclusion to avoid formalizing the full coarea formula.

In Lean

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 R1; the higher-dimensional coarea bound is a ball volume computation and is handled in MoF_Cost_01_BallVolume.

Next

The Defense Trilemma · mechanically verified in Lean 4 (46 files, ≈360 theorems, 0 sorry).