Skip to content

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 (X,d) be a connected Hausdorff metric space. Let f:XR be continuous and L-Lipschitz, and let D:XX be continuous, K-Lipschitz, and utility-preserving with Sτ,Uτ. Let z be the fixed boundary point from T1. Then for every xX,

f(D(x))τLKd(x,z).

In particular the defense cannot push any point within distance δ of z more than LKδ below the threshold. :::

Why the bound holds

The proof is a two-line chain of triangle inequalities:

Picture: the ε-band the defense cannot clear

::: theorem Positive-measure ε-band. Under the hypotheses above, if f also takes some value below τε, then

B(c,ε4L)Bε={x:τεf(x)τ}

where c is any point with f(c)=τε/2 (exists by the IVT). In particular Bε has positive measure under any measure that gives non-empty open sets positive weight. :::

A short proof of the band bound

Let c satisfy f(c)=τε/2. For yB(c,ε/(4L)):

|f(y)f(c)|Lε4L=ε4,

so f(y)[τ3ε/4, τε/4][τε,τ], i.e. yBε.

What T2 buys you over T1

PropertyT1 · Boundary FixationT2 · ε-Robust
Kind of failuresingle pointbounded region
Hypothesis on XHausdorff + connected+ metric structure
Hypothesis on f, Dcontinuouscontinuous + Lipschitz
Measure of failure0positive
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 (f(x)<τ by utility preservation) and to fix the boundary-of-Sτ part by T1. The only points on the band where D has any freedom are boundary points outsidecl(Sτ), which for Lipschitz f on Rn form a measure-zero level set.
  • The bound LKδ is tight: both linear f and scaled D achieve equality.

In Lean

MoF_11_EpsilonRobust contains the whole tier T2:

lean
-- 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

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