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

Superlevel measure Real le integral pos Part

DeGiorgi.superlevel_measureReal_le_integral_posPart

Plain-language statement

Chebyshev bound for the superlevel set {u > λ} using (u-θ)₊.

Exact Lean statement

theorem superlevel_measureReal_le_integral_posPart
    {α : Type*} [MeasurableSpace α] {μ : Measure α} [IsFiniteMeasure μ]
    {u : α → ℝ} {θ lam : ℝ}
    (hθl : θ < lam)
    (hint : Integrable (fun x => |positivePartSub u θ x| ^ 2) μ) :
    μ.real {x | lam < u x} ≤
      ((lam - θ) ^ 2)⁻¹ * ∫ x, |positivePartSub u θ x| ^ 2 ∂μ

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
theorem superlevel_measureReal_le_integral_posPart    {α : Type*} [MeasurableSpace α] {μ : Measure α} [IsFiniteMeasure μ]    {u : α  } {θ lam : }    (hθl : θ < lam)    (hint : Integrable (fun x => |positivePartSub u θ x| ^ 2) μ) :    μ.real {x | lam < u x}       ((lam - θ) ^ 2)⁻¹ * ∫ x, |positivePartSub u θ x| ^ 2 ∂μ := by  let f : α   := fun x => |positivePartSub u θ x| ^ 2  let ε :  := (lam - θ) ^ 2  have hε_pos : 0 < ε := by    dsimp [ε]    nlinarith  have hf_nonneg : 0 ᵐ[μ] f := by    refine Filter.Eventually.of_forall ?_    intro x    dsimp [f]    positivity  have hmarkov :      ε * μ.real {x | ε  f x}  ∫ x, f x ∂μ := by    simpa [f, ε] using      (MeasureTheory.mul_meas_ge_le_integral_of_nonneg:= μ) hf_nonneg hint ε)  have hsubset : {x | lam < u x}  {x | ε  f x} := by    intro x hx    dsimp [f, ε]    exact positivePartSub_sq_ge_gap_sq_of_lt hθl hx  have hmono : μ.real {x | lam < u x}  μ.real {x | ε  f x} := by    exact measureReal_mono hsubset  have hmain : ε * μ.real {x | lam < u x}  ∫ x, f x ∂μ := by    calc      ε * μ.real {x | lam < u x}  ε * μ.real {x | ε  f x} := by        gcongr      _  ∫ x, f x ∂μ := hmarkov  have hdiv : μ.real {x | lam < u x}  (∫ x, f x ∂μ) / ε := by    refine (le_div_iff₀ hε_pos).2 ?_    simpa [mul_comm, mul_left_comm, mul_assoc] using hmain  simpa [div_eq_mul_inv, f, ε, mul_comm, mul_left_comm, mul_assoc] using hdiv
Project
DeGiorgi
License
Apache-2.0
Commit
4c1b3077d378
Source
DeGiorgi/DeGiorgiIteration/Energy.lean:886-921

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