Zulip Chat Archive

Stream: Is there code for X?

Topic: equiv.symm_trans_rev


Chris Hughes (Sep 28 2021 at 10:39):

Do we actually not have this? I couldn't find it and nor could library_search

example (α β γ : Type) (e₁ : α  β) (e₂ : β  γ) :
  (e₁.trans e₂).symm = e₂.symm.trans e₁.symm :=

Eric Wieser (Sep 28 2021 at 10:48):

Do we have it for other equivs?

Eric Wieser (Sep 28 2021 at 10:49):

docs#ring_equiv.symm_trans, docs#linear_equiv.symm_trans maybe?


Last updated: Dec 20 2023 at 11:08 UTC