Tagged Questions

73
votes
3answers
12k views

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

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 ...
71
votes
2answers
5k views

Real-world applications of zygohistomorphic prepromorphisms

Yes, these ones: {-#LANGUAGE TypeOperators, RankNTypes #-} import Control.Morphism.Zygo import Control.Morphism.Prepro import Control.Morphism.Histo import Control.Functor.Algebra import ...
35
votes
7answers
862 views

What is a monad in FP, in categorical terms?

Every time someone promises to "explain monads", my interest is piqued, only to be replaced by frustration when the alleged "explanation" is a long list of examples terminated by some off-hand remark ...
23
votes
5answers
754 views

Monads as adjunctions

I've been reading about monads in category theory. One definition of monads uses a pair of adjoint functors. A monad is defined by a round-trip using those functors. Apparently adjunctions are very ...
19
votes
1answer
386 views

What are Haskell's monad transformers in categorical terms?

As a math student, the first thing I did when I learned about monads in Haskell was check that they really were monads in the sense I knew about. But then I learned about monad transformers and those ...
19
votes
2answers
692 views

Can liftM differ from liftA?

According to the Typeclassopedia (among other sources), Applicative logically belongs between Monad and Pointed (and thus Functor) in the type class hierarchy, so we would ideally have something like ...
18
votes
4answers
481 views

What are zygo/meta/histo/para/futu/dyna/whatever-morphisms?

Is there a list of them with examples accessible to a person without extensive category theory knowledge?
14
votes
1answer
253 views

Haskell: How is join a natural transformation?

I can define a natural transformation in Haskell as: h :: [a] -> Maybe a h [] = Nothing h (x:_) = Just x and with a function k: k :: Char -> Int k = ord the naturality condition is met ...
13
votes
2answers
801 views

Resources for learning category theory

I am going to take a course on category theory soon. What resources can you recommend for learning about it? What parts are relevant to learn and how do I learn to apply my knowledge?
12
votes
1answer
406 views

Functor is for (a -> b) -> (f a -> f b), what is for (Category c) => c a b -> c (f a) (f b)?

I would like to have a function for either mapping a pure function to a container or sequencing applicative/monadic action through it. For pure mapping we have fmap :: Functor f => (a -> b) ...
9
votes
1answer
252 views

Representable Functor isomorphic to (Bool -> a)

I thought I'd try the intriguing Representable-functors package to define a Monad and Comonad instance for the functor given by data Pair a = Pair a a which is representable by Bool; as mentioned in ...
7
votes
3answers
738 views

Are all Haskell functors endofunctors?

I'm a bit confused, and need someone to set me straight. Lets outline my current understanding: Where E is an endofunctor, and A is some category: E : A -> A. Since all types and morphisms in ...
0
votes
1answer
110 views

NonEmpty isn't a Comonad?

Why is the NonEmpty list from the semigroups package not also an instance of the comonad class?