T3 · Persistent Unsafe Region
Tier 3 Paper Theorem 6.3 · Lean module MoF_11_EpsilonRobust
Tier T2 pushes near-boundary points close to
Statement
::: theorem Let
If
is open; has positive measure (under any measure positive on non-empty open sets); - for every
, . :::
The budget picture
The defense has a finite "budget" for how much it can reduce
::: lemma Input-relative bound. For every
:::
Proof of the lemma
So
The picture
Geometrically, the defense can only pull
Where the conditions come from
::: remark The role of
Non-vacuousness via the gradient
In a normed space, the steep region is non-empty as soon as the Fréchet derivative of
::: lemma Transversality from directional derivative. If
This is the content of gradient_norm_implies_steep_nonempty in MoF_21_GradientChain, which derives the local growth bound directly from HasFDerivAt rather than assuming it.
How big is ?
Part (2) of the theorem says
- Coarea bound (
MoF_17_CoareaBound): ifis -Lipschitz on and there exists with , then . - Cone bound (
MoF_18_ConeBound): ifon an interval of length with , then .
In Lean
-- The steep region is open and non-empty under the gradient hypothesis
theorem steep_region_open : …
theorem steep_region_nonempty_of_grad : …
-- Persistence on the steep region
theorem persistent_unsafe_region
(hf : LipschitzWith L f) (hD : LipschitzWith K D)
(hD_safe : ∀ x, f x < τ → D x = x)
(z : X) (hz : z ∈ closure {x | f x < τ} \ {x | f x < τ})
(h_steep : x ∈ steep_region z ℓ K τ) :
f (D x) > τThe LaTeX Thm 6.3 corresponds directly to the Lean persistent_unsafe_region, and its positive-measure consequence is persistent_positive_measure.
Next
- Defense Dilemma (K*) — the tradeoff in picking
when you know the gradient norm . - Volume bounds — explicit lower bounds.
- Pipeline Degradation — when
becomes .