Category theory/Natural transformation: Difference between revisions

From HaskellWiki
(→‎Commutative diagram: Definition of notion ``natural transformation'')
m (Commutative diagram is in D category)
Line 21: Line 21:
* <math>\forall A \in \mathbf{Ob}(\mathcal C) \longmapsto \eta_A \in \mathrm{Hom}_{\mathcal D}(\Phi(A), \Psi(A))</math>. We call <math>\eta_A</math> the component of <math>\eta</math> at ''A''.
* <math>\forall A \in \mathbf{Ob}(\mathcal C) \longmapsto \eta_A \in \mathrm{Hom}_{\mathcal D}(\Phi(A), \Psi(A))</math>. We call <math>\eta_A</math> the component of <math>\eta</math> at ''A''.
* <math>\eta_Y \cdot \Phi(f) = \Psi(f) \cdot \eta_X</math>
* <math>\eta_Y \cdot \Phi(f) = \Psi(f) \cdot \eta_X</math>
Thus, the following diagram commutes:
Thus, the following diagram commutes (in <math>\mathcal D</math>):


[[Image:natural_transformation.png|center]]
[[Image:natural_transformation.png|center]]

Revision as of 14:46, 3 October 2006

Example: maybeToList

 map even $ maybeToList $ Just 5

yields the same as

 maybeToList $ fmap even $ Just 5

yields: both yield

 [False]

Commutative diagram

  • Let C, D denote categories.
  • Let Φ,Ψ:CD be functors.
  • Let X,YOb(C). Let fHomC(X,Y).

Let us define the η:ΦΨ natural transformation. It associates to each object of C a morphism of D in the following way (usually, not sets are discussed here, but proper classes, so I do not use term “function” for this Ob(C)Mor(D) mapping):

  • AOb(C)ηAHomD(Φ(A),Ψ(A)). We call ηA the component of η at A.
  • ηYΦ(f)=Ψ(f)ηX

Thus, the following diagram commutes (in D):

Vertical arrows: sides of objects

… showing how the natural transformation works.

η:ΦΨ
maybeToList :: Maybe a -> [a]

Left: side of X object

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

Right: side of Y object

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

Horizontal arrows: sides of functors

f:XY
 even :: Int -> Bool

Side of Φ functor

Φ(f):Φ(X)Φ(Y)
fmap even:: Maybe Int -> Maybe Bool
Nothing Nothing
Just 0 Just True
Just 1 Just False

Side of Ψ functor

Ψ(f):Ψ(X)Ψ(Y)
map even:: [Int] -> [Bool]
[] []
[0] [True]
[1] [False]

Commutativity of the diagram

Ψ(f)ηX=ηYΦ(f)

both paths span between

Φ(X)Ψ(Y)
Maybe Int -> [Bool]
map even . maybeToList maybeToList . fmap 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.
  • If You want to modifiy the #Commutative diagram, see its source code (in LaTeX using amscd).

External links