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

Moser Decay Ratio sum le half dim

DeGiorgi.moserDecayRatio_sum_le_half_dim

Plain-language statement

Auxiliary geometric-product bound for the explicit Moser majorant.

Exact Lean statement

theorem moserDecayRatio_sum_le_half_dim
    (hd : 2 < (d : ℝ)) (n : ℕ) :
    Finset.sum (Finset.range n) (fun i => moserDecayRatio d ^ i) ≤ (d : ℝ) / 2

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem moserDecayRatio_sum_le_half_dim    (hd : 2 < (d : )) (n : ) :    Finset.sum (Finset.range n) (fun i => moserDecayRatio d ^ i)  (d : ) / 2 := by  have hq_nonneg : 0  moserDecayRatio d :=    moserDecayRatio_nonneg (d := d) hd  have hq_lt_one : moserDecayRatio d < 1 :=    moserDecayRatio_lt_one (d := d) hd  have hsumm : Summable (fun i :  => moserDecayRatio d ^ i) :=    summable_geometric_of_lt_one hq_nonneg hq_lt_one  have hsum_le :      Finset.sum (Finset.range n) (fun i => moserDecayRatio d ^ i)         ∑' i : , moserDecayRatio d ^ i := by    exact hsumm.sum_le_tsum (s := Finset.range n) (by      intro i hi      exact pow_nonneg hq_nonneg i)  refine hsum_le.trans_eq ?_  rw [tsum_geometric_of_lt_one hq_nonneg hq_lt_one, moserDecayRatio]  have hd_ne : (d : )  0 := by    exact_mod_cast (NeZero.ne d)  field_simp [hd_ne]  ring
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/MoserIteration/Iteration.lean:373-393

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