Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
863 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?
15
votes
4answers
443 views

What mathematical duals are there in OO programming?

If you have watched Going Deep shows of the Channel9 lately, one very frequently mentioned topic is mathematical duality in programming. TomasP has a good blog post about duality in object oriented ...
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
407 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) ...
10
votes
3answers
347 views

Examples of useful or non-trival dual interfaces

Recently Erik Meijer and others have show how IObservable/IObserver is the dual of IEnumerable/IEnumerator. The fact that they are dual means that any operation on one interface is valid on the other, ...
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 ...
8
votes
2answers
254 views

could someone explain the connection between type covariance/contravariance and category theory?

I am just starting to read about category theory, and would very much appreciate it if someone could explain the connection between CS contravariance/covariance and category theory. What would some ...
7
votes
3answers
298 views

Scala — How to use Functors on non-Function types?

While reading the description of Functors on this blog: https://hseeberger.wordpress.com/2010/11/25/introduction-to-category-theory-in-scala/ there is a generic definition of Functor and a more ...
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 ...
5
votes
2answers
165 views

What's the relation of fold on Option, Either etc and fold on Traversable?

Scalaz provides a method named fold for various ADTs such as Boolean, Option[_], Validation[_, _], Either[_, _] etc. This method basically takes functions corresponding to all possible cases for that ...
0
votes
1answer
127 views

javascript package for category theory (or graph) diagrams?

I'm looking for a Javascript package that will help me write category theory diagrams. Basically, creating dots with labels and arrows between the dots (where more than one arrow can connect two dots ...
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?