Tendsto e Lp Norm pi component
BareFunction.tendsto_eLpNorm_pi_component
Plain-language statement
Vector eLpNorm convergence → component eLpNorm convergence. Uses eLpNorm_pi_component_le via an explicit function equality to avoid expensive defeq checks.
Exact Lean statement
theorem tendsto_eLpNorm_pi_component
{p : ℝ≥0∞}
{G : ℕ → α → (Fin d → ℝ)} {Gext : α → (Fin d → ℝ)}
(hG_tendsto : Tendsto (fun n => eLpNorm (fun x => G n x - Gext x) p μ) atTop (nhds 0))
(i : Fin d) :
Tendsto (fun n => eLpNorm (fun x => G n x i - Gext x i) p μ) atTop (nhds 0)Formal artifact
Lean source
theorem tendsto_eLpNorm_pi_component {p : ℝ≥0∞} {G : ℕ → α → (Fin d → ℝ)} {Gext : α → (Fin d → ℝ)} (hG_tendsto : Tendsto (fun n => eLpNorm (fun x => G n x - Gext x) p μ) atTop (nhds 0)) (i : Fin d) : Tendsto (fun n => eLpNorm (fun x => G n x i - Gext x i) p μ) atTop (nhds 0) := by -- Key: (fun x => G n x i - Gext x i) = (fun x => (G n x - Gext x) i) -- This is definitionally true for Fin d → ℝ (Pi subtraction), but we make it -- explicit to avoid expensive defeq checks inside tendsto_of_tendsto. have hle : ∀ n, eLpNorm (fun x => G n x i - Gext x i) p μ ≤ eLpNorm (fun x => G n x - Gext x) p μ := by intro n -- Rewrite LHS to match eLpNorm_pi_component_le's input show eLpNorm (fun x => (G n - Gext) x i) p μ ≤ _ exact eLpNorm_pi_component_le i exact tendsto_of_tendsto_of_tendsto_of_le_of_le tendsto_const_nhds hG_tendsto (fun _ => bot_le) hle- Project
- DeGiorgi
- License
- Apache-2.0
- Commit
- 4c1b3077d378
- Source
- DeGiorgi/LpFunctionToolkit.lean:282-298
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.