A monoid is $(M,*,e)$. I am having trouble understanding what the 'multiplication' operation represents. Is it an operation for an element which returns another element or an operation which takes two elements and returns a third one?
2026-03-27 23:12:50.1774653170
Monoid Definition
217 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
The second: it represents an associative binary operation which takes elements, say, $a, b\in M$ and operates on them, and outputs a third (not necessarily distinct from a or b) value:
$$a * b = c, \;\quad a, b, c\in M$$
The symbol $*$ here is a "generic" symbol representing a binary operation which needs to be defined or specified: for example, addition of integers $(a + b)$, multiplication of positive integers $(a\cdot b \;\text{or just}\; ab)$.