Zulip Chat Archive
Stream: new members
Topic: uniqueness of limit
Heather Macbeth (Jun 25 2020 at 18:20):
What files would facts like this be in? library_search
fails, presumably it's a combination of a couple of existing lemmas.
example {f : ℕ → ℝ} {a₁ a₂ : ℝ}
(h₁ : filter.tendsto f filter.at_top (nhds a₁)) (h₂ : filter.tendsto f filter.at_top (nhds a₂)) :
a₁ = a₂
Alex J. Best (Jun 25 2020 at 18:22):
There is docs#tendsto_nhds_unique in topology/separation.lean , does that help?
Patrick Massot (Jun 25 2020 at 18:23):
tendsto_nhds_unique at_top_ne_bot h₁ h₂
Patrick Massot (Jun 25 2020 at 18:23):
You need to open filter
of course.
Heather Macbeth (Jun 25 2020 at 18:27):
Thanks!
Last updated: Dec 20 2023 at 11:08 UTC