Zulip Chat Archive
Stream: maths
Topic: Triple products in statements
Antoine Chambert-Loir (Dec 18 2022 at 06:16):
Just a question, feel free to move it to #new members :
When some statements use a triple product a * b * c, where a, b, c are themselves complicated expressions (in a monoid), which form of associativity is it recommended to use: the implicit one a * b * c = (a * b) * c, or the other one, a * (b * c) into which mul_assoc converts?
Yaël Dillies (Dec 18 2022 at 07:58):
The implicit one is the most common.
Last updated: May 02 2025 at 03:31 UTC