I've seen the term Free Monad pop up every now and then for some time, but everyone just seems to use/discuss them without giving an explanation of what they are. So: what are free monads? (I'd say I'm familiar with monads and the Haskell basics, but have only a very rough knowledge of category theory.)
|
|
Edward Kmett's answer is obviously great. But, it is a bit technical. Here is a perhaps more accessible explanation. Free monads are just a general way of turning functors into monads. That is, given any functor
the first of these lets you "get into" your monad, and the second one gives you a way to "get out" of it. More generally, if X is a Y with some extra stuff P, then a "free X" is a a way of getting from a Y to an X without gaining anything extra. Examples: a monoid (X) is a set (Y) with extra structure (P) that basically says it has an operations (you can think of addition) and some identity (like zero). so
now, we all know lists
well, given any type
and so lists are the "free monoid" over sets (or in Haskell types). Okay, so free monads are the same idea. We take a functor, and give back a monad. In fact, since monads can be seen as monoids in the category of endo functors, the definition of a list
looks a lot like the definition of free monads
and the Monad instance has a similarity to the Monoid instance for lists
now, we get our two operations
|
|||||||||
|
|
A free foo happens to be the simplest thing that satisfies all of the 'foo' laws. That is to say it satisfies exactly the laws necessary to be a foo and nothing extra. A forgetful functor is one that "forgets" part of the structure as it goes from one category to another. Given functors Formally, a free functor is left adjoint to a forgetful functor. The Free Monoid Let us start with a simpler example, the free monoid. Take a monoid, which is defined by some carrier set You can make a functor Then, you can define a functor So to review our example so far, in pseudo-Haskell:
Then to show
now, remember the target of In Haskell, we call the side of this that lives in There are consequences that follow from this being an adjunction. Notably that if you forget then build up with free, then forget again, its just like you forgot once, and we can use this to build up the monadic join. since You can compose all of this more directly by describing a list in these terms with:
The Free Monad So what is a Free Monad? Well, we do the same thing we did before, we start with a forgetful functor U from the category of monads where arrows are monad homomorphisms to a category of endofunctors where the arrows are natural transformations, and we look for a functor that is left adjoint to that. So, how does this relate to the notion of a free monad as it is usually used? Knowing that something is a free monad, F is at least isomorphic to the We could also construct it in tighter analogy to the code above for the free list, by defining
Cofree Comonads We can construct something similar, by looking at the right adjoint to a forgetful functor assuming it exists. A cofree functor is simply /right adjoint/ to a forgetful functor, and by symmetry, knowing something is a cofree comonad is the same as knowing that giving a comonad homomorphism from |
|||||||||||||||||||||
|
|
Here's an even simpler answer: A Monad is something that "computes" when monadic context is collapsed by A free monad satisfies all the Monad laws, but does not do any collapsing (i.e., computation). It just builds up a nested series of contexts. The user who creates such a free monadic value is responsible for doing something with those nested contexts, so that the meaning of such a composition can be deferred until after the monadic value has been created. |
|||||||||
|
|
A Haskell free monad is a list of functors. Compare:
You use free monads whenever you need an abstract syntax tree. The base functor of the free monad is the shape of each step of the syntax tree. My post, which somebody already linked, gives several examples of how to build abstract syntax trees with free monads |
|||||||||
|
|
The Free Monad (data structure) is to the Monad (class) like the List (data structure) to the Monoid (class): It is the trivial implementation, where you can decide afterwards how the content will be combined. You probably know what a Monad is and that each Monad needs a specific (Monad-law abiding) implementation of either Let us assume you have a Functor (an implementation of That can be done using the Free Monad (data structure), which wraps the Functor (type) in such a way so that the The real
|
|||||
|
|
I think a simple concrete example will help. Suppose we have a functor
with the obvious
A diagram makes this clearer, but I don't have the facilities for easily drawing one! |
||||
|
|