Category theory/Natural transformation: Difference between revisions

From HaskellWiki
(maybeToList as an example)
 
m (Better section structure)
Line 1: Line 1:
== Example ==
== Example: <hask>maybeToList</hask> ==


<haskell>
<haskell>

Revision as of 19:12, 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

η:ΦΨ
ηX:Φ(X)Ψ(X)
maybeToList :: Maybe Int -> [Int]
Nothing []
Just 0 [0]
Just 1 [1]
ηY:Φ(Y)Ψ(Y)
maybeToList :: Maybe Bool -> [Bool]
Nothing []
Just True [True]
Just False [False]

Horizontal arrows

f:XY
Φ(f):Φ(X)Φ(Y)
map even:: Maybe Int -> Maybe Bool
Nothing Nothing
Just 0 Just True
Just 1 Just False
Ψ(f):Ψ(X)Ψ(Y)
map even:: [Int] -> [Bool]
[] []
[0] [T]rue
[1] [F]alse

Commutativity of diagram

ηYΦ(f)=Ψ(f)ηX
map even . maybeToList maybeToList . map even
Nothing [] []
Just 0 [True] [True]
Just 1 [False] [False]