I'm interested in an algebraic structure $(S,\cdot)$ satisfying the following axioms:
- Idempotence: $a \cdot a = a$ for all $a \in S$
- Commutativity: $a \cdot b = b \cdot a$ for all $a, b \in S$
- Cancellation: if $a \cdot b = a \cdot c$ then $b = c$ for all $a, b, c \in S$
- Unknown: $(a \cdot b) \cdot (c \cdot d) = (a \cdot c) \cdot (b \cdot d)$ for all $a, b, c, d \in S$
I know of essentially just two examples that aren't also associative:
- Fix a set of variables $\{x_1, \dots, x_n\}$. Define $S$ to be the set of convex combinations of $x_i$ with dyadic rational coefficients, and define $a \cdot b = \frac{a + b}{2}$. This is easy to visualize by letting the variables represent $n$ points that span $(n-1)$-dimensional space with a binary operation that returns the midpoint. We can also relax the coefficients from dyadic rationals to rationals or even reals.
- $S = \{a, b, c\}$ with binary operation $a \cdot b = c$, $a \cdot c = b$, and $b \cdot c = a$
Here's a couple very basic properties I do know:
- From idempotence and (4) we can easily derive $a \cdot (b \cdot c) = (a \cdot b) \cdot (a \cdot c)$, meaning that $\cdot$ distributes over itself.
- From idempotence and cancellation, we can see that $a \cdot b = a$ implies that $b = a$.
I don't know much else about it, and I'm curious if it has a name, other non-associative examples, or any interesting properties. I'm also happy to hear about similar algebraic structures, especially non-associative ones with property (4). There's no application for this exactly, just something I came up with while drawing diagrams related to the first example above.