Zulip Chat Archive
Stream: Is there code for X?
Topic: a / b / a = b⁻¹
Eric Wieser (Feb 09 2023 at 16:27):
Do we have the with_zero
version of docs#div_div_cancel_left?
lemma div_div_cancel_left' {G₀} [comm_group_with_zero G₀] (a b : G₀) (ha : a ≠ 0) :
a / b / a = b⁻¹ :=
by rw [div_eq_mul_inv, div_eq_mul_inv, mul_right_comm, mul_inv_cancel ha, one_mul]
Eric Wieser (Feb 10 2023 at 14:07):
Last updated: Dec 20 2023 at 11:08 UTC