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

Linfty subsolution De Giorgi ae zero of smallness

DeGiorgi.linfty_subsolution_DeGiorgi_ae_zero_of_smallness

Plain-language statement

Small-data De Giorgi endpoint: if the canonical De Giorgi energy sequence tends to zero, then the final truncation vanishes almost everywhere on the half-ball. This is the formally correct endpoint available from the current Chapter 05 infrastructure before any representative/continuity upgrade.

Exact Lean statement

theorem linfty_subsolution_DeGiorgi_ae_zero_of_smallness
    {u : E → ℝ} {x₀ : E} {K lamStar : ℝ}
    (hd : 2 < (d : ℝ))
    (hK : 0 < K) (hLamStar : 0 < lamStar)
    (hStarInt :
      IntegrableOn (fun x => |positivePartSub u lamStar x| ^ 2)
        (Metric.ball x₀ (1 / 2 : ℝ)) volume)
    (hAint :
      ∀ n,
        IntegrableOn (fun x => |positivePartSub u (deGiorgiLevel lamStar n) x| ^ 2)
          (Metric.ball x₀ (deGiorgiRadius n)) volume)
    (hpre :
      ∀ n,
        deGiorgiEnergySeq u x₀ lamStar (n + 1) ≤
          K / ((deGiorgiRadius n - deGiorgiRadius (n + 1)) ^ 2 *
            (deGiorgiLevel lamStar (n + 1) - deGiorgiLevel lamStar n) ^ (4 / (d : ℝ))) *
          deGiorgiEnergySeq u x₀ lamStar n ^ (1 + 2 / (d : ℝ)))
    (hsmall :
      deGiorgiEnergySeq u x₀ lamStar 0 ≤
        (deGiorgiRecurrenceCoeff d K lamStar) ^ (-(1 : ℝ) / (2 / (d : ℝ))) *
          (deGiorgiRecurrenceBase d) ^ (-(1 : ℝ) / (2 / (d : ℝ)) ^ 2)) :
    ∀ᵐ x ∂(volume.restrict (Metric.ball x₀ (1 / 2 : ℝ))),
      positivePartSub u lamStar x = 0

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem linfty_subsolution_DeGiorgi_ae_zero_of_smallness    {u : E  } {x₀ : E} {K lamStar : }    (hd : 2 < (d : ))    (hK : 0 < K) (hLamStar : 0 < lamStar)    (hStarInt :      IntegrableOn (fun x => |positivePartSub u lamStar x| ^ 2)        (Metric.ball x₀ (1 / 2 : )) volume)    (hAint :       n,        IntegrableOn (fun x => |positivePartSub u (deGiorgiLevel lamStar n) x| ^ 2)          (Metric.ball x₀ (deGiorgiRadius n)) volume)    (hpre :       n,        deGiorgiEnergySeq u x₀ lamStar (n + 1)           K / ((deGiorgiRadius n - deGiorgiRadius (n + 1)) ^ 2 *            (deGiorgiLevel lamStar (n + 1) - deGiorgiLevel lamStar n) ^ (4 / (d : ))) *          deGiorgiEnergySeq u x₀ lamStar n ^ (1 + 2 / (d : )))    (hsmall :      deGiorgiEnergySeq u x₀ lamStar 0         (deGiorgiRecurrenceCoeff d K lamStar) ^ (-(1 : ) / (2 / (d : ))) *          (deGiorgiRecurrenceBase d) ^ (-(1 : ) / (2 / (d : )) ^ 2)) :    ᵐ x ∂(volume.restrict (Metric.ball x₀ (1 / 2 : ))),      positivePartSub u lamStar x = 0 := by  have hA_nonneg :  n, 0  deGiorgiEnergySeq u x₀ lamStar n := by    intro n    simp [deGiorgiEnergySeq]    refine integral_nonneg ?_    intro x    positivity  have hvanish :      Tendsto (deGiorgiEnergySeq u x₀ lamStar) atTop (nhds 0) :=    deGiorgi_preiter_vanishing hd hK hLamStar hA_nonneg hpre hsmall  exact ae_eq_zero_of_forall_setIntegral_sq_le_of_tendsto_zero hStarInt    (integral_sq_halfBall_le_deGiorgiEnergySeq hLamStar hStarInt hAint) hvanish
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/DeGiorgiIteration/Linfty.lean:1006-1039

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