Category theory: Difference between revisions

From HaskellWiki
m (Add math category)
Line 80: Line 80:


[[Category:Theoretical foundations]]
[[Category:Theoretical foundations]]
[[Category:Mathematics]]

Revision as of 16:26, 6 November 2006

Category theory can be helpful in understanding Haskell's type system. There is a "Haskell category", of which the objects are Haskell types, and the morphisms from types a to b are Haskell functions of type a -> b. Various other Haskell structures can be used make it a Cartesian closed category.


Defintion of a category

A category Cconsists of two collections:

Ob(C), the objects of C

Ar(C), the arrows of C (which are not the same as Arrows defined in GHC)

Each arrow f in Ar(C) has a domain, dom f, and a codomain, cod f, each chosen from Ob(C). The notation f:AB means f is an arrow with domain A and codomain B. Further, there is a function called composition, such that gf is defined only when the codomain of f is the domain of g, and in this case, gf has the domain of f and the codomain of g.

In symbols, if f:AB and g:BC, then gf:AC.

Also, for each object A, there is an arrow idA:AA, (often simply denoted as 1 or id, when there is no chance of confusion).

Axioms

The following axioms must hold for C to be a category:

  1. If f:AB then fidA=idBf=f (left and right identity)
  2. If f:AB and g:BC and h:CD, then h(gf)=(hg)f (associativity)

Examples of categories

  • Set, the category of sets and set functions.
  • Mon, the category of monoids and monoid morphisms.
  • Monoids are themselves one-object categories.
  • Grp, the category of groups and group morphisms.
  • Rng, the category of rings and ring morphisms.
  • Grph, the category of graphs and graph morphisms.
  • Top, the category of topological spaces and continuous maps.
  • Preord, the category of preorders and order preserving maps.
  • CPO, the category of complete partial orders and continuous functions.
  • Cat, the category of categories and functors.
  • the category of data types and functions on data structures
  • the category of functions and data flows (~ data flow diagram)
  • the category of stateful objects and dependencies (~ object diagram)
  • the category of values and value constructors
  • the category of states and messages (~ state diagram)

Further definitions

With examples in Haskell at:

Categorical programming

Catamorphisms and related concepts, categorical approach to functional programming, categorical programming. Many materials cited here refer to category theory, so as an introduction to this discipline see the #See also section.

See also