Skip to content

Commit 47186e4

Browse files
TBUGTBkex-y
andcommitted
feat(Topology/Order): order topology on WithTop API lemmas (leanprover-community#38801)
Upstream lemmas on the order topology on WithTop from the brownian motion project. Co-authored-by: Kexing Ying <kexingying@gmail.com>
1 parent ca17ce0 commit 47186e4

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

Mathlib/Order/Filter/AtTopBot/Basic.lean

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
448460
section NeBot
449461
variable [Preorder β] {l : Filter α} [NeBot l] {f : α → β}
450462

0 commit comments

Comments
 (0)