X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=advanced_topics%2Fmonads_in_category_theory.mdwn;h=29b6feb3e250ad195f8884215570afa5fe639ecf;hp=46c575cccc8671e46f1595239f43d0399792ba95;hb=c4eb20ae862369e97cadef43183d0663f3eddd11;hpb=b40dafe674003107ac10de2a66c3679b50dd9db2 diff --git a/advanced_topics/monads_in_category_theory.mdwn b/advanced_topics/monads_in_category_theory.mdwn index 46c575cc..29b6feb3 100644 --- a/advanced_topics/monads_in_category_theory.mdwn +++ b/advanced_topics/monads_in_category_theory.mdwn @@ -24,8 +24,8 @@ A **monoid** is a structure (S,⋆,z) consisting of an associat
 	for all s1, s2, s3 in S:
-	(i) s1⋆s2 etc are also in S
-	(ii) (s1⋆s2)⋆s3 = s1⋆(s2⋆s3)
+	  (i) s1⋆s2 etc are also in S
+	 (ii) (s1⋆s2)⋆s3 = s1⋆(s2⋆s3)
 	(iii) z⋆s1 = s1 = s1⋆z
 
@@ -45,13 +45,15 @@ When a morphism `f` in category C has source `C1` and target `C2`, we'll To have a category, the elements and morphisms have to satisfy some constraints:
-	(i) the class of morphisms has to be closed under composition:
-	where f:C1→C2 and g:C2→C3, g ∘ f is also a
-	morphism of the category, which maps C1→C3.
-	(ii) composition of morphisms has to be associative
+	  (i) the class of morphisms has to be closed under composition:
+	      where f:C1→C2 and g:C2→C3, g ∘ f is also a
+	      morphism of the category, which maps C1→C3.
+
+	 (ii) composition of morphisms has to be associative
+
 	(iii) every element E of the category has to have an identity
-	morphism 1E, which is such that for every morphism
-	f:C1→C2: 1C2 ∘ f = f = f ∘ 1C1
+	      morphism 1E, which is such that for every morphism f:C1→C2:
+	      1C2 ∘ f = f = f ∘ 1C1
 
These parallel the constraints for monoids. Note that there can be multiple distinct morphisms between an element `E` and itself; they need not all be identity morphisms. Indeed from (iii) it follows that each element can have only a single identity morphism. @@ -61,11 +63,11 @@ A good intuitive picture of a category is as a generalized directed graph, where Some examples of categories are: -* Categories whose elements are sets and whose morphisms are functions between those sets. Here the source and target of a function are its domain and range, so distinct functions sharing a domain and range (e.g., sin and cos) are distinct morphisms between the same source and target elements. The identity morphism for any element/set is just the identity function for that set. +* Categories whose elements are sets and whose morphisms are functions between those sets. Here the source and target of a function are its domain and range, so distinct functions sharing a domain and range (e.g., `sin` and `cos`) are distinct morphisms between the same source and target elements. The identity morphism for any element/set is just the identity function for that set. * any monoid (S,⋆,z) generates a category with a single element `x`; this `x` need not have any relation to `S`. The members of `S` play the role of *morphisms* of this category, rather than its elements. All of these morphisms are understood to map `x` to itself. The result of composing the morphism consisting of `s1` with the morphism `s2` is the morphism `s3`, where s3=s1⋆s2. The identity morphism for the (single) category element `x` is the monoid's identity `z`. -* a **preorder** is a structure `(S, ≤)` consisting of a reflexive, transitive, binary relation on a set `S`. It need not be connected (that is, there may be members `x`,`y` of `S` such that neither `x≤y` nor `y≤x`). It need not be anti-symmetric (that is, there may be members `s1`,`s2` of `S` such that `s1≤s2` and `s2≤s1` but `s1` and `s2` are not identical). Some examples: +* a **preorder** is a structure (S, ≤) consisting of a reflexive, transitive, binary relation on a set `S`. It need not be connected (that is, there may be members `x`,`y` of `S` such that neither x≤y nor y≤x). It need not be anti-symmetric (that is, there may be members `s1`,`s2` of `S` such that s1≤s2 and s2≤s1 but `s1` and `s2` are not identical). Some examples: * sentences ordered by logical implication ("p and p" implies and is implied by "p", but these sentences are not identical; so this illustrates a pre-order without anti-symmetry) * sets ordered by size (this illustrates it too) @@ -78,10 +80,16 @@ Functors A **functor** is a "homomorphism", that is, a structure-preserving mapping, between categories. In particular, a functor `F` from category C to category D must:
-	(i) associate with every element C1 of C an element F(C1) of D
-	(ii) associate with every morphism f:C1→C2 of C a morphism F(f):F(C1)→F(C2) of D
-	(iii) "preserve identity", that is, for every element C1 of C: F of C1's identity morphism in C must be the identity morphism of F(C1) in D: F(1C1) = 1F(C1).
-	(iv) "distribute over composition", that is for any morphisms f and g in C: F(g ∘ f) = F(g) ∘ F(f)
+	  (i) associate with every element C1 of C an element F(C1) of D
+
+	 (ii) associate with every morphism f:C1→C2 of C a morphism F(f):F(C1)→F(C2) of D
+
+	(iii) "preserve identity", that is, for every element C1 of C:
+	      F of C1's identity morphism in C must be the identity morphism of F(C1) in D:
+	      F(1C1) = 1F(C1).
+
+	 (iv) "distribute over composition", that is for any morphisms f and g in C:
+	      F(g ∘ f) = F(g) ∘ F(f)
 
A functor that maps a category to itself is called an **endofunctor**. The (endo)functor that maps every element and morphism of C to itself is denoted `1C`. @@ -96,60 +104,77 @@ Natural Transformation ---------------------- So categories include elements and morphisms. Functors consist of mappings from the elements and morphisms of one category to those of another (or the same) category. **Natural transformations** are a third level of mappings, from one functor to another. -Where `G` and `H` are functors from category C to category D, a natural transformation η between `G` and `H` is a family of morphisms η[C1]:G(C1)→H(C1)` in D for each element `C1` of C. That is, η[C1]` has as source `C1`'s image under `G` in D, and as target `C1`'s image under `H` in D. The morphisms in this family must also satisfy the constraint: +Where `G` and `H` are functors from category C to category D, a natural transformation η between `G` and `H` is a family of morphisms η[C1]:G(C1)→H(C1) in D for each element `C1` of C. That is, η[C1] has as source `C1`'s image under `G` in D, and as target `C1`'s image under `H` in D. The morphisms in this family must also satisfy the constraint: - for every morphism f:C1→C2 in C: η[C2] ∘ G(f) = H(f) ∘ η[C1] +
+	for every morphism f:C1→C2 in C:
+	η[C2] ∘ G(f) = H(f) ∘ η[C1]
+
-That is, the morphism via `G(f)` from `G(C1)` to `G(C2)`, and then via η[C2]` to `H(C2)`, is identical to the morphism from `G(C1)` via η[C1]` to `H(C1)`, and then via `H(f)` from `H(C1)` to `H(C2)`. +That is, the morphism via `G(f)` from `G(C1)` to `G(C2)`, and then via η[C2] to `H(C2)`, is identical to the morphism from `G(C1)` via η[C1] to `H(C1)`, and then via `H(f)` from `H(C1)` to `H(C2)`. How natural transformations compose: Consider four categories B, C, D, and E. Let `F` be a functor from B to C; `G`, `H`, and `J` be functors from C to D; and `K` and `L` be functors from D to E. Let η be a natural transformation from `G` to `H`; φ be a natural transformation from `H` to `J`; and ψ be a natural transformation from `K` to `L`. Pictorally: +
 	- B -+ +--- C --+ +---- D -----+ +-- E --
 		 | |        | |            | |
-	 F: -----→ G: -----→     K: -----→
-		 | |        | |  | η     | |  | ψ
+	 F: ------> G: ------>     K: ------>
+		 | |        | |  | η       | |  | ψ
 		 | |        | |  v         | |  v
-		 | |    H: -----→     L: -----→
-		 | |        | |  | φ     | |
+		 | |    H: ------>     L: ------>
+		 | |        | |  | φ       | |
 		 | |        | |  v         | |
-		 | |    J: -----→         | |
+		 | |    J: ------>         | |
 	-----+ +--------+ +------------+ +-------
+
-Then `(η F)` is a natural transformation from the (composite) functor `GF` to the composite functor `HF`, such that where `b1` is an element of category B, `(η F)[b1] = η[F(b1)]`---that is, the morphism in D that η assigns to the element `F(b1)` of C. +Then (η F) is a natural transformation from the (composite) functor `GF` to the composite functor `HF`, such that where `B1` is an element of category B, (η F)[B1] = η[F(B1)]---that is, the morphism in D that η assigns to the element `F(B1)` of C. -And `(K η)` is a natural transformation from the (composite) functor `KG` to the (composite) functor `KH`, such that where `C1` is an element of category C, `(K η)[C1] = K(η[C1])`---that is, the morphism in E that `K` assigns to the morphism η[C1]` of D. +And (K η) is a natural transformation from the (composite) functor `KG` to the (composite) functor `KH`, such that where `C1` is an element of category C, (K η)[C1] = K(η[C1])---that is, the morphism in E that `K` assigns to the morphism η[C1] of D. -`(φ -v- η)` is a natural transformation from `G` to `J`; this is known as a "vertical composition". We will rely later on this, where `f:C1→C2`: +(φ -v- η) is a natural transformation from `G` to `J`; this is known as a "vertical composition". We will rely later on this, where f:C1→C2: +
 	φ[C2] ∘ H(f) ∘ η[C1] = φ[C2] ∘ H(f) ∘ η[C1]
+
-by naturalness of φ, is: +by naturalness of φ, is: +
 	φ[C2] ∘ H(f) ∘ η[C1] = J(f) ∘ φ[C1] ∘ η[C1]
+
-by naturalness of η, is: +by naturalness of η, is: +
 	φ[C2] ∘ η[C2] ∘ G(f) = J(f) ∘ φ[C1] ∘ η[C1]
+
-Hence, we can define `(φ -v- η)[x]` as: φ[x] ∘ η[x]` and rely on it to satisfy the constraints for a natural transformation from `G` to `J`: +Hence, we can define (φ -v- η)[\_] as: φ[\_] ∘ η[\_] and rely on it to satisfy the constraints for a natural transformation from `G` to `J`: +
 	(φ -v- η)[C2] ∘ G(f) = J(f) ∘ (φ -v- η)[C1]
+
An observation we'll rely on later: given the definitions of vertical composition and of how natural transformations compose with functors, it follows that: +
 	((φ -v- η) F) = ((φ F) -v- (η F))
+
I'll assert without proving that vertical composition is associative and has an identity, which we'll call "the identity transformation." -`(ψ -h- η)` is natural transformation from the (composite) functor `KG` to the (composite) functor `LH`; this is known as a "horizontal composition." It's trickier to define, but we won't be using it here. For reference: +(ψ -h- η) is natural transformation from the (composite) functor `KG` to the (composite) functor `LH`; this is known as a "horizontal composition." It's trickier to define, but we won't be using it here. For reference: +
 	(φ -h- η)[C1]  =  L(η[C1]) ∘ ψ[G(C1)]
-					   =  ψ[H(C1)] ∘ K(η[C1])
+				  =  ψ[H(C1)] ∘ K(η[C1])
+
Horizontal composition is also associative, and has the same identity as vertical composition.