@@ -78,7 +78,7 @@ def is_O_with (c : ℝ) (l : filter α) (f : α → E) (g : α → F) : Prop :=
7878/-- Definition of `is_O_with`. We record it in a lemma as `is_O_with` is irreducible. -/
7979lemma is_O_with_iff : is_O_with c l f g ↔ ∀ᶠ x in l, ∥f x∥ ≤ c * ∥g x∥ := by rw is_O_with
8080
81- alias is_O_with_iff ↔ asymptotics. is_O_with.bound asymptotics. is_O_with.of_bound
81+ alias is_O_with_iff ↔ is_O_with.bound is_O_with.of_bound
8282
8383/-- The Landau notation `f =O[l] g` where `f` and `g` are two functions on a type `α` and `l` is
8484a filter on `α`, means that eventually for `l`, `∥f∥` is bounded by a constant multiple of `∥g∥`.
@@ -116,14 +116,14 @@ notation f ` =o[`:100 l `] ` g:100 := is_o l f g
116116`is_o` to be irreducible at the end of this file. -/
117117lemma is_o_iff_forall_is_O_with : f =o[l] g ↔ ∀ ⦃c : ℝ⦄, 0 < c → is_O_with c l f g := by rw is_o
118118
119- alias is_o_iff_forall_is_O_with ↔ asymptotics. is_o.forall_is_O_with asymptotics. is_o.of_is_O_with
119+ alias is_o_iff_forall_is_O_with ↔ is_o.forall_is_O_with is_o.of_is_O_with
120120
121121/-- Definition of `is_o` in terms of filters. We record it in a lemma as we will set
122122`is_o` to be irreducible at the end of this file. -/
123123lemma is_o_iff : f =o[l] g ↔ ∀ ⦃c : ℝ⦄, 0 < c → ∀ᶠ x in l, ∥f x∥ ≤ c * ∥g x∥ :=
124124by simp only [is_o, is_O_with]
125125
126- alias is_o_iff ↔ asymptotics. is_o.bound asymptotics. is_o.of_bound
126+ alias is_o_iff ↔ is_o.bound is_o.of_bound
127127
128128lemma is_o.def (h : f =o[l] g) (hc : 0 < c) : ∀ᶠ x in l, ∥f x∥ ≤ c * ∥g x∥ :=
129129is_o_iff.1 h hc
@@ -425,79 +425,79 @@ is_o.of_is_O_with $ λ c cpos, (h.forall_is_O_with cpos).sup (h'.forall_is_O_wit
425425@[simp] theorem is_O_with_norm_right : is_O_with c l f (λ x, ∥g' x∥) ↔ is_O_with c l f g' :=
426426by simp only [is_O_with, norm_norm]
427427
428- alias is_O_with_norm_right ↔ asymptotics. is_O_with.of_norm_right asymptotics. is_O_with.norm_right
428+ alias is_O_with_norm_right ↔ is_O_with.of_norm_right is_O_with.norm_right
429429
430430@[simp] theorem is_O_norm_right : f =O[l] (λ x, ∥g' x∥) ↔ f =O[l] g' :=
431431by { unfold is_O, exact exists_congr (λ _, is_O_with_norm_right) }
432432
433- alias is_O_norm_right ↔ asymptotics. is_O.of_norm_right asymptotics. is_O.norm_right
433+ alias is_O_norm_right ↔ is_O.of_norm_right is_O.norm_right
434434
435435@[simp] theorem is_o_norm_right : f =o[l] (λ x, ∥g' x∥) ↔ f =o[l] g' :=
436436by { unfold is_o, exact forall₂_congr (λ _ _, is_O_with_norm_right) }
437437
438- alias is_o_norm_right ↔ asymptotics. is_o.of_norm_right asymptotics. is_o.norm_right
438+ alias is_o_norm_right ↔ is_o.of_norm_right is_o.norm_right
439439
440440@[simp] theorem is_O_with_norm_left : is_O_with c l (λ x, ∥f' x∥) g ↔ is_O_with c l f' g :=
441441by simp only [is_O_with, norm_norm]
442442
443- alias is_O_with_norm_left ↔ asymptotics. is_O_with.of_norm_left asymptotics. is_O_with.norm_left
443+ alias is_O_with_norm_left ↔ is_O_with.of_norm_left is_O_with.norm_left
444444
445445@[simp] theorem is_O_norm_left : (λ x, ∥f' x∥) =O[l] g ↔ f' =O[l] g :=
446446by { unfold is_O, exact exists_congr (λ _, is_O_with_norm_left) }
447447
448- alias is_O_norm_left ↔ asymptotics. is_O.of_norm_left asymptotics. is_O.norm_left
448+ alias is_O_norm_left ↔ is_O.of_norm_left is_O.norm_left
449449
450450@[simp] theorem is_o_norm_left : (λ x, ∥f' x∥) =o[l] g ↔ f' =o[l] g :=
451451by { unfold is_o, exact forall₂_congr (λ _ _, is_O_with_norm_left) }
452452
453- alias is_o_norm_left ↔ asymptotics. is_o.of_norm_left asymptotics. is_o.norm_left
453+ alias is_o_norm_left ↔ is_o.of_norm_left is_o.norm_left
454454
455455theorem is_O_with_norm_norm : is_O_with c l (λ x, ∥f' x∥) (λ x, ∥g' x∥) ↔ is_O_with c l f' g' :=
456456is_O_with_norm_left.trans is_O_with_norm_right
457457
458- alias is_O_with_norm_norm ↔ asymptotics. is_O_with.of_norm_norm asymptotics. is_O_with.norm_norm
458+ alias is_O_with_norm_norm ↔ is_O_with.of_norm_norm is_O_with.norm_norm
459459
460460theorem is_O_norm_norm : (λ x, ∥f' x∥) =O[l] (λ x, ∥g' x∥) ↔ f' =O[l] g' :=
461461is_O_norm_left.trans is_O_norm_right
462462
463- alias is_O_norm_norm ↔ asymptotics. is_O.of_norm_norm asymptotics. is_O.norm_norm
463+ alias is_O_norm_norm ↔ is_O.of_norm_norm is_O.norm_norm
464464
465465theorem is_o_norm_norm : (λ x, ∥f' x∥) =o[l] (λ x, ∥g' x∥) ↔ f' =o[l] g' :=
466466is_o_norm_left.trans is_o_norm_right
467467
468- alias is_o_norm_norm ↔ asymptotics. is_o.of_norm_norm asymptotics. is_o.norm_norm
468+ alias is_o_norm_norm ↔ is_o.of_norm_norm is_o.norm_norm
469469
470470/-! ### Simplification: negate -/
471471
472472@[simp] theorem is_O_with_neg_right : is_O_with c l f (λ x, -(g' x)) ↔ is_O_with c l f g' :=
473473by simp only [is_O_with, norm_neg]
474474
475- alias is_O_with_neg_right ↔ asymptotics. is_O_with.of_neg_right asymptotics. is_O_with.neg_right
475+ alias is_O_with_neg_right ↔ is_O_with.of_neg_right is_O_with.neg_right
476476
477477@[simp] theorem is_O_neg_right : f =O[l] (λ x, -(g' x)) ↔ f =O[l] g' :=
478478by { unfold is_O, exact exists_congr (λ _, is_O_with_neg_right) }
479479
480- alias is_O_neg_right ↔ asymptotics. is_O.of_neg_right asymptotics. is_O.neg_right
480+ alias is_O_neg_right ↔ is_O.of_neg_right is_O.neg_right
481481
482482@[simp] theorem is_o_neg_right : f =o[l] (λ x, -(g' x)) ↔ f =o[l] g' :=
483483by { unfold is_o, exact forall₂_congr (λ _ _, is_O_with_neg_right) }
484484
485- alias is_o_neg_right ↔ asymptotics. is_o.of_neg_right asymptotics. is_o.neg_right
485+ alias is_o_neg_right ↔ is_o.of_neg_right is_o.neg_right
486486
487487@[simp] theorem is_O_with_neg_left : is_O_with c l (λ x, -(f' x)) g ↔ is_O_with c l f' g :=
488488by simp only [is_O_with, norm_neg]
489489
490- alias is_O_with_neg_left ↔ asymptotics. is_O_with.of_neg_left asymptotics. is_O_with.neg_left
490+ alias is_O_with_neg_left ↔ is_O_with.of_neg_left is_O_with.neg_left
491491
492492@[simp] theorem is_O_neg_left : (λ x, -(f' x)) =O[l] g ↔ f' =O[l] g :=
493493by { unfold is_O, exact exists_congr (λ _, is_O_with_neg_left) }
494494
495- alias is_O_neg_left ↔ asymptotics. is_O.of_neg_left asymptotics. is_O.neg_left
495+ alias is_O_neg_left ↔ is_O.of_neg_left is_O.neg_left
496496
497497@[simp] theorem is_o_neg_left : (λ x, -(f' x)) =o[l] g ↔ f' =o[l] g :=
498498by { unfold is_o, exact forall₂_congr (λ _ _, is_O_with_neg_left) }
499499
500- alias is_o_neg_left ↔ asymptotics. is_o.of_neg_right asymptotics. is_o.neg_left
500+ alias is_o_neg_left ↔ is_o.of_neg_right is_o.neg_left
501501
502502/-! ### Product of functions (right) -/
503503
@@ -1223,8 +1223,8 @@ theorem is_o_iff_tendsto {f g : α → 𝕜} (hgf : ∀ x, g x = 0 → f x = 0)
12231223 f =o[l] g ↔ tendsto (λ x, f x / (g x)) l (𝓝 0 ) :=
12241224is_o_iff_tendsto' (eventually_of_forall hgf)
12251225
1226- alias is_o_iff_tendsto' ↔ _ asymptotics. is_o_of_tendsto'
1227- alias is_o_iff_tendsto ↔ _ asymptotics. is_o_of_tendsto
1226+ alias is_o_iff_tendsto' ↔ _ is_o_of_tendsto'
1227+ alias is_o_iff_tendsto ↔ _ is_o_of_tendsto
12281228
12291229lemma is_o_const_left_of_ne {c : E''} (hc : c ≠ 0 ) :
12301230 (λ x, c) =o[l] g ↔ tendsto (norm ∘ g) l at_top :=
@@ -1339,7 +1339,7 @@ begin
13391339 exact is_O_iff_is_O_with.2 ⟨c, is_O_with_of_eq_mul φ hφ huvφ⟩ }
13401340end
13411341
1342- alias is_O_iff_exists_eq_mul ↔ asymptotics. is_O.exists_eq_mul _
1342+ alias is_O_iff_exists_eq_mul ↔ is_O.exists_eq_mul _
13431343
13441344lemma is_o_iff_exists_eq_mul :
13451345 u =o[l] v ↔ ∃ (φ : α → 𝕜) (hφ : tendsto φ l (𝓝 0 )), u =ᶠ[l] φ * v :=
@@ -1351,7 +1351,7 @@ begin
13511351 exact is_O_with_of_eq_mul _ ((hφ c hpos).mono $ λ x, le_of_lt) huvφ }
13521352end
13531353
1354- alias is_o_iff_exists_eq_mul ↔ asymptotics. is_o.exists_eq_mul _
1354+ alias is_o_iff_exists_eq_mul ↔ is_o.exists_eq_mul _
13551355
13561356end exists_mul_eq
13571357
0 commit comments