Skip to content

Commit 2304857

Browse files
[pre-commit.ci lite] apply automatic fixes
1 parent 056d2ee commit 2304857

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Mathlib/Analysis/SpecialFunctions/ImproperIntegrals.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,8 +314,8 @@ lemma exists_integral_div_eq_mul_log {a b : ℝ} {f : ℝ → ℝ} {y : ℝ} (a_
314314
rw [mul_div_mul_right b a (ne_of_gt y_pos)] at heq
315315
exact ⟨c, hc, heq⟩
316316

317-
/-- **Frullani integral**.
318-
If `f : ℝ → ℝ` is continuous on `[0, ∞)` with `Tendsto f atTop (𝓝 L)`, and `0 < a`, `0 < b`, then
317+
/-- **Frullani integral**.
318+
If `f : ℝ → ℝ` is continuous on `[0, ∞)` with `Tendsto f atTop (𝓝 L)`, and `0 < a`, `0 < b`, then
319319
`∫ x in Ioi 0, (f (a * x) - f (b * x)) / x = (f 0 - L) * log (b / a)`. -/
320320
theorem integral_Ioi
321321
{a b : ℝ} {f : ℝ → ℝ} {L : ℝ} (a_pos : 0 < a) (b_pos : 0 < b) (hf : ContinuousOn f (Ici 0))

Mathlib/MeasureTheory/Integral/IntegralEqImproper.lean

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@ theorem intervalIntegral_tendsto_integral_Ioi (a : ℝ) (hfi : IntegrableOn f (I
624624
end IntegralOfIntervalIntegral
625625

626626
theorem IntegrableOn.tendsto_integral_Ioi {E : Type*} [NormedAddCommGroup E] [NormedSpace ℝ E]
627-
{a : ℝ} {g : ℝ → E} (hg : IntegrableOn g (Ioi a)) :
627+
{a : ℝ} {g : ℝ → E} (hg : IntegrableOn g (Ioi a)) :
628628
Tendsto (fun ε : ℝ ↦ ∫ x in Ioi ε, g x) (𝓝[>] a) (𝓝 (∫ x in Ioi a, g x)) := by
629629
have hg' : IntervalIntegrable g volume a (a + 1) := by
630630
rw [intervalIntegrable_iff_integrableOn_Ioc_of_le (by linarith)]

Mathlib/Topology/Algebra/Monoid.lean

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,12 @@ theorem continuous_mul_right (a : M) : Continuous fun b : M => b * a := by fun_p
7272

7373
@[to_additive]
7474
theorem ContinuousOn.comp_mul_left {f : M → X} {s t : Set M} {c : M} (hf : ContinuousOn f t)
75-
(hct : Set.MapsTo (fun x : M => c * x) s t) : ContinuousOn (fun x => f (c * x)) s :=
75+
(hct : Set.MapsTo (fun x : M => c * x) s t) : ContinuousOn (fun x => f (c * x)) s :=
7676
hf.comp (continuous_mul_left c).continuousOn hct
7777

7878
@[to_additive]
7979
theorem ContinuousOn.comp_mul_right {f : M → X} {s t : Set M} {c : M} (hf : ContinuousOn f t)
80-
(hct : Set.MapsTo (fun x : M => x * c) s t) : ContinuousOn (fun x => f (x * c)) s :=
80+
(hct : Set.MapsTo (fun x : M => x * c) s t) : ContinuousOn (fun x => f (x * c)) s :=
8181
hf.comp (continuous_mul_right c).continuousOn hct
8282

8383
@[to_additive]

0 commit comments

Comments
 (0)