Loading AI tools
Operation in algebra and mathematics From Wikipedia, the free encyclopedia
In category theory, a branch of mathematics, a monad is a triple consisting of a functor T from a category to itself and two natural transformations that satisfy the conditions like associativity. For example, if are functors adjoint to each other, then together with determined by the adjoint relation is a monad.
We had some time to talk, and during the course of it I realized I’d become less scared of certain topics involving monads.
Monads seem to bother a lot of people. There’s even a YouTube video called The Monads Hurt My Head! ... Shortly thereafter, the woman speaking exclaims:
What the heck?! How do you even explain what a monad is?
John Baez, [1]
In concise terms, a monad is a monoid in the category of endofunctors of some fixed category (an endofunctor is a functor mapping a category to itself). According to John Baez, a monad can be considered at least in two ways: [1]
Monads are used in the theory of pairs of adjoint functors, and they generalize closure operators on partially ordered sets to arbitrary categories. Monads are also useful in the theory of datatypes, the denotational semantics of imperative programming languages, and in functional programming languages, allowing languages without mutable state to do things such as simulate for-loops; see Monad (functional programming).
A monad is also called, especially in old literature, a triple, triad, standard construction and fundamental construction.[2]
A monad is a certain type of endofunctor. For example, if and are a pair of adjoint functors, with left adjoint to , then the composition is a monad. If and are inverse to each other, the corresponding monad is the identity functor. In general, adjunctions are not equivalences—they relate categories of different natures. The monad theory matters as part of the effort to capture what it is that adjunctions 'preserve'. The other half of the theory, of what can be learned likewise from consideration of , is discussed under the dual theory of comonads.
Throughout this article, denotes a category. A monad on consists of an endofunctor together with two natural transformations: (where denotes the identity functor on ) and (where is the functor from to ). These are required to fulfill the following conditions (sometimes called coherence conditions):
We can rewrite these conditions using the following commutative diagrams:
See the article on natural transformations for the explanation of the notations and , or see below the commutative diagrams not using these notions:
The first axiom is akin to the associativity in monoids if we think of as the monoid's binary operation, and the second axiom is akin to the existence of an identity element (which we think of as given by ). Indeed, a monad on can alternatively be defined as a monoid in the category whose objects are the endofunctors of and whose morphisms are the natural transformations between them, with the monoidal structure induced by the composition of endofunctors.
The power set monad is a monad on the category : For a set let be the power set of and for a function let be the function between the power sets induced by taking direct images under . For every set , we have a map , which assigns to every the singleton . The function
takes a set of sets to its union. These data describe a monad.
The axioms of a monad are formally similar to the monoid axioms. In fact, monads are special cases of monoids, namely they are precisely the monoids among endofunctors , which is equipped with the multiplication given by composition of endofunctors.
Composition of monads is not, in general, a monad. For example, the double power set functor does not admit any monad structure.[3]
The categorical dual definition is a formal definition of a comonad (or cotriple); this can be said quickly in the terms that a comonad for a category is a monad for the opposite category . It is therefore a functor from to itself, with a set of axioms for counit and comultiplication that come from reversing the arrows everywhere in the definition just given.
Monads are to monoids as comonads are to comonoids. Every set is a comonoid in a unique way, so comonoids are less familiar in abstract algebra than monoids; however, comonoids in the category of vector spaces with its usual tensor product are important and widely studied under the name of coalgebras.
The notion of monad was invented by Roger Godement in 1958 under the name "standard construction". Monad has been called "dual standard construction", "triple", "monoid" and "triad".[4] The term "monad" is used at latest 1967, by Jean Bénabou.[5][6]
The identity functor on a category is a monad. Its multiplication and unit are the identity function on the objects of .
Any adjunction
gives rise to a monad on C. This very widespread construction works as follows: the endofunctor is the composite
This endofunctor is quickly seen to be a monad, where the unit map stems from the unit map of the adjunction, and the multiplication map is constructed using the counit map of the adjunction:
In fact, any monad can be found as an explicit adjunction of functors using the Eilenberg–Moore category (the category of -algebras).[7]
The double dualization monad, for a fixed field k arises from the adjunction
where both functors are given by sending a vector space V to its dual vector space . The associated monad sends a vector space V to its double dual . This monad is discussed, in much greater generality, by Kock (1970).
For categories arising from partially ordered sets (with a single morphism from to if and only if ), then the formalism becomes much simpler: adjoint pairs are Galois connections and monads are closure operators.
For example, let be the forgetful functor from the category Grp of groups to the category Set of sets, and let be the free group functor from the category of sets to the category of groups. Then is left adjoint of . In this case, the associated monad takes a set and returns the underlying set of the free group . The unit map of this monad is given by the maps
including any set into the set in the natural way, as strings of length 1. Further, the multiplication of this monad is the map
made out of a natural concatenation or 'flattening' of 'strings of strings'. This amounts to two natural transformations. The preceding example about free groups can be generalized to any type of algebra in the sense of a variety of algebras in universal algebra. Thus, every such type of algebra gives rise to a monad on the category of sets. Importantly, the algebra type can be recovered from the monad (as the category of Eilenberg–Moore algebras), so monads can also be seen as generalizing varieties of universal algebras.
Another monad arising from an adjunction is when is the endofunctor on the category of vector spaces which maps a vector space to its tensor algebra , and which maps linear maps to their tensor product. We then have a natural transformation corresponding to the embedding of into its tensor algebra, and a natural transformation corresponding to the map from to obtained by simply expanding all tensor products.
Under mild conditions, functors not admitting a left adjoint also give rise to a monad, the so-called codensity monad. For example, the inclusion
does not admit a left adjoint. Its codensity monad is the monad on sets sending any set X to the set of ultrafilters on X. This and similar examples are discussed in Leinster (2013).
The following monads over the category of sets are used in denotational semantics of imperative programming languages, and analogous constructions are used in functional programming.
The endofunctor of the maybe or partiality monad adds a disjoint point:[8]
The unit is given by the inclusion of a set into :
The multiplication maps elements of to themselves, and the two disjoint points in to the one in .
In both functional programming and denotational semantics, the maybe monad models partial computations, that is, computations that may fail.
This section needs expansion with: describe multiplication. You can help by adding to it. (February 2023) |
Given a set , the endofunctor of the state monad maps each set to the set of functions . The component of the unit at maps each element to the function
The multiplication maps the function to the function
In functional programming and denotational semantics, the state monad models stateful computations.
This section needs expansion with: describe multiplication. You can help by adding to it. (February 2023) |
Given a set , the endofunctor of the reader or environment monad maps each set to the set of functions . Thus, the endofunctor of this monad is exactly the hom functor . The component of the unit at maps each element to the constant function .
In functional programming and denotational semantics, the environment monad models computations with access to some read-only data.
This section needs expansion with: describe multiplication. You can help by adding to it. (February 2023) |
The list or nondeterminism monad maps a set X to the set of finite sequences (i.e., lists) with elements from X. The unit maps an element x in X to the singleton list [x]. The multiplication concatenates a list of lists into a single list.
In functional programming, the list monad is used to model nondeterministic computations. The covariant powerset monad is also known as the set monad, and is also used to model nondeterministic computation.
Given a monad on a category , it is natural to consider -algebras, i.e., objects of acted upon by in a way which is compatible with the unit and multiplication of the monad. More formally, a -algebra is an object of together with an arrow of called the structure map of the algebra such that the diagrams
and |
commute.
A morphism of -algebras is an arrow of such that the diagram
commutes. -algebras form a category called the Eilenberg–Moore category and denoted by .
For example, for the free group monad discussed above, a -algebra is a set together with a map from the free group generated by towards subject to associativity and unitality conditions. Such a structure is equivalent to saying that is a group itself.
Another example is the distribution monad on the category of sets. It is defined by sending a set to the set of functions with finite support and such that their sum is equal to . In set-builder notation, this is the setBy inspection of the definitions, it can be shown that algebras over the distribution monad are equivalent to convex sets, i.e., sets equipped with operations for subject to axioms resembling the behavior of convex linear combinations in Euclidean space.[9]
Another useful example of a monad is the symmetric algebra functor on the category of -modules for a commutative ring .sending an -module to the direct sum of symmetric tensor powerswhere . For example, where the -algebra on the right is considered as a module. Then, an algebra over this monad are commutative -algebras. There are also algebras over the monads for the alternating tensors and total tensor functors giving anti-symmetric -algebras, and free -algebras, sowhere the first ring is the free anti-symmetric algebra over in -generators and the second ring is the free algebra over in -generators.
There is an analogous construction for commutative -algebras[10]pg 113 which gives commutative -algebras for a commutative -algebra . If is the category of -modules, then the functor is the monad given bywhere -times. Then there is an associated category of commutative -algebras from the category of algebras over this monad.
As was mentioned above, any adjunction gives rise to a monad. Conversely, every monad arises from some adjunction, namely the free–forgetful adjunction
whose left adjoint sends an object X to the free T-algebra T(X). However, there are usually several distinct adjunctions giving rise to a monad: let be the category whose objects are the adjunctions such that and whose arrows are the morphisms of adjunctions that are the identity on . Then the above free–forgetful adjunction involving the Eilenberg–Moore category is a terminal object in . An initial object is the Kleisli category, which is by definition the full subcategory of consisting only of free T-algebras, i.e., T-algebras of the form for some object x of C.
Given any adjunction with associated monad T, the functor G can be factored as
i.e., G(Y) can be naturally endowed with a T-algebra structure for any Y in D. The adjunction is called a monadic adjunction if the first functor yields an equivalence of categories between D and the Eilenberg–Moore category .[11] By extension, a functor is said to be monadic if it has a left adjoint forming a monadic adjunction. For example, the free–forgetful adjunction between groups and sets is monadic, since algebras over the associated monad are groups, as was mentioned above. In general, knowing that an adjunction is monadic allows one to reconstruct objects in D out of objects in C and the T-action.
Beck's monadicity theorem gives a necessary and sufficient condition for an adjunction to be monadic. A simplified version of this theorem states that G is monadic if it is conservative (or G reflects isomorphisms, i.e., a morphism in D is an isomorphism if and only if its image under G is an isomorphism in C) and C has and G preserves coequalizers.
For example, the forgetful functor from the category of compact Hausdorff spaces to sets is monadic. However the forgetful functor from all topological spaces to sets is not conservative since there are continuous bijective maps (between non-compact or non-Hausdorff spaces) that fail to be homeomorphisms. Thus, this forgetful functor is not monadic.[12] The dual version of Beck's theorem, characterizing comonadic adjunctions, is relevant in different fields such as topos theory and topics in algebraic geometry related to descent. A first example of a comonadic adjunction is the adjunction
for a ring homomorphism between commutative rings. This adjunction is comonadic, by Beck's theorem, if and only if B is faithfully flat as an A-module. It thus allows to descend B-modules, equipped with a descent datum (i.e., an action of the comonad given by the adjunction) to A-modules. The resulting theory of faithfully flat descent is widely applied in algebraic geometry.
Monads are used in functional programming to express types of sequential computation (sometimes with side-effects). See monads in functional programming, and the more mathematically oriented Wikibook module b:Haskell/Category theory.
Monads are used in the denotational semantics of impure functional and imperative programming languages.[13][14]
In categorical logic, an analogy has been drawn between the monad-comonad theory, and modal logic via closure operators, interior algebras, and their relation to models of S4 and intuitionistic logics.
It is possible to define monads in a 2-category . Monads described above are monads for .
Seamless Wikipedia browsing. On steroids.
Every time you click a link to Wikipedia, Wiktionary or Wikiquote in your browser's search results, it will show the modern Wikiwand interface.
Wikiwand extension is a five stars, simple, with minimum permission required to keep your browsing private, safe and transparent.