Skip to content

Commit 35578db

Browse files
committed
chore(L1Space/HasFiniteIntegral): rename three lemmas (leanprover-community#34439)
Discovered in leanprover-community#24343. Co-authored-by: grunweg <rothgami@math.hu-berlin.de>
1 parent 57a10e3 commit 35578db

1 file changed

Lines changed: 16 additions & 10 deletions

File tree

Mathlib/MeasureTheory/Function/L1Space/HasFiniteIntegral.lean

Lines changed: 16 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,7 @@ theorem hasFiniteIntegral_const_iff_enorm {c : ε} (hc : ‖c‖ₑ ≠ ∞) :
153153

154154
theorem hasFiniteIntegral_const_iff {c : β} :
155155
HasFiniteIntegral (fun _ : α => c) μ ↔ c = 0 ∨ IsFiniteMeasure μ := by
156-
rw [hasFiniteIntegral_const_iff_enorm enorm_ne_top]
157-
simp
156+
simp [hasFiniteIntegral_const_iff_enorm enorm_ne_top]
158157

159158
lemma hasFiniteIntegral_const_iff_isFiniteMeasure_enorm {c : ε} (hc : ‖c‖ₑ ≠ 0) (hc' : ‖c‖ₑ ≠ ∞) :
160159
HasFiniteIntegral (fun _ ↦ c) μ ↔ IsFiniteMeasure μ := by
@@ -314,27 +313,34 @@ variable {F : ℕ → α → β} {f : α → β} {bound : α → ℝ}
314313
{ε : Type*} [TopologicalSpace ε] [ESeminormedAddMonoid ε]
315314
{F' : ℕ → α → ε} {f' : α → ε} {bound' : α → ℝ≥0∞}
316315

317-
theorem all_ae_ofReal_F_le_bound (h : ∀ n, ∀ᵐ a ∂μ, ‖F n a‖ ≤ bound a) :
316+
theorem all_ae_norm_ofReal_F_le_bound (h : ∀ n, ∀ᵐ a ∂μ, ‖F n a‖ ≤ bound a) :
318317
∀ n, ∀ᵐ a ∂μ, ENNReal.ofReal ‖F n a‖ ≤ ENNReal.ofReal (bound a) := fun n =>
319318
(h n).mono fun _ h => ENNReal.ofReal_le_ofReal h
320319

320+
@[deprecated (since := "2026-01-26")] alias
321+
all_ae_ofReal_F_le_bound := all_ae_norm_ofReal_F_le_bound
322+
321323
theorem ae_tendsto_enorm (h : ∀ᵐ a ∂μ, Tendsto (fun n ↦ F' n a) atTop <| 𝓝 <| f' a) :
322324
∀ᵐ a ∂μ, Tendsto (fun n ↦ ‖F' n a‖ₑ) atTop <| 𝓝 <| ‖f' a‖ₑ :=
323325
h.mono fun _ h ↦ Tendsto.comp (Continuous.tendsto continuous_enorm _) h
324326

325-
theorem all_ae_tendsto_ofReal_norm (h : ∀ᵐ a ∂μ, Tendsto (fun n => F n a) atTop <| 𝓝 <| f a) :
327+
theorem ae_tendsto_ofReal_norm (h : ∀ᵐ a ∂μ, Tendsto (fun n => F n a) atTop <| 𝓝 <| f a) :
326328
∀ᵐ a ∂μ, Tendsto (fun n => ENNReal.ofReal ‖F n a‖) atTop <| 𝓝 <| ENNReal.ofReal ‖f a‖ := by
327329
convert ae_tendsto_enorm h <;> simp
328330

329-
theorem all_ae_ofReal_f_le_bound (h_bound : ∀ n, ∀ᵐ a ∂μ, ‖F n a‖ ≤ bound a)
331+
@[deprecated (since := "2026-01-26")] alias all_ae_tendsto_ofReal_norm := ae_tendsto_ofReal_norm
332+
333+
theorem ae_norm_ofReal_f_le_bound (h_bound : ∀ n, ∀ᵐ a ∂μ, ‖F n a‖ ≤ bound a)
330334
(h_lim : ∀ᵐ a ∂μ, Tendsto (fun n => F n a) atTop (𝓝 (f a))) :
331335
∀ᵐ a ∂μ, ENNReal.ofReal ‖f a‖ ≤ ENNReal.ofReal (bound a) := by
332-
have F_le_bound := all_ae_ofReal_F_le_bound h_bound
336+
have F_le_bound := all_ae_norm_ofReal_F_le_bound h_bound
333337
rw [← ae_all_iff] at F_le_bound
334-
apply F_le_bound.mp ((all_ae_tendsto_ofReal_norm h_lim).mono _)
338+
apply F_le_bound.mp ((ae_tendsto_ofReal_norm h_lim).mono _)
335339
intro a tendsto_norm F_le_bound
336340
exact le_of_tendsto' tendsto_norm F_le_bound
337341

342+
@[deprecated (since := "2026-01-26")] alias all_ae_ofReal_f_le_bound := ae_norm_ofReal_f_le_bound
343+
338344
theorem ae_enorm_le_bound (h_bound : ∀ n, ∀ᵐ a ∂μ, ‖F' n a‖ₑ ≤ bound' a)
339345
(h_lim : ∀ᵐ a ∂μ, Tendsto (fun n ↦ F' n a) atTop (𝓝 (f' a))) :
340346
∀ᵐ a ∂μ, ‖f' a‖ₑ ≤ bound' a := by
@@ -364,7 +370,7 @@ theorem hasFiniteIntegral_of_dominated_convergence
364370
rw [hasFiniteIntegral_iff_norm]
365371
calc
366372
(∫⁻ a, ENNReal.ofReal ‖f a‖ ∂μ) ≤ ∫⁻ a, ENNReal.ofReal (bound a) ∂μ :=
367-
lintegral_mono_ae <| all_ae_ofReal_f_le_bound h_bound h_lim
373+
lintegral_mono_ae <| ae_norm_ofReal_f_le_bound h_bound h_lim
368374
_ < ∞ := by
369375
rw [← hasFiniteIntegral_iff_ofReal]
370376
· exact bound_hasFiniteIntegral
@@ -384,8 +390,8 @@ theorem tendsto_lintegral_norm_of_dominated_convergence
384390
triangle inequality, have `‖F n a - f a‖ ≤ 2 * (bound a)`. -/
385391
have hb : ∀ n, ∀ᵐ a ∂μ, ENNReal.ofReal ‖F n a - f a‖ ≤ b a := by
386392
intro n
387-
filter_upwards [all_ae_ofReal_F_le_bound h_bound n,
388-
all_ae_ofReal_f_le_bound h_bound h_lim] with a h₁ h₂
393+
filter_upwards [all_ae_norm_ofReal_F_le_bound h_bound n,
394+
ae_norm_ofReal_f_le_bound h_bound h_lim] with a h₁ h₂
389395
calc
390396
ENNReal.ofReal ‖F n a - f a‖ ≤ ENNReal.ofReal ‖F n a‖ + ENNReal.ofReal ‖f a‖ := by
391397
rw [← ENNReal.ofReal_add]

0 commit comments

Comments
 (0)