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.
Exact Lean statement
theorem eLpNorm_pi_le_sum_component
{p : ℝ≥0∞} (hp1 : 1 ≤ p)
{F : α → (Fin d → ℝ)}
(hF_comp_aesm : ∀ i : Fin d, AEStronglyMeasurable (fun x => F x i) μ) :
eLpNorm F p μ ≤ ∑ i : Fin d, eLpNorm (fun x => F x i) p μFormal artifact
Lean source
theorem eLpNorm_pi_le_sum_component {p : ℝ≥0∞} (hp1 : 1 ≤ p) {F : α → (Fin d → ℝ)} (hF_comp_aesm : ∀ i : Fin d, AEStronglyMeasurable (fun x => F x i) μ) : eLpNorm F p μ ≤ ∑ i : Fin d, eLpNorm (fun x => F x i) p μ := by calc eLpNorm F p μ ≤ eLpNorm (fun x => ∑ i : Fin d, ‖F x i‖) p μ := eLpNorm_mono_real fun x => pi_norm_le_sum_norms (F x) _ ≤ ∑ i : Fin d, eLpNorm (fun x => ‖F x i‖) p μ := by let g : Fin d → α → ℝ := fun i x => ‖F x i‖ have hg_aesm : ∀ i : Fin d, AEStronglyMeasurable (g i) μ := fun i => (hF_comp_aesm i).norm suffices h : ∀ (s : Finset (Fin d)), eLpNorm (∑ i ∈ s, g i) p μ ≤ ∑ i ∈ s, eLpNorm (g i) p μ by have hg_eq : (fun x => ∑ i : Fin d, ‖F x i‖) = ∑ i : Fin d, g i := by ext x; simp [g, Finset.sum_apply] rw [hg_eq]; simp only [g]; exact h Finset.univ intro s induction s using Finset.cons_induction with | empty => simp [eLpNorm_zero] | cons a s has ih => rw [Finset.sum_cons, Finset.sum_cons] calc eLpNorm (g a + ∑ i ∈ s, g i) p μ ≤ eLpNorm (g a) p μ + eLpNorm (∑ i ∈ s, g i) p μ := eLpNorm_add_le (hg_aesm a) (Finset.aestronglyMeasurable_sum s fun i _ => hg_aesm i) hp1 _ ≤ eLpNorm (g a) p μ + ∑ i ∈ s, eLpNorm (g i) p μ := by gcongr _ = ∑ i : Fin d, eLpNorm (fun x => F x i) p μ := by congr 1; ext i; exact eLpNorm_norm _- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/LpFunctionToolkit.lean:220-248
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.
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.
Scalar cauchy to limit
BareFunction.scalar_cauchy_to_limit
Plain-language statement
Scalar Cauchy → limit. Generic over codomain E and domain α.
Source project: DeGiorgi
Person-level attribution pending.