Skip to content

Instantly share code, notes, and snippets.

@sgouezel
Created June 16, 2020 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgouezel/d8ea6cc252be22590f5c16574eb47608 to your computer and use it in GitHub Desktop.
Save sgouezel/d8ea6cc252be22590f5c16574eb47608 to your computer and use it in GitHub Desktop.
lemma prod_symm (e : local_homeomorph α β) (e' : local_homeomorph γ δ) :
(e.prod e').symm = (e.symm.prod e'.symm) :=
by ext x : 1; simp
lemma prod_comp {η : Type*} {ε : Type*} [topological_space η] [topological_space ε]
(e : local_homeomorph α β) (f : local_homeomorph β γ)
(e' : local_homeomorph δ η) (f' : local_homeomorph η ε):
(e.prod e').trans (f.prod f') = (e.trans f).prod (e'.trans f') :=
begin
ext x : 1,
{ simp },
{ simp },
{ ext y,
rcases y with ⟨a, b⟩,
simp [local_equiv.trans_source],
tauto }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment