All proofs
Project-declaredLean 4.32.0 · mathlib@81a5d257c8e4

Lipschitz On With of i Lip ENorm ne top

LipschitzOnWith.of_iLipENorm_ne_top

Plain-language statement

If the project’s inhomogeneous Lipschitz norm of φ\varphi on the ball B(z,R)B(z,R) is finite, then φ\varphi is Lipschitz on that ball. A valid Lipschitz constant is the finite normalized norm divided by RR.

Exact Lean statement

lemma LipschitzOnWith.of_iLipENorm_ne_top (hφ : iLipENorm φ z R ≠ ⊤) :
    LipschitzOnWith (iLipNNNorm φ z R / R.toNNReal) φ (ball z R)

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma LipschitzOnWith.of_iLipENorm_ne_top (hφ : iLipENorm φ z R  ⊤) :    LipschitzOnWith (iLipNNNorm φ z R / R.toNNReal) φ (ball z R) := by  intro x hx y hy  have hR : 0 < R := by    simp only [mem_ball] at hx    apply dist_nonneg.trans_lt hx  rcases eq_or_ne x y with rfl | hne  · simp  have : (ENNReal.ofReal R) * (‖φ x - φ y‖ₑ / edist x y)  iLipENorm φ z R := calc      (ENNReal.ofReal R) * (‖φ x - φ y‖ₑ / (edist x y))    _  (ENNReal.ofReal R) *        ⨆ (x  ball z R) (y  ball z R) (_ : x  y), (‖φ x - φ y‖ₑ / edist x y) := by      gcongr      simp only [ne_eq, le_iSup_iff, iSup_le_iff]      tauto    _  _ := le_add_self  rw [edist_eq_enorm_sub, ENNReal.coe_div (by simp [hR]), iLipNNNorm, coe_toNNReal hφ]  rw [ ENNReal.div_le_iff_le_mul]; rotate_left  · have : edist x y  0 := by simp [hne]    simp [this]  · simp [edist_ne_top]  rw [ENNReal.le_div_iff_mul_le]; rotate_left  · simp [hR]  · simp  convert this using 1  simp only [ENNReal.ofReal, mul_comm]
Project
Carleson formalization
License
Apache-2.0
Commit
74ef907d6bdb
Source
Carleson/LipschitzNorm.lean:75-100

Reuse this declaration

Bring the exact result into your workflow

The import identifies the source module. Your project still needs the pinned package dependency shown on this page.

What this badge means

This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.

Continue in this project

Related declarations

Project-declaredLean 4.32.0

Ae tendsto zero of distribution le

ae_tendsto_zero_of_distribution_le

Plain-language statement

Suppose that, for every error threshold δ>0\delta>0 and every measure tolerance ε>0\varepsilon>0, one can choose N0N_0 so that the set where supN>N0f(x)FN(x)\sup_{N>N_0}\lVert f(x)-F_N(x)\rVert exceeds δ\delta has measure at most ε\varepsilon. Then FN(x)F_N(x) converges to f(x)f(x) for almost every xx.

harmonic analysisFourier analysismeasure theory

Source project: Carleson formalization

Person-level attribution pending.

View proof record
Project-declaredLean 4.32.0

Antichain operator

antichain_operator

Plain-language statement

For an antichain A\mathfrak{A} of pairwise incomparable tiles, and measurable functions ff and gg bounded by the indicators of FF and GG, the pairing of gg with the Carleson sum over A\mathfrak{A} is controlled by the L2L^2 norms of ff and gg and by positive powers of the two tile-density parameters. Concretely, the bound is

C(a,q)dens1(A)(q1)/(8a4)dens2(A)1/q1/2f2g2.C(a,q)\,\mathrm{dens}_1(\mathfrak{A})^{(q-1)/(8a^4)}\,\mathrm{dens}_2(\mathfrak{A})^{1/q-1/2}\,\lVert f\rVert_2\lVert g\rVert_2.

harmonic analysisFourier analysismeasure theory

Source project: Carleson formalization

Person-level attribution pending.

View proof record