Indicator component mem Lp
DeGiorgi.indicator_component_memLp
Plain-language statement
Truncating an L² function by the positivity set of an a.e.-measurable scalar function preserves L².
Exact Lean statement
theorem indicator_component_memLp
{Ω : Set E} {σ g : E → ℝ}
(hσ_aemeas : AEMeasurable σ (volume.restrict Ω))
(hg_memLp : MemLp g 2 (volume.restrict Ω)) :
MemLp (fun x => if 0 < σ x then g x else 0) 2 (volume.restrict Ω)Formal artifact
Lean source
theorem indicator_component_memLp {Ω : Set E} {σ g : E → ℝ} (hσ_aemeas : AEMeasurable σ (volume.restrict Ω)) (hg_memLp : MemLp g 2 (volume.restrict Ω)) : MemLp (fun x => if 0 < σ x then g x else 0) 2 (volume.restrict Ω) := by let h : ℝ × ℝ → ℝ := fun yz => if 0 < yz.1 then yz.2 else 0 have hh_meas : Measurable h := by refine measurable_snd.piecewise ?_ measurable_const exact measurableSet_lt measurable_const measurable_fst have hpair_aemeas : AEMeasurable (fun x => (σ x, g x)) (volume.restrict Ω) := hσ_aemeas.prodMk hg_memLp.aemeasurable have htrunc_aestrong : AEStronglyMeasurable (fun x => if 0 < σ x then g x else 0) (volume.restrict Ω) := by refine (hh_meas.comp_aemeasurable hpair_aemeas).aestronglyMeasurable.congr ?_ filter_upwards [] with x by_cases hx : 0 < σ x · simp [h, hx] · simp [h, hx] refine hg_memLp.norm.mono' htrunc_aestrong ?_ filter_upwards [] with x by_cases hx : 0 < σ x · simp [hx] · simp [hx]- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/SobolevSpace/PositivePartPrelude.lean:26-49
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.