John nirenberg
DeGiorgi.john_nirenberg
Plain-language statement
John-Nirenberg exponential decay from a one-step decay hypothesis on pointwise level sets.
Exact Lean statement
theorem john_nirenberg
{u : E → ℝ} {x₀ : E} {r t A θ : ℝ}
(_hr : 0 < r) (ht : 0 < t) (hu_meas : Measurable u)
(hA : 0 < A) (hθ_pos : 0 < θ) (hθ_lt : θ < 1)
(h_decay : ∀ lam : ℝ, 0 < lam →
volume ({x ∈ Metric.ball x₀ r |
‖u x - ⨍ y in Metric.ball x₀ r, u y ∂volume‖ > lam + A}) ≤
ENNReal.ofReal θ *
volume ({x ∈ Metric.ball x₀ r |
‖u x - ⨍ y in Metric.ball x₀ r, u y ∂volume‖ > lam})) :
volume ({x ∈ Metric.ball x₀ r |
‖u x - ⨍ y in Metric.ball x₀ r, u y ∂volume‖ > t}) ≤
ENNReal.ofReal (1 / θ) * volume (Metric.ball x₀ r) *
ENNReal.ofReal (Real.exp (-t * (-Real.log θ / A)))Formal artifact
Lean source
theorem john_nirenberg {u : E → ℝ} {x₀ : E} {r t A θ : ℝ} (_hr : 0 < r) (ht : 0 < t) (hu_meas : Measurable u) (hA : 0 < A) (hθ_pos : 0 < θ) (hθ_lt : θ < 1) (h_decay : ∀ lam : ℝ, 0 < lam → volume ({x ∈ Metric.ball x₀ r | ‖u x - ⨍ y in Metric.ball x₀ r, u y ∂volume‖ > lam + A}) ≤ ENNReal.ofReal θ * volume ({x ∈ Metric.ball x₀ r | ‖u x - ⨍ y in Metric.ball x₀ r, u y ∂volume‖ > lam})) : volume ({x ∈ Metric.ball x₀ r | ‖u x - ⨍ y in Metric.ball x₀ r, u y ∂volume‖ > t}) ≤ ENNReal.ofReal (1 / θ) * volume (Metric.ball x₀ r) * ENNReal.ofReal (Real.exp (-t * (-Real.log θ / A))) := by set avg := ⨍ y in Metric.ball x₀ r, u y ∂volume set E_lam : ℝ → Set E := fun lam => {x ∈ Metric.ball x₀ r | ‖u x - avg‖ > lam} have hball_meas : MeasurableSet (Metric.ball x₀ r) := measurableSet_ball have hE_sub : ∀ lam, E_lam lam ⊆ Metric.ball x₀ r := fun lam x hx => hx.1 have hE_meas : ∀ lam, MeasurableSet (E_lam lam) := by intro lam exact hball_meas.inter (measurableSet_lt measurable_const ((hu_meas.sub_const avg).norm)) have hE_anti : ∀ lam₁ lam₂, lam₁ ≤ lam₂ → E_lam lam₂ ⊆ E_lam lam₁ := by intro lam₁ lam₂ hle x hx exact ⟨hx.1, lt_of_le_of_lt hle hx.2⟩ simpa [E_lam, avg] using john_nirenberg_iteration hball_meas (measure_ball_lt_top (μ := volume) (x := x₀) (r := r)).ne hE_sub hE_meas hE_anti hA hθ_pos hθ_lt h_decay t ht- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/Oscillation/BMO.lean:206-232
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
Ae eq of tendsto e Lp Norm sub
BareFunction.ae_eq_of_tendsto_eLpNorm_sub
Plain-language statement
Lp limit uniqueness: if f_n → g₁ and f_n → g₂ in eLpNorm, then g₁ =ᵐ g₂.
Source project: DeGiorgi
Person-level attribution pending.
E Lp Norm pi le sum component
BareFunction.eLpNorm_pi_le_sum_component
Plain-language statement
Vector eLpNorm ≤ sum of component eLpNorms for Pi-valued functions. Uses eLpNorm_mono_real for the pointwise bound together with eLpNorm_sum_le for ℝ-valued functions, avoiding Pi instance synthesis.
Source project: DeGiorgi
Person-level attribution pending.
Mem Lp of tendsto e Lp Norm
BareFunction.memLp_of_tendsto_eLpNorm
Plain-language statement
If f n → g in eLpNorm and each f n ∈ Lp, then g ∈ Lp, provided g is AEStronglyMeasurable. Avoids the Lp type entirely. The key observation: eLpNorm (f n - g) → 0 means eLpNorm (f N - g) < 1 for some N. Then eLpNorm g ≤ eLpNorm (f N - g) + eLpNorm (f N) < ∞.
Source project: DeGiorgi
Person-level attribution pending.