I run into examples of Applicatives that are not Monads. I like the multi-dimensional array example but I did not get it completely.
Let's take a matrix M[A]
. Could you show that M[A]
is an Applicative
but not a Monad
with Scala code ? Do you have any "real-world" examples of using matrices as Applicatives
?
Something like
M[T] <*> M[T => U]
is applicative:There may be more complex applicatives in signal processing for example. Using applicatives allows you to build one matrix of functions (each do N or less element-operations) and do only 1 matrix-operation instead of N.
Matrix is not a monoid by definition - you have to define "+" (concatenation) between matrixes for that (
fold
more precisely). And not every (even monoidal) matrix is a monad - you have to additionaly definefmap
(notflatMap
- justmap
in scala) to make it aFunctor
(endo-functor if it returns matrix). But by default Matrix isn't Functor/Monoid/Monad(Functor + Monoid).About monadic matrixes. Matrix can be monoid: you may define dimension-bound concatenation for matrixes that are same sized along the orthogonal dimension. Dimension/size-independent concatenation will be something like:
Identity element will be
[]
So you can also build the monad (pseudocode again):
Unfortunately, you must have zero-element (or any default) for T (not only for monoid itself). It doesn't make T itself some kind of magma (because no defined binary operation for this set is required - only some
const
defined for T), but may create additional problems (depending on your challenges).