Difference between revisions of "User:Michiexile/MATH198/Lecture 1"

From HaskellWiki
Jump to navigation Jump to search
Line 98: Line 98:
 
# <math>s(u(x)) = t(u(x)) = x</math>
 
# <math>s(u(x)) = t(u(x)) = x</math>
   
 
In a category, arrows are also called ''morphisms'', and nodes are also called ''objects''. This ties in with the algebraic roots of the field.
   
* We denote by <math>Hom_C(A,B)</math>, or if <math>C</math> is obvious from context, just <math>Hom(A,B)</math>, the set of all arrows from <math>A</math> to <math>B</math>. This is the hom-set, and may also be denoted <math>C(A,B)</math>.
+
We denote by <math>Hom_C(A,B)</math>, or if <math>C</math> is obvious from context, just <math>Hom(A,B)</math>, the set of all arrows from <math>A</math> to <math>B</math>. This is the hom-set, and may also be denoted <math>C(A,B)</math>.
* In a category, arrows are also called ''morphisms'', and nodes are also called ''objects''. This ties in with the algebraic roots of the field.
 
   
  +
If a category is large or small or finite as a graph, it is called a large/small/finite category.
* Large/small categories. Finite categories. Concrete categories.
 
  +
  +
A category with objects a collection of sets and morphisms a selection from all possible set-valued functions such that the identity morphism for each object is a morphism, and composition in the category is just composition of functions is called ''concrete''. Concrete categories form a very rich source of examples, though far from all categories are concrete.
   
 
* Sub-category. Full subcategory. Wide subcategory. Products of categories. Duals/opposites of categories.
 
* Sub-category. Full subcategory. Wide subcategory. Products of categories. Duals/opposites of categories.
Line 155: Line 157:
 
## For which sets is the free monoid on that set commutative.
 
## For which sets is the free monoid on that set commutative.
 
## Prove that for any category <math>C</math>, the set <math>Hom(A,A)</math> is a monoid under composition for every object <math>A</math>.
 
## Prove that for any category <math>C</math>, the set <math>Hom(A,A)</math> is a monoid under composition for every object <math>A</math>.
 
 
 
 
 
 
 
 
 
----
 
 
===Graphs and paths===
 
A ''graph'' is a collection <math>G_0</math> of ''vertices'' and a collection <math>G_1</math> of ''arrows''. The structure of the graph is captured in the existence of two functions, that we shall call ''source'' and ''target'', both going from <math>G_1</math> to <math>G_1</math>. In other words, each arrow has a source and a target.
 
 
We denote by <math>[v,w]</math> the collection of arrows with source <math>v</math> and target <math>w</math>.
 
 
We extend the notation, and denote by <math>G_i</math> the collection of all paths of length <math>i</math>. Such a path is a sequence <math>f_1,\dots,f_i</math> of arrows, such that for each <math>j</math>, <math>target(f_{j-1}) = source(f_j)</math>.
 
 
===Definition of a ''category''===
 
 
A ''category'' is a graph with some special structure:
 
 
* Each <math>[v,w]</math> is a set and equipped with a composition operation <math>[u,v] \times [v,w] \to [u,w]</math>. In other words, any two arrows, such that the target of one is the source of the other, can be composed to give a new arrow with target and source from the ones left out.
 
 
We write <math>f:u\to v</math> if <math>f\in[u,v]</math>.
 
 
<math>u \to v \to w</math> => <math>u \to w</math>
 
 
* The composition of arrows is associative.
 
* Each vertex <math>v</math> has a dedicated arrow <math>1_v</math> with source and target <math>v</math>, called the identity arrow.
 
* Each identity arrow is a left- and right-identity for the composition operation.
 
 
The composition of <math>f:u\to v</math> with <math>g:v\to w</math> is denoted by <math>gf:u\to v\to w</math>. A mnemonic here is that you write things so associativity looks right. Hence, <math>(gf)(x) = g(f(x))</math>. This will make more sense once we get around to ''generalized elements'' later on.
 
 
===Examples===
 
 
* The empty category with no vertices and no arrows.
 
* The category ''1'' with a single vertex and only its identity arrow.
 
* The category ''2'' with two objects, their identity arrows and the arrow <math>a\to b</math>.
 
* For vertices take vector spaces. For arrows, take linear maps. This is a category, the identity arrow is just the identity map <math>f(x) = x</math> and composition is just function composition.
 
* For vertices take finite sets. For arrows, take functions.
 
* For vertices take logical propositions. For arrows take proofs in propositional logic. The identity arrow is the empty proof: ''P'' proves ''P'' without an actual proof. And if you can prove ''P'' using ''Q'' and then ''R'' using ''P'', then this composes to a proof of ''R'' using ''Q''.
 
* For vertices, take data types. For arrows take (computable) functions. This forms a category, in which we can discuss an abstraction that mirrors most of Haskell. There are issues making Haskell not quite a category on its own, but we get close enough to draw helpful conclusions and analogies.
 
* Suppose ''P'' is a set equipped with a partial ordering relation ''<''. Then we can form a category out of this set with elements for vertices and with a single element in ''[v,w]'' if and only if ''v<w''. Then the transitivity and reflexivity of partial orderings show that this forms a category.
 
 
Some language we want settled:
 
 
A category is ''concrete'' if it is like the vector spaces and the sets among the examples - the collection of all sets-with-specific-additional-structure equipped with all functions-respecting-that-structure. We require already that ''[v,w]'' is always a set.
 
 
A category is ''small'' if the collection of all vertices, too, is a set.
 

Revision as of 22:02, 8 September 2009

Welcome, administrativia

I'm Mikael Vejdemo-Johansson. I can be reached in my office 383-BB, especially during my office hours; or by email to mik@math.stanford.edu.

I encourage, strongly, student interactions.

Introduction

Why this course?

An introduction to Haskell will usually come with pointers toward Category Theory as a useful tool, though not with much more than the mention of the subject. This course is intended to fill that gap, and provide an introduction to Category Theory that ties into Haskell and functional programming as a source of examples and applications.

What will we cover?

The definition of categories, special objects and morphisms, functors, natural transformation, (co-)limits and special cases of these, adjunctions, freeness and presentations as categorical constructs, monads and Kleisli arrows, recursion with categorical constructs.

Maybe, just maybe, if we have enough time, we'll finish with looking at the definition of a topos, and how this encodes logic internal to a category. Applications to fuzzy sets.

What do we require?

Our examples will be drawn from discrete mathematics, logic, Haskell programming and linear algebra. I expect the following concepts to be at least vaguely familiar to anyone taking this course:

  • Sets
  • Functions
  • Permutations
  • Groups
  • Partially ordered sets
  • Vector spaces
  • Linear maps
  • Matrices
  • Homomorphisms

Category

Graphs

We recall the definition of a (directed) graph. A graph is a collection of edges (arrows) and vertices (nodes). Each edge is assigned a source node and a target node.

Given a graph , we denote the collection of nodes by and the collection of arrows by . These two collections are connected, and the graph given its structure, by two functions: the source function and the target function .

We shall not, in general, require either of the collections to be a set, but will happily accept larger collections; dealing with set-theoretical paradoxes as and when we have to. A graph where both nodes and arrows are sets shall be called small. A graph where either is a class shall be called large.

If both and are finite, the graph is called finite too.

The empty graph has .

A discrete graph has .

A complete graph has .

A simple graph has at most one arrow between each pair of nodes. Any relation on a set can be interpreted as a simple graph.

  • Show some examples.

A homomorphism of graphs is a pair of functions and such that sources map to sources and targets map to targets, or in other words:

By a path in a graph from the node to the node of length , we mean a sequence of edges such that:

  • for all other .

Paths with start and end point identical are called closed. For any node , there is a unique closed path starting and ending in of length 0.

For any edge , there is a unique path from to of length 1: .

We denote by the set of paths in of length .

Categories

We now are ready to define a category. A category is a graph equipped with an associative composition operation , and an identity element for composition for each node of the graph.

Note that can be viewed as a subset of , the set of all pairs of arrows. It is intentional that we define the composition operator on only a subset of the set of all pairs of arrows - the composable pairs. Whenever you'd want to compose two arrows that don't line up to a path, you'll get nonsense, and so any statement about the composition operator has an implicit "whenever defined" attached to it.

The definition is not quite done yet - this composition operator, and the identity arrows both have a few rules to fulfill, and before I state these rules, there are some notation we need to cover.

Backwards!

If we have a path given by the arrows in , we expect and to compose to something that goes . The origin of all these ideas lies in geometry and algebra, and so the abstract arrows in a category are supposed to behave like functions under function composition, even though we don't say it explicitly.

Now, we are used to writing function application as - and possibly, from Haskell, as f x. This way, the composition of two functions would read .

On the other hand, the way we write our paths, we'd read then . This juxtaposition makes one of the two ways we write things seem backwards. We can resolve it either by making our paths in the category go backwards, or by reversing how we write function application.

In the latter case, we'd write , say, for the application of to , and then write for the composition. It all ends up looking a lot like Reverse Polish Notation, and has its strengths, but feels unnatural to most. It does, however, have the benefit that we can write out function composition as and have everything still make sense in all notations.

In the former case, which is the most common in the field, we accept that paths as we read along the arrows and compositions look backwards, and so, if and , we write , remembering that elements are introduced from the right, and the functions have to consume the elements in the right order.


The existence of the identity map can be captured in a function language as well: it is the existence of a function .

Now for the remaining rules for composition. Whenever defined, we expect associativity - so that . Furthermore, we expect:

  1. Composition respects sources and targets, so that:

In a category, arrows are also called morphisms, and nodes are also called objects. This ties in with the algebraic roots of the field.

We denote by , or if is obvious from context, just , the set of all arrows from to . This is the hom-set, and may also be denoted .

If a category is large or small or finite as a graph, it is called a large/small/finite category.

A category with objects a collection of sets and morphisms a selection from all possible set-valued functions such that the identity morphism for each object is a morphism, and composition in the category is just composition of functions is called concrete. Concrete categories form a very rich source of examples, though far from all categories are concrete.

  • Sub-category. Full subcategory. Wide subcategory. Products of categories. Duals/opposites of categories.
  • Slice categories. Free categories generated by graphs.

Examples

  • The empty category.
  • The one object/one arrow category
  • The categories and
  • The category Set of sets.
  • The catgeory FSet of finite sets.
  • The category PFn of sets and partial functions.
    • is a partially ordered set.
  • Every partial order is a category. Each hom-set has at most one element.
  • Every monoid is a category. Only one object.
    • Kleene closure. Free monoids.
  • The category of Sets and injective functions.
  • The category of Sets and surjective functions.
  • The category of -vector spaces and linear maps.
  • The category with objects the natural numbers and the set of -matrices.
  • The category of Data Types with Computable Functions.
    • Our ideal programming language has:
      • Primitive data types.
      • Constants of each primitive type.
      • Operations, given as functions between types.
      • Constructors, producing elements from data types, and producing derived data types and operations.
    • We will assume that the language is equipped with
      • A do-nothing operation for each data type. Haskell has id.
      • An empty type , with the property that each type has exactly one function to this type. Haskell has (). We will use this to define the constants of type as functions . Thus, constants end up being 0-ary functions.
      • A composition constructor, taking an operator and another operator and producing an operator . Haskell has (.).
    • This allows us to model a functional programming language with a category.
  • The category with objects logical propositions and arrows proofs.




Homework

For a passing mark, a written, acceptable solution to at least 2 of the 4 questions should be given no later than midnight before the next lecture.

  1. Prove the general associative law: that for any path, and any bracketing of that path, the same composition may be found.
  2. Suppose in some category .
    1. If for all in the category, then .
    2. If for all in the category, then .
    3. These two results characterize the objects in a category by the properties of their corresponding identity arrows completely.
  3. For as many of the examples given as you can, prove that they really do form a category. Passing mark is at least 60% of the given examples.
  4. For this question, all parts are required:
    1. For which sets is the free monoid on that set commutative.
    2. Prove that for any category , the set is a monoid under composition for every object .