Monoid

https://arbital.com/p/algebraic_monoid

by Nate Soares May 9 2016 updated Jun 15 2016


A monoid M is a pair (X,) where X is a [set_theory_set set] and is an [associative_function associative] binary operator with an identity. is often interpreted as concatenation; data structures that support concatenation and have an "empty element" (such as lists, strings, and the natural numbers under addition) are examples of monoids.

Monoids are algebraic structures. We write xy for the application of to x,yX, which must be defined. xy is commonly abbreviated xy when can be inferred from context. The monoid axioms (which govern the behavior of ) are as follows.

  1. (Closure) For all x,y in X, xy is also in X.
  2. (Associativity) For all x,y,z in X, x(yz)=(xy)z.
  3. (Identity) There is an e in X such that, for all x in X, xe=ex=x.

The axiom of closure says that xyX, i.e. that combining two elements of X using yields another element of X. In other words, X is closed under .

The axiom of associativity says that is an associative operation, which justifies omitting parenthesis when describing the application of to many elements in sequence..

The axiom of identity says that there is some element e in X that treats as "empty": If you apply to e and x, then simply returns x. The identity is unique: Given two elements e and z that satisfy the axiom of identity, we have ze=e=ez=z. Thus, we can speak of "the identity" e of M. e is often written 1 or 1M.

%%%knows-requisite(Category theory): Equivalently, a monoid is a category with exactly one object. %%%

Monoids are [algebraic_semigroup semigroups] equipped with an identity. Groups are monoids with inverses. For more on how monoids relate to other [algerbraic_structure algebraic structures], refer to the tree of algebraic structures.

Notation

Given a monoid M=(X,), we say "X forms a monoid under ." For example, the set of finite bitstrings forms a monoid under concatenation: The set of finite bitstrings is closed under concatenation; concatenation is an associative operation; and the empty bitstring is a finite bitstring that acts like an identity under concatenation.

X is called the underlying set of M, and is called the monoid operation. xy is usually abbreviated xy. M is generally allowed to substitute for X when discussing the monoid. For example, we say that the elements x,yX are "in M," and sometimes write "x,yM" or talk about the "elements of M."

Examples

Bitstrings form a monoid under concatenation, with the empty string as the identity.

The set of finite lists of elements drawn from Y (for any set Y) form a monoid under concatenation, with the empty list as the identity.

The natural numbers [45h N] form a monid under addition, with 0 as the identity.

Monoids have found some use in functional programming languages such as Haskell and Scala, where they are used to generalize over data types in which values can be "combined" (by some operation ) and which include an "empty" value (the identity).