*Category theory* is a branch of abstract mathematics concerned with exposing and describing the underlying structure of logical and mathematical systems. Concepts from category theory have proven to be extremely effective as tools for structuring both the semantics of programming languages and ...

learn more… | top users | synonyms

11
votes
5answers
278 views

Can a monad be a comonad?

I know what a monad is. I think I have correctly wrapped my mind around what a comonad is. (Or rather, what one is seems simple enough; the tricky part is comprehending what's useful about this...) ...
8
votes
1answer
190 views

Every monad is monoid?

Since every Monad is a Monoid on the sequencing operation. Why doesn't Monad inherit Monoid in haskell?
12
votes
1answer
388 views

What is this special functor structure called?

Suppose that F is an applicative functor with the additional laws (with Haskell syntax): pure (const ()) <*> m === pure () pure (\a b -> (a, b)) <*> m <*> n === pure (\a b ...
153
votes
3answers
11k views

What does “coalgebra” mean in the context of programming?

I have heard the term "coalgebras" several times in functional programming and PLT circles, especially when the discussion is about objects, comonads, lenses, and such. Googling this term gives pages ...
6
votes
2answers
203 views

Applying Semantics to Free Monads

I am trying to abstract the pattern of applying a certain semantics to a free monad over some functor. The running example I am using to motivate this is applying updates to an entity in a game. So I ...
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 ...
2
votes
1answer
36 views

Are lax natural transformations just natural transformations without naturality?

In page 4 of Theorems for free!, Philip Wadler says that parametricity can be expressed in terms of lax natural transformations. Is he referring to the fact that parametrically polymorphic functions ...
12
votes
2answers
359 views

Can I model a list of successes with short circuiting failure via the composition of applicative functors?

The user 'singpolyma' asked on reddit if there was some general structure underlying: data FailList a e = Done | Next a (FailList a e) | Fail e A free monad was suggested, but I wondered if this ...
2
votes
0answers
128 views

A little category theory [duplicate]

One of the standard newbie Haskell questions is a remark isomorphic to "what the holy hell is a monad?!" The canonical answer to this question is infamously defined as "a monad is simply a monoid in ...
29
votes
2answers
724 views

Do Hask or Agda have equalisers?

I was somewhat undecided as to whether this was a math.SE question or an SO one, but I suspect that mathematicians in general are fairly unlikely to know or care much about this category in ...
16
votes
1answer
455 views

Is there a generalization of these Free-like constructions?

I was playing around with free-like ideas, and found this: {-# LANGUAGE RankNTypes #-} data Monoid m = Monoid { mempty :: m, mappend :: m -> m -> m } data Generator a m = Generator { monoid :: ...
6
votes
3answers
203 views

How are functors in Haskell related to functors in category theory?

For as far as I understand, a functor is a mapping between two categories, for example from objects in to objects in where and are categories. In Haskell there is Hask in which the objects are ...
2
votes
1answer
195 views

Functors and free objects in Hask

Based on Wikipedia's definition of a free object, it seems to me that every Functor is Free in Hask. Conversely, every free object should also be a Functor. Is this correct, or am I ...
4
votes
4answers
262 views

Why does Haskell have non-strict functions (semantics)? [closed]

According to this article on denotational semantics in haskell All types have bottom, and a function f:A->B is strict if it maps the bottom of type A to the bottom of type B, it is called non-strict ...
4
votes
1answer
201 views

Why isn't there a simple syntax for coproduct types in Haskell?

Product types in Haskell are easily definable: data Person String String is a product of two types. The coproduct of two types is type Shape=Either Circle Rectangle But whereas the product is ...
7
votes
1answer
247 views

Composition of two functors is a functor

In a previous answer, Petr Pudlak defined the CFunctor class, for functors other than those from Hask to Hask. Re-writing it a bit using type families, it looks like class CFunctor f where type Dom ...
12
votes
2answers
263 views

Are there a thing call “semi-monad” or “counter-monad”?

Well, I am studying Haskell Monads. When I read the Wikibook Category theory article, I found that the signature of monad morphisms looks pretty like tautologies in logic, but you need to convert M a ...
20
votes
3answers
478 views

What are the adjoint functor pairs corresponding to common monads in Haskell?

In category theory, a monad can be constructed from two adjoint functors. In particular, if C and D are categories and F : C --> D and G : D --> C are adjoint functors, in the sense that there is a ...
7
votes
2answers
164 views

What means precisely “function inside a functor”

In category theory functor is a homomorphism between two categories. In Haskell, it's said that applicative functor allows us to apply functions "inside a functor". Could one translate that words ...
10
votes
1answer
365 views

How much is applicative really about applying, rather than “combining”?

For an uncertainty-propagating Approximate type, I'd like to have instances for Functor through Monad. This however doesn't work because I need a vector space structure on the contained types, so it ...
2
votes
0answers
33 views

Complexity of Equivalence of Categories

I'm trying to find a characterization of the computational complexity of the equivalence problem for finitely presented categories. Given two categories C and D, an equivalence is two functors F : ...
4
votes
1answer
220 views

Understanding Sequencing in Functional Programming

I'm mostly a practical guy but I find this interesting. I have been thinking about monadic sequencing and there are a few things that I need clarified. So at the risk of sounding silly here it is: ...
12
votes
2answers
342 views

Are functions of arity-n really just an n-category due to currying? Can they be made into a 1-category?

This question has a longish prelude before I can actually ask it :) Let's say type A and B represent categories, then the function f :: B -> A is a morphism between the two categories. We can ...
5
votes
1answer
183 views

How to define equality for Category instances?

In order to prove that for instance the Category laws hold for some operations on a data type, how do one decide how to define equality? Considering the following type for representing boolean ...
4
votes
3answers
163 views

Satisfying monad laws without a type constructor

Given e.g. a type like data Tree a = Branch (Tree a) (Tree a) | Leaf a I can easily write instances for Functor, Applicative, Monad, etc. But if the "contained" type is predetermined, ...
11
votes
2answers
507 views

Is there a theory that combines category theory/abstract algebra and computational complexity?

Category theory and abstract algebra deal with the way functions can be combined with other functions. Complexity theory deals with how hard a function is to compute. It's weird to me that I haven't ...
16
votes
1answer
488 views

High-Order ScalaCheck

Consider the following definition of a category: trait Category[~>[_, _]] { def id[A]: A ~> A def compose[A, B, C](f: A ~> B)(g: B ~> C): A ~> C } Here's an instance for unary ...
1
vote
1answer
112 views

Contravariant binary operations in Scala

For a very basic generic model of categories, I'm trying to get the morphism associated with a pair of objects in a contravariant fashion. class Obj[DerivedObj <: Obj[DerivedObj]] { /* ... */ } ...
18
votes
1answer
950 views

Haskell for someone who already knows some category theory [closed]

So I've got enough experience with functional programming in general, and I have one nontrivial project written in Haskell already under my belt (a non-optimized Javascript compiler), and went through ...
6
votes
2answers
680 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 ...
40
votes
8answers
1k 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 ...
7
votes
3answers
535 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 ...
23
votes
1answer
652 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 ...
1
vote
1answer
253 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 ...
14
votes
1answer
502 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) ...
13
votes
1answer
349 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 ...
0
votes
1answer
179 views

NonEmpty isn't a Comonad?

Why is the NonEmpty list from the semigroups package not also an instance of the comonad class?
16
votes
1answer
429 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 ...
84
votes
2answers
6k 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 ...
37
votes
5answers
1k 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 ...
142
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 ...
16
votes
4answers
515 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 ...
16
votes
3answers
1k 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 ...
10
votes
2answers
388 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 ...
10
votes
3answers
432 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, ...
25
votes
2answers
935 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 ...
16
votes
3answers
2k views

Resources for learning category theory [closed]

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?
20
votes
5answers
781 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?