Ess Sup half Ball le of ae bound
DeGiorgi.essSup_halfBall_le_of_ae_bound
Plain-language statement
An a.e. upper bound on the half ball upgrades to an essential-supremum bound on the half ball.
Exact Lean statement
theorem essSup_halfBall_le_of_ae_bound
{u : E → ℝ} {C : ℝ}
(h_nonneg : ∀ᵐ x ∂μhalf, 0 ≤ u x)
(hbound : ∀ᵐ x ∂μhalf, u x ≤ C) :
essSup u μhalf ≤ CFormal artifact
Lean source
theorem essSup_halfBall_le_of_ae_bound {u : E → ℝ} {C : ℝ} (h_nonneg : ∀ᵐ x ∂μhalf, 0 ≤ u x) (hbound : ∀ᵐ x ∂μhalf, u x ≤ C) : essSup u μhalf ≤ C := by rw [essSup_eq_sInf] refine csInf_le ?_ ?_ · refine ⟨0, ?_⟩ intro b hb by_contra hb_nonneg have hb_neg : b < 0 := lt_of_not_ge hb_nonneg have hs : {x | b < u x} ∈ ae μhalf := by filter_upwards [h_nonneg] with x hx linarith have hs_compl : {x | b < u x}ᶜ ∈ ae μhalf := by exact compl_mem_ae_iff.mpr hb have hfalse : ∀ᵐ x ∂μhalf, False := by filter_upwards [hs, hs_compl] with x hx hx_compl exact hx_compl hx 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) · simpa [not_le] using (ae_iff.mp hbound)- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/Harnack.lean:40-65
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.