Le ess Inf half Ball of ae bound
DeGiorgi.le_essInf_halfBall_of_ae_bound
Plain-language statement
An a.e. lower bound on the half ball upgrades to an essential-infimum bound on the half ball.
Exact Lean statement
theorem le_essInf_halfBall_of_ae_bound
{u : E → ℝ} {c C : ℝ}
(hlow : ∀ᵐ x ∂μhalf, c ≤ u x)
(hupp : ∀ᵐ x ∂μhalf, u x ≤ C) :
c ≤ essInf u μhalfFormal artifact
Lean source
theorem le_essInf_halfBall_of_ae_bound {u : E → ℝ} {c C : ℝ} (hlow : ∀ᵐ x ∂μhalf, c ≤ u x) (hupp : ∀ᵐ x ∂μhalf, u x ≤ C) : c ≤ essInf u μhalf := by rw [essInf_eq_sSup] refine le_csSup ?_ ?_ · refine ⟨C, ?_⟩ intro a ha have ha_ae : ∀ᵐ x ∂μhalf, a ≤ u x := by rw [ae_iff] simpa [not_le] using ha have hconst : ∀ᵐ x ∂μhalf, a ≤ C := by filter_upwards [ha_ae, hupp] with x hax hxu linarith by_contra hAC have hfalse : ∀ᵐ x ∂μhalf, False := by filter_upwards [hconst] with x hx linarith rw [ae_iff] at hfalse have hzero : μhalf Set.univ = 0 := by simpa using hfalse exact (restrict_ball_ne_zero (c := (0 : E)) (r := (1 / 2 : ℝ)) (by norm_num)) (Measure.measure_univ_eq_zero.mp hzero) · have hlow' := hlow rw [ae_iff] at hlow' simpa [not_le] using hlow'- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/Harnack.lean:71-98
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
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₂.
Source project: DeGiorgi
Person-level attribution pending.
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.
Source project: DeGiorgi
Person-level attribution pending.
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) < ∞.
Source project: DeGiorgi
Person-level attribution pending.