Zulip Chat Archive
Stream: mathlib4
Topic: Algebra.Quandle held up by group
zbatt (Jan 24 2023 at 18:17):
In Algebra.Quandle
there is a particularly nasty goal x * (y * z * y⁻¹) * x⁻¹ = x * y * x⁻¹ * (x * z * x⁻¹) * (x * y * x⁻¹)⁻¹
which was done in mathlib3 via the group
tactic. Does it make more sense to try to "force" this to work, or write the group tactic first? (I want to know more about tactic writing and group
doesn't seem to complex so I would be more than willing to try my hand at it)
Mario Carneiro (Jan 24 2023 at 18:19):
does simp [mul_assoc]
work?
zbatt (Jan 24 2023 at 18:21):
ah yes!
Kevin Buzzard (Jan 24 2023 at 19:08):
That's pretty much the definition of group
anyway ;-)
zbatt (Jan 24 2023 at 19:43):
that would make sense haha
Last updated: Dec 20 2023 at 11:08 UTC