Intuitively, I think that what the fancy math vocabulary is saying is that:
Monoid
A monoid is a set of objects, and a method of combining them. Well known monoids are:
Further, Every monoid has an identity, which is that "no-op" element that has no effect when you combine it with something else:
- 0 + 7 == 7 + 0 == 7
- [] ++ [1,2,3] == [1,2,3] ++ [] == [1,2,3]
- {} union {apple} == {apple} union {} == {apple}
Finally, a monoid must be associative. (you can reduce a long string of combinations anyway you want, as long as you don't change the left-to-right-order of objects) Addition is OK ((5+3)+1 == 5+(3+1)), but subtraction isn't ((5-3)-1 != 5-(3-1)).
Monad
Now, let's consider a special kind of set and a special way of combining objects.
Objects
Suppose your set contains objects of a special kind: functions. And these functions have an interesting signature: They don't carry numbers to numbers, or strings strings. Each function carries a number to a list of numbers, in a two-step process.
- Compute 0 or more results
- Combine those results unto a single answer somehow.
Examples:
- 1 -> [1] (just wrap the input)
- 1 -> [] (discard the input ,wrap the nothingness in a list)
- 1 -> [2] (add 1 to the input, and wrap the result)
- 3 -> [4, 6] (add 1 to input, and multiply input by 2, and wrap the multiple results)
Combining Objects
Also, our way of combining functions is special. A simple way to combine function is composition: Let's take our examples above, and compose each function with itself:
- 1 -> [1] -> [[1]] (wrap the input, twice)
- 1 -> [] -> [] (discard the input, wrap the nothingness in a list, twice)
- 1 -> [2] -> [ UH-OH! ] (we can't "add 1" to a list!")
- 3 -> [4, 6] -> [ UH-OH! ] (we can't add 1 a list!)
Without getting to much into type theory, the point is that you can combine two integers to get an integer, but you can't always compose two functions and get a function of the same type. (Function with type a -> a will compose, but a-> [a] won't.)
So, let's define a different way of combining functions. When we combine two of these functions, we don't want to "double-wrap" the results.
Here is what we do. When we want to combine two functions F and G, we follow this process (called binding):
- Compute the "results" from F, but don't combine them.
- Compute the results from applying G to each of F's results separately, yielding a collection of collection of results.
- Flatten the 2-level collection, and combine all the results.
Back to our examples, let's combine (bind) a function with itself, using this new way of "binding" function:
- 1 -> [1] -> [1] (wrap the input, twice)
- 1 -> [] -> [] (discard the input, wrap the nothingness in a list, twice)
- 1 -> [2] -> [ 3 ] (add 1, then add 1 again, and wrap the result.)
- 3 -> [4,6] -> [ 5,8, 7,12] (add 1 to input, and also multiply input by 2, keeping both results, then do it all again to both results, and the wrap the final results in a list.)
This more sophisticated way of combining functions is associative (following from how function composition is associative when you aren't doing the fancy wrapping stuff).
Tying it all together,
- a monad is a structure that defines a way to combine functions,
- analogously to how a monoid is a structure that defines a way to combine objects,
- where the method of combination is associative,
- and where there is a special 'No-op' that can be combined with any Something to result in Something unchanged.
Notes
There are lots of ways to "wrap" results. You can make a list, or a set, or discard all but the first result while noting if there are no results, attach a sidecar of state, print a log message, etc, etc.
I've played a bit loose with the definitions, in hopes of getting the essential idea across intuitively.
I've simplified things a bit by insisting that our monad operate on functions of type a -> [a]. In fact, monads work on functions of type a -> m b , but the generalization is kind of a technical detail that isn't the main insight.