All proofs
Project-declaredLean 4.29.0-rc6 · mathlib@5c8398df5281

Abs ball Average sub six Ball Average le

DeGiorgi.abs_ballAverage_sub_sixBallAverage_le

Plain-language statement

The average shift estimate: |(u)_B - (u)_{6B}| ≤ 6^d * M.

Exact Lean statement

lemma abs_ballAverage_sub_sixBallAverage_le
    {u : E → ℝ} {x₀ : E} {r M : ℝ} (hr : 0 < r)
    (hu_int : IntegrableOn u (Metric.ball x₀ (6 * r)) volume)
    (hu_bmo : (⨍ x in Metric.ball x₀ (6 * r),
      ‖u x - ⨍ y in Metric.ball x₀ (6 * r), u y ∂volume‖ ∂volume) ≤ M) :
    |⨍ x in Metric.ball x₀ r, u x ∂volume -
      ⨍ x in Metric.ball x₀ (6 * r), u x ∂volume| ≤ 6 ^ d * M

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma abs_ballAverage_sub_sixBallAverage_le    {u : E  } {x₀ : E} {r M : } (hr : 0 < r)    (hu_int : IntegrableOn u (Metric.ball x₀ (6 * r)) volume)    (hu_bmo : (⨍ x in Metric.ball x₀ (6 * r),      ‖u x - ⨍ y in Metric.ball x₀ (6 * r), u y ∂volume‖ ∂volume)  M) :    |⨍ x in Metric.ball x₀ r, u x ∂volume -      ⨍ x in Metric.ball x₀ (6 * r), u x ∂volume|  6 ^ d * M := by  have h6r : 0 < 6 * r := by linarith  have hsub : Metric.ball x₀ r  Metric.ball x₀ (6 * r) :=    Metric.ball_subset_ball (by linarith)  have hle := abs_subballAverage_sub_ballAverage_le h6r hr hsub (hu_int)  have hratio : (6 * r / r) ^ d = (6 : ) ^ d := by    rw [mul_div_cancel_of_imp]    exact fun h => absurd h (ne_of_gt hr)  calc |⨍ x in Metric.ball x₀ r, u x ∂volume - ⨍ x in Metric.ball x₀ (6 * r), u x ∂volume|         (6 * r / r) ^ d * (⨍ z in Metric.ball x₀ (6 * r), ‖u z - ⨍ w in Metric.ball x₀ (6 * r), u w ∂volume‖ ∂volume) := hle      _ = 6 ^ d * (⨍ z in Metric.ball x₀ (6 * r), ‖u z - ⨍ w in Metric.ball x₀ (6 * r), u w ∂volume‖ ∂volume) := by rw [hratio]      _  6 ^ d * M := by exact mul_le_mul_of_nonneg_left hu_bmo (by positivity)
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/Oscillation/LocalJohnNirenberg.lean:358-375

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.29.0-rc6

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₂.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record
Project-declaredLean 4.29.0-rc6

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) < ∞.

partial differential equationsregularity theoryanalysis

Source project: DeGiorgi

Person-level attribution pending.

View proof record