Functors, Applicative, and Monads

A simple monadic EDSL for input/output (deep embedding)

code

A simple monadic EDSL for input/output (intermediate embedding)

code

Calculating (>>=) for Program as a monad (intermediate embedding)

A simple monadic EDSL for input/output (shallow embedding)

Monads

Structure-preserving mappings

Functors

Functors: more examples

Multi-parameter functions map to multiple containers

Laws for multi-parameter maps.

Applicative functors

Applicative Maybe

Relation to monads

Blog on Applicative Functors

Not a functor

A functor, not applicative

Applicative, not a monad

List monad

Given f :: a -> b -> c, there are two generic ways to lift f to lists, getting [a] -> [b] -> [c].

  1. Zipping ("pointwise"): zipWith f. This aligns the two lists and combines elements at the same index.

  2. Cartesian product ("each with each"): cartesian f as bs = [ f a b | a <- as, b <- bs ].

Questions:

  1. What are the units of these operations?

  2. Can you formulate laws in the likeness of associativity?

  3. With zipWith serving as liftA2 what would be the Applicative instance? Do the applicative functor laws hold?

  4. With cartesian serving as liftM2 what would be the Monad instance? Do the monad laws hold?

  5. (Hard:) Can you make a Monad where liftM2 = zipWith? Do the monad laws hold?

    Exercise: Answer these questions and accompany your answers by proofs!

Structures learned so far