T2 · ε-Robust Constraint
Tier 2 Paper Theorem 5.1 · Lean module MoF_11_EpsilonRobust
Boundary fixation gives a single point that the defense cannot move. Lipschitz regularity spreads the failure to a neighborhood.
Statement
::: theorem Let
In particular the defense cannot push any point within distance
Why the bound holds
The proof is a two-line chain of triangle inequalities:
Picture: the ε-band the defense cannot clear
::: theorem Positive-measure
where
A short proof of the band bound
Let
so
What T2 buys you over T1
| Property | T1 · Boundary Fixation | T2 · ε-Robust |
|---|---|---|
| Kind of failure | single point | bounded region |
| Hypothesis on | Hausdorff + connected | + metric structure |
| Hypothesis on | continuous | continuous + Lipschitz |
| Measure of failure | 0 | positive |
| Upgradable to T3? | — | yes, via transversality |
Notes and caveats
- On the
-band itself the defense is forced to act as the identity on the open part ( by utility preservation) and to fix the boundary-of- part by T1. The only points on the band where has any freedom are boundary points outside , which for Lipschitz on form a measure-zero level set. - The bound
is tight: both linear and scaled achieve equality.
In Lean
MoF_11_EpsilonRobust contains the whole tier T2:
-- Lipschitz defense barely moves points near its fixed points
theorem defense_fixes_nearby
{D : X → X} {K : ℝ≥0} (hD : LipschitzWith K D)
{z x : X} (hz : D z = z) :
dist (D x) x ≤ (↑K + 1) * dist x z
-- The core bound
theorem defense_output_near_threshold
(hf : LipschitzWith L f) (hD : LipschitzWith K D)
(hz : D z = z) (hfz : f z = τ) :
|f (D x) - τ| ≤ (↑L * ↑K) * dist x z
-- The band has positive measure
theorem epsilon_band_positive_measure
(hf : LipschitzWith L f) …
-- Master bundling theorem
theorem epsilon_robust_impossibility : …Next
- T3 · Persistent Unsafe Region — when the Lipschitz budget is too small to flatten
on a neighborhood. - Defense Dilemma (K*) — the designer's trade-off in choosing
. - Volume bounds — explicit lower bounds on
and on the persistent set.