A monoid is a set that is closed under an associative binary operation and has an identity element I ∈ Such that for all a ∈ S, Ia = aI = a. Note that unlike a group, its elements need not have inverses. It can also be thought of as a semigroup with an identity element.

learn more… | top users | synonyms

2
votes
2answers
95 views

index function for balanced binary tree

I have problem, i can't figure out how i must decide what sub-tree my function indexJ must to choose at the each step walks through the my balanced binary tree - JoinList. The idea is to cache the ...
5
votes
1answer
84 views

Instancing Monoid for a Type

I have a Type in Haskell to make a Map have several values associated to a key. If I compile the following code: type Mapa k v = Map k [v] instance Monoid (Mapa k v) where --mempty :: Mapa k v ...
10
votes
3answers
184 views

Is there a standard abstraction for semirings or monoids in C++?

Does boost, or any other common C++ library, provide semiring or monoid abstractions (such as a template class)? I have some algorithms that I would like to express in terms of these abstract ...
6
votes
1answer
123 views

Debugging infinite Sum in Haskell

Say I have a function (it doesn't have any practical application, just an academic interest, thus weird way to write it, with monoids, applicative functors and fixpoint combinators) f :: Num a => ...
34
votes
1answer
1k views

Simple examples to illustrate Category, Monoid and Monad?

I am getting very confused with these three concepts. Is there any simple examples to illustrate the differences between Category, Monoid and Monad ? It would be very helpful if there is a ...
1
vote
1answer
177 views

How do you implement monoid interface for this tree in haskell?

Please excuse the terminology, my mind is still bending. The tree: data Ftree a = Empty | Leaf a | Branch ( Ftree a ) ( Ftree a ) deriving ( Show ) I have a few questions: If Ftree could not ...
5
votes
1answer
162 views

Stack overflow in monoidal fold over large list

First some imports, import Control.Applicative import Data.Traversable as T import Data.Foldable as F import Data.Monoid Say I have a functor holding a pair of values, data Fret a = Fret a a ...
1
vote
2answers
135 views

Choosing the non-empty Monoid

I need a function which will choose a non-empty monoid. For a list this will mean the following behaviour: > [1] `mor` [] [1] > [1] `mor` [2] [1] > [] `mor` [2] [2] Now, I've actually ...
2
votes
5answers
177 views

Monoid mempty in pattern matching

I tried to write a generalized maximum function similar to the one in Prelude. My first naiv approach looked like this: maximum' :: (F.Foldable a, Ord b) => a b -> Maybe b maximum' mempty = ...
22
votes
2answers
578 views

Monoidal parsing — what is it?

I just stumbled upon the term monoidal parsing from a slide named "Introduction to Monoids" by Edward Kmett. The slide uses haskell throughout. Now when searching for the term I found nothing but a ...
8
votes
2answers
355 views

Why can't GHC derive instances for Monoid?

GHC has a few language flags, such as DeriveFunctor, DeriveDataTypeable etc., which enable compiler generation of derived instances for type classes other than those allowed in Haskell 98. This ...
6
votes
4answers
321 views

Haskell: duplicated functions (+) and (++), mappend

(+) and (++) are just specializations of mappend; am I right? Why are they needed? This is useless duplication since Haskell has these powerful typeclasses and type inference. Let's say we delete (+) ...
9
votes
1answer
305 views

Applicative instance for a tuple with monoid and function inside

I was trying to convert a haskell example, I came across earlier, to scalaz. The original example was this: ("Answer to the ", (*)) <*> ("Ultimate Question of ", 6) <*> ("Life, the ...
6
votes
1answer
264 views

How to write monoid protocol in Clojure?

The following does not work, for obvious reasons. (defprotocol Monoid (mappend [a b]) (mzero [])) mzero has zero arguments, and zero argument methods are not allowed (or do not make sense) in ...
31
votes
1answer
775 views

Distinction between typeclasses MonadPlus, Alternative, and Monoid?

The standard-library Haskell typeclasses MonadPlus, Alternative, and Monoid each provide two methods with essentially the same semantics: An empty value: mzero, empty, or mempty. An operator a -> ...
2
votes
1answer
940 views

monoid vs monad in Scala

I have recently tried to find a good source on the difference between monads and monoids. Could someone provide a link to a good resource on this or perhaps take one's time to elaborate on the ...
4
votes
1answer
227 views

Group values by a key with any Monoid

I would like to write a method mergeKeys that groups the values in an Iterable[(K, V)] by the keys. For example, I could write: def mergeKeysList[K, V](iter: Iterable[(K, V)]) = { ...
12
votes
3answers
856 views

Scala PartialFunction can be Monoid?

I thought PartialFunction can be Monoid. Is my thought process correct ? For example, import scalaz._ import scala.{PartialFunction => -->} implicit def ...
5
votes
3answers
701 views

Using monads, monoids, functors and arrows in practice

I recently ran into this post about useful resources for different aspects of functional programming, such as monads and monoids, etc. But the question is - what use can an average programmer make ...
11
votes
1answer
633 views

Write a Maximum Monoid using Maybe in Haskell

I've been going through Haskell monoids and their uses, which has given me a fairly good understanding of the basics of monoids. One of the things introduced in the blog post is the Any monoid, and ...
143
votes
3answers
23k views

A monad is just a monoid in the category of endofunctors, what's the problem?

Who first said A monad is just a monoid in the category of endofunctors, what's the problem? and on a less important note is this true and if so could you give an explanation (hopefully one ...
4
votes
3answers
442 views

Are monads Writer m and Either e categorically dual?

I noticed there is a dual relation between Writer m and Either e monads. If m is a monoid, then unit :: () -> m join :: (m,m) -> m can be used to form a monad: return is composition: a -> ...
16
votes
4answers
1k views

Examples of monoids/semigroups in programming

It is well-known that monoids are stunningly ubiquitous in programing. They are so ubiquitous and so useful that I, as a 'hobby project', am working on a system that is completely based on their ...