File tree Expand file tree Collapse file tree
Mathlib/Order/Filter/AtTopBot Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -445,6 +445,18 @@ theorem map_div_atTop_eq_nat (k : ℕ) (hk : 0 < k) : map (fun a => a / k) atTop
445445 (fun a b _ => by rw [Nat.div_le_iff_le_mul_add_pred hk])
446446 fun b _ => by rw [Nat.mul_add_div hk, Nat.div_eq_of_lt, Nat.add_zero]; lia
447447
448+ theorem tendsto_inf_atTop {α β : Type *} [SemilatticeInf α]
449+ {f g : β → α} (F : Filter β) (hf : Tendsto f F atTop) (hg : Tendsto g F atTop) :
450+ Tendsto (fun x ↦ f x ⊓ g x) F atTop := by
451+ rw [Filter.tendsto_atTop] at *
452+ simp [eventually_and, hf, hg]
453+
454+ theorem tendsto_sup_atBot {α β : Type *} [SemilatticeSup α]
455+ {f g : β → α} (F : Filter β) (hf : Tendsto f F atBot) (hg : Tendsto g F atBot) :
456+ Tendsto (fun x ↦ f x ⊔ g x) F atBot := by
457+ rw [Filter.tendsto_atBot] at *
458+ simp [eventually_and, hf, hg]
459+
448460section NeBot
449461variable [Preorder β] {l : Filter α} [NeBot l] {f : α → β}
450462
You can’t perform that action at this time.
0 commit comments