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

De Giorgi preiter abstract

DeGiorgi.deGiorgi_preiter_abstract

Plain-language statement

Abstract real-variable combination step for De Giorgi pre-iteration.

Exact Lean statement

theorem deGiorgi_preiter_abstract
    {d : ℕ} (hd : 0 < (d : ℝ))
    {Ilam Iθ G m Csob Cenergy θ lam : ℝ}
    (hCsob : 0 ≤ Csob) (hCenergy : 0 ≤ Cenergy)
    (hIθ : 0 ≤ Iθ) (hm : 0 ≤ m)
    (hsob : Ilam ≤ Csob * G * m ^ (2 / (d : ℝ)))
    (hmeasure : m ≤ ((lam - θ) ^ 2)⁻¹ * Iθ)
    (henergy : G ≤ Cenergy * Iθ) :
    Ilam ≤
      Csob * Cenergy * ((((lam - θ) ^ 2)⁻¹ * Iθ) ^ (2 / (d : ℝ))) * Iθ

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem deGiorgi_preiter_abstract    {d : } (hd : 0 < (d : ))    {Ilam Iθ G m Csob Cenergy θ lam : }    (hCsob : 0  Csob) (hCenergy : 0  Cenergy)    (hIθ : 0  Iθ) (hm : 0  m)    (hsob : Ilam  Csob * G * m ^ (2 / (d : )))    (hmeasure : m  ((lam - θ) ^ 2)⁻¹ * Iθ)    (henergy : G  Cenergy * Iθ) :    Ilam       Csob * Cenergy * ((((lam - θ) ^ 2)⁻¹ * Iθ) ^ (2 / (d : ))) *:= by  have hexp_nonneg : 0  2 / (d : ) := by positivity  have hm_pow :      m ^ (2 / (d : ))  ((((lam - θ) ^ 2)⁻¹ * Iθ) ^ (2 / (d : ))) := by    exact Real.rpow_le_rpow hm hmeasure hexp_nonneg  have hGI :      G * m ^ (2 / (d : ))         (Cenergy * Iθ) * ((((lam - θ) ^ 2)⁻¹ * Iθ) ^ (2 / (d : ))) := by    exact mul_le_mul henergy hm_pow (by positivity) (by positivity)  calc    Ilam  Csob * (G * m ^ (2 / (d : ))) := by      simpa [mul_assoc] using hsob    _  Csob * ((Cenergy * Iθ) * ((((lam - θ) ^ 2)⁻¹ * Iθ) ^ (2 / (d : )))) := by      exact mul_le_mul_of_nonneg_left hGI hCsob    _ = Csob * Cenergy * ((((lam - θ) ^ 2)⁻¹ * Iθ) ^ (2 / (d : ))) *:= by      ring
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/DeGiorgiIteration/Energy.lean:1081-1105

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