User:Michiexile/MATH198/Lecture 1

From HaskellWiki
< User:Michiexile‎ | MATH198
Revision as of 10:55, 27 August 2009 by Michiexile (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Welcome, administrativia

Introduction

Why this course? What will we cover? What do we require?

Category

A graph is a collection G0 of vertices and a collection G1 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 G1 to G0. In other words, each arrow has a source and a target.

We denote by Ar(v,w) the collection of arrows with source v and target w.

A category is a graph with some special structure:

  • Each Ar(v,w) is a set and equipped with a composition operation Ar(u,v) x Ar(v,w) -> Ar(u,w). 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.

u -> v -> w => u -> w

  • The composition of arrows is associative.
  • Each vertex v has a dedicated arrow 1v with source and target v, called the identity arrow.
  • Each identity arrow is a left- and right-identity for the composition operation.


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 a -> b.