Difference between revisions of "Category theory/Natural transformation"

From HaskellWiki
Jump to navigation Jump to search
m (Rephrasings)
m (<math> environment)
Line 20: Line 20:
 
<haskell>maybeToList :: Maybe a -> [a]</haskell>
 
<haskell>maybeToList :: Maybe a -> [a]</haskell>
   
==== Left: side of X object ====
+
==== Left: side of ''X'' object ====
   
 
{| Border=2 CellPadding=2 CellSpacing=2 | Dia
 
{| Border=2 CellPadding=2 CellSpacing=2 | Dia
Line 37: Line 37:
 
|}
 
|}
   
==== Right: side of Y object ====
+
==== Right: side of ''Y'' object ====
   
 
{| Border=2 CellPadding=2 CellSpacing=2 | Dia
 
{| Border=2 CellPadding=2 CellSpacing=2 | Dia
Line 61: Line 61:
 
</haskell>
 
</haskell>
   
==== Side of \Phi functor ====
+
==== Side of <math>\Phi</math> functor ====
   
 
{| Border=2 CellPadding=2 CellSpacing=2
 
{| Border=2 CellPadding=2 CellSpacing=2
Line 78: Line 78:
 
|}
 
|}
   
==== Side of \Psi functor ====
+
==== Side of <math>\Psi</math> functor ====
   
 
{| Border=2 CellPadding=2 CellSpacing=2
 
{| Border=2 CellPadding=2 CellSpacing=2

Revision as of 19:45, 2 October 2006

Example: maybeToList

 map even $ maybeToList $ Just 5

yields the same as

 maybeToList $ map even $ Just 5

yields: both yield

 [False]

Vertical arrows: sides of objects

… showing the operation of the natural transformation.

maybeToList :: Maybe a -> [a]

Left: side of X object

maybeToList :: Maybe Int -> [Int]
Nothing []
Just 0 [0]
Just 1 [1]

Right: side of Y object

maybeToList :: Maybe Bool -> [Bool]
Nothing []
Just True [True]
Just False [False]

Horizontal arrows: sides of functors

 even :: Int -> Bool

Side of functor

map even:: Maybe Int -> Maybe Bool
Nothing Nothing
Just 0 Just True
Just 1 Just False

Side of functor

map even:: [Int] -> [Bool]
[] []
[0] [T]rue
[1] [F]alse

Commutativity of diagram

map even . maybeToList maybeToList . map even
Nothing [] []
Just 0 [True] [True]
Just 1 [False] [False]

Remarks

  • even has a more general type (Integral a => a -> Bool) than described here
  • Words “side”, “horizontal”, “vertical”, “left”, “right” serve here only to point to the discussed parts of a diagram, thus, they are not part of the scientific terminology.