Zulip Chat Archive
Stream: Is there code for X?
Topic: topology eq of homeomorph
Adam Topaz (May 25 2021 at 12:12):
Do we have something like the following "evil" lemma?
import topology.homeomorph
variables {α : Type*} (t1 t2 : topological_space α)
lemma topological_space.eq_of_homeo_id (f : @homeomorph α α t1 t2)
(is_id : ∀ a : α, f a = a) : t1 = t2 := sorry
Johan Commelin (May 25 2021 at 12:18):
I wouldn't be surprised if it's not there.
Adam Topaz (May 25 2021 at 12:23):
Meh, I can probably just get by with docs#homeomorph.inducing in my case.
Last updated: Dec 20 2023 at 11:08 UTC