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

De Giorgi preiter to recurrence

DeGiorgi.deGiorgi_preiter_to_recurrence

Plain-language statement

Rewrite the one-step estimate on canonical radii and levels into the standard nonlinear recurrence.

Exact Lean statement

theorem deGiorgi_preiter_to_recurrence
    {Aseq : ℕ → ℝ} {d : ℕ}
    {K lamStar : ℝ} (hLamStar : 0 < lamStar)
    (hpre :
      ∀ n,
        Aseq (n + 1) ≤
          K / ((deGiorgiRadius n - deGiorgiRadius (n + 1)) ^ 2 *
            (deGiorgiLevel lamStar (n + 1) - deGiorgiLevel lamStar n) ^ (4 / (d : ℝ))) *
          Aseq n ^ (1 + 2 / (d : ℝ))) :
    ∀ n,
      Aseq (n + 1) ≤
        deGiorgiRecurrenceCoeff d K lamStar *
          deGiorgiRecurrenceBase d ^ n *
          Aseq n ^ (1 + 2 / (d : ℝ))

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem deGiorgi_preiter_to_recurrence    {Aseq :   } {d : }    {K lamStar : } (hLamStar : 0 < lamStar)    (hpre :       n,        Aseq (n + 1)           K / ((deGiorgiRadius n - deGiorgiRadius (n + 1)) ^ 2 *            (deGiorgiLevel lamStar (n + 1) - deGiorgiLevel lamStar n) ^ (4 / (d : ))) *          Aseq n ^ (1 + 2 / (d : ))) :     n,      Aseq (n + 1)         deGiorgiRecurrenceCoeff d K lamStar *          deGiorgiRecurrenceBase d ^ n *          Aseq n ^ (1 + 2 / (d : )) := by  intro n  have htwo_pos : 0 < (2 : ) := by positivity  have hhalf : (1 / 2 : ) = (2 : ) ^ (-(1 : )) := by    rw [Real.rpow_neg (by positivity), Real.rpow_one]    norm_num  have hrad :      (deGiorgiRadius n - deGiorgiRadius (n + 1)) ^ 2 =        (2 : ) ^ (-(2 * n + 6 : )) := by    rw [deGiorgiRadius_gap, pow_two,  pow_add]    have hnat : n + 3 + (n + 3) = 2 * n + 6 := by omega    rw [hnat,  Real.rpow_natCast]    rw [hhalf]    rw [ Real.rpow_mul htwo_pos.le]    rw [show (-(1 : )) * (((2 * n + 6 : ) : )) = -(2 * (n : ) + 6) by      norm_num [Nat.cast_add, Nat.cast_mul]]  have htail_rpow :      ((1 / 2 : ) ^ (n + 2)) ^ (4 / (d : )) =        (2 : ) ^ (-((n + 2 : ) * (4 / (d : )))) := by    rw [ Real.rpow_natCast]    rw [hhalf]    rw [show (((n + 2 : ) : ) = (n : ) + 2) by norm_num]    calc      (((2 : ) ^ (-(1 : ))) ^ ((n : ) + 2)) ^ (4 / (d : ))          = ((2 : ) ^ ((-(1 : )) * ((n : ) + 2))) ^ (4 / (d : )) := by              rw [ Real.rpow_mul htwo_pos.le]      _ = (2 : ) ^ (((-(1 : )) * ((n + 2 : ))) * (4 / (d : ))) := by            rw [ Real.rpow_mul htwo_pos.le]      _ = (2 : ) ^ (-((n + 2 : ) * (4 / (d : )))) := by            congr 1            ring  have hlev :      (deGiorgiLevel lamStar (n + 1) - deGiorgiLevel lamStar n) ^ (4 / (d : )) =        lamStar ^ (4 / (d : )) * (2 : ) ^ (-((n + 2 : ) * (4 / (d : )))) := by    rw [deGiorgiLevel_gap]    rw [Real.mul_rpow hLamStar.le (by positivity)]    rw [htail_rpow]  have hden :      (deGiorgiRadius n - deGiorgiRadius (n + 1)) ^ 2 *          (deGiorgiLevel lamStar (n + 1) - deGiorgiLevel lamStar n) ^ (4 / (d : )) =        lamStar ^ (4 / (d : )) *          (2 : ) ^ (-(6 + 8 / (d : ) + n * (2 + 4 / (d : )))) := by    rw [hrad, hlev]    calc      (2 : ) ^ (-(2 * n + 6 : )) * (lamStar ^ (4 / (d : )) *          (2 : ) ^ (-((n + 2 : ) * (4 / (d : )))))          = lamStar ^ (4 / (d : )) *              ((2 : ) ^ (-(2 * n + 6 : )) *                (2 : ) ^ (-((n + 2 : ) * (4 / (d : ))))) := by                ring      _ = lamStar ^ (4 / (d : )) *            (2 : ) ^ (-(2 * n + 6 : ) + -((n + 2 : ) * (4 / (d : )))) := by              rw [ Real.rpow_add htwo_pos]      _ = lamStar ^ (4 / (d : )) *            (2 : ) ^ (-(6 + 8 / (d : ) + n * (2 + 4 / (d : )))) := by              congr 1              ring_nf  have hrec := hpre n  calc    Aseq (n + 1)       K / ((deGiorgiRadius n - deGiorgiRadius (n + 1)) ^ 2 *        (deGiorgiLevel lamStar (n + 1) - deGiorgiLevel lamStar n) ^ (4 / (d : ))) *        Aseq n ^ (1 + 2 / (d : )) := hrec    _ =      deGiorgiRecurrenceCoeff d K lamStar *        deGiorgiRecurrenceBase d ^ n *        Aseq n ^ (1 + 2 / (d : )) := by      rw [hden]      rw [deGiorgiRecurrenceCoeff, deGiorgiRecurrenceBase]      rw [div_eq_mul_inv]      rw [show (lamStar ^ (4 / (d : )) *          (2 : ) ^ (-(6 + 8 / (d : ) + n * (2 + 4 / (d : )))))⁻¹ =          ((2 : ) ^ (-(6 + 8 / (d : ) + n * (2 + 4 / (d : )))))⁻¹ *            (lamStar ^ (4 / (d : )))⁻¹ by rw [_root_.mul_inv_rev]]      rw [Real.rpow_neg htwo_pos.le, Real.rpow_neg hLamStar.le]      simp only [inv_inv]      have hsplitpow :          (2 : ) ^ (6 + 8 / (d : ) + n * (2 + 4 / (d : ))) =            (2 : ) ^ (6 + 8 / (d : )) * (2 : ) ^ (n * (2 + 4 / (d : ))) := by        rw [ Real.rpow_add htwo_pos]      rw [hsplitpow]      rw [show n * (2 + 4 / (d : )) = (2 + 4 / (d : )) * n by ring]      rw [Real.rpow_mul htwo_pos.le, Real.rpow_natCast]      ac_rfl
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/DeGiorgiIteration/Recurrence.lean:229-325

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