Hask
From HaskellWiki
(Difference between revisions)
(id is a function :)) |
|||
| (10 intermediate revisions not shown.) | |||
| Line 1: | Line 1: | ||
| - | '''Hask''' | + | '''Hask''' is the [[Category theory|category]] of Haskell types and functions. |
| - | + | The objects of '''Hask''' are Haskell types, and the morphisms from objects <hask>A</hask> to <hask>B</hask> are Haskell functions of type <hask>A -> B</hask>. The identity morphism for object <hask>A</hask> is <hask>id :: A -> A</hask>, and the composition of morphisms <hask>f</hask> and <hask>g</hask> is <hask>f . g = \x -> f (g x)</hask>. | |
| - | + | == Is '''Hask''' even a category? == | |
Consider: | Consider: | ||
| Line 19: | Line 19: | ||
</haskell> | </haskell> | ||
| - | This might be a problem, because <hask>undef1 . id = undef2</hask>. In order to make '''Hask''' a category, we define two functions <hask>f</hask> and <hask>g</hask> as the same morphism if <hask>f | + | This might be a problem, because <hask>undef1 . id = undef2</hask>. In order to make '''Hask''' a category, we define two functions <hask>f</hask> and <hask>g</hask> as the same morphism if <hask>f x = g x</hask> for all <hask>x</hask>. Thus <hask>undef1</hask> and <hask>undef2</hask> are different ''values'', but the same ''morphism'' in '''Hask'''. |
| - | + | == '''Hask''' is not Cartesian closed == | |
Actual '''Hask''' does not have sums, products, or an initial object, and <hask>()</hask> is not a terminal object. The Monad identities fail for almost all instances of the Monad class. | Actual '''Hask''' does not have sums, products, or an initial object, and <hask>()</hask> is not a terminal object. The Monad identities fail for almost all instances of the Monad class. | ||
| Line 32: | Line 32: | ||
! scope="col" | Sum | ! scope="col" | Sum | ||
! scope="col" | Product | ! scope="col" | Product | ||
| + | ! scope="col" | Product | ||
| + | |- | ||
| + | ! scope="row" | Type | ||
| + | | <hask>data Empty</hask> | ||
| + | | <hask>data () = ()</hask> | ||
| + | | <hask>data Either a b | ||
| + | = Left a | Right b</hask> | ||
| + | | <hask>data (a,b) = | ||
| + | (,) { fst :: a, snd :: b}</hask> | ||
| + | | <hask>data P a b = | ||
| + | P {fstP :: !a, sndP :: !b}</hask> | ||
|- | |- | ||
| - | ! scope="row" | | + | ! scope="row" | Requirement |
| There is a unique function | | There is a unique function | ||
<br /><hask>u :: Empty -> r</hask> | <br /><hask>u :: Empty -> r</hask> | ||
| Line 58: | Line 69: | ||
<hask>fst . u = f</hask> | <hask>fst . u = f</hask> | ||
<br /><hask>snd . u = g</hask> | <br /><hask>snd . u = g</hask> | ||
| + | | For any functions | ||
| + | <br /><hask>f :: r -> a</hask> | ||
| + | <br /><hask>g :: r -> b</hask> | ||
| + | |||
| + | there is a unique function | ||
| + | <hask>u :: r -> P a b</hask> | ||
| + | |||
| + | such that: | ||
| + | <hask>fstP . u = f</hask> | ||
| + | <br /><hask>sndP . u = g</hask> | ||
|- | |- | ||
| - | ! scope="row" | | + | ! scope="row" | Candidate |
| <hask>u1 r = case r of {}</hask> | | <hask>u1 r = case r of {}</hask> | ||
| <hask>u1 _ = ()</hask> | | <hask>u1 _ = ()</hask> | ||
| Line 65: | Line 86: | ||
<br /><hask>u1 (Right b) = g b</hask> | <br /><hask>u1 (Right b) = g b</hask> | ||
| <hask>u1 r = (f r,g r)</hask> | | <hask>u1 r = (f r,g r)</hask> | ||
| + | | <hask>u1 r = P (f r) (g r)</hask> | ||
|- | |- | ||
! scope="row" | Example failure condition | ! scope="row" | Example failure condition | ||
| Line 74: | Line 96: | ||
| <hask>r ~ ()</hask> | | <hask>r ~ ()</hask> | ||
<br /><hask>f _ = undefined</hask> | <br /><hask>f _ = undefined</hask> | ||
| + | <br /><hask>g _ = undefined</hask> | ||
| + | | <hask>r ~ ()</hask> | ||
| + | <br /><hask>f _ = ()</hask> | ||
<br /><hask>g _ = undefined</hask> | <br /><hask>g _ = undefined</hask> | ||
|- | |- | ||
| Line 81: | Line 106: | ||
| <hask>u2 _ = ()</hask> | | <hask>u2 _ = ()</hask> | ||
| <hask>u2 _ = undefined</hask> | | <hask>u2 _ = undefined</hask> | ||
| + | | | ||
|- | |- | ||
! scope="row" | Difference | ! scope="row" | Difference | ||
| Line 91: | Line 117: | ||
| <hask>u1 _ = (undefined,undefined)</hask> | | <hask>u1 _ = (undefined,undefined)</hask> | ||
<br /><hask>u2 _ = undefined</hask> | <br /><hask>u2 _ = undefined</hask> | ||
| + | | <hask>f _ = ()</hask> | ||
| + | <br /><hask>(fstP . u1) _ = undefined</hask> | ||
|- style="background: red;" | |- style="background: red;" | ||
! scope="row" | Result | ! scope="row" | Result | ||
| + | ! scope="col" | FAIL | ||
! scope="col" | FAIL | ! scope="col" | FAIL | ||
! scope="col" | FAIL | ! scope="col" | FAIL | ||
| Line 99: | Line 128: | ||
|} | |} | ||
| - | == Platonic '''Hask''' == | + | == "Platonic" '''Hask''' == |
| - | Because of these difficulties, Haskell developers tend to think in some subset of Haskell where types do not have | + | Because of these difficulties, Haskell developers tend to think in some subset of Haskell where types do not have bottom values. This means that it only includes functions that terminate, and typically only finite values. The corresponding category has the expected initial and terminal objects, sums and products, and instances of Functor and Monad really are endofunctors and monads. |
== Links == | == Links == | ||
Current revision
Hask is the category of Haskell types and functions.
The objects of Hask are Haskell types, and the morphisms from objectsA
B
A -> B
A
id :: A -> A
f
g
f . g = \x -> f (g x)
Contents |
1 Is Hask even a category?
Consider:
undef1 = undefined :: a -> b undef2 = \_ -> undefined
Note that these are not the same value:
seq undef1 () = undefined seq undef2 () = ()
undef1 . id = undef2
f
g
f x = g x
x
undef1
undef2
2 Hask is not Cartesian closed
Actual Hask does not have sums, products, or an initial object, and()
| Initial Object | Terminal Object | Sum | Product | Product | |
|---|---|---|---|---|---|
| Type | data Empty | data () = () | data Either a b = Left a | Right b | data (a,b) = (,) { fst :: a, snd :: b} | data P a b = P {fstP :: !a, sndP :: !b} |
| Requirement | There is a unique function
u :: Empty -> r | There is a unique function
u :: r -> () | For any functions
f :: a -> r g :: b -> r there is a unique function u :: Either a b -> r such that: u . Left = f u . Right = g | For any functions
f :: r -> a g :: r -> b there is a unique function u :: r -> (a,b) such that: fst . u = f snd . u = g | For any functions
f :: r -> a g :: r -> b there is a unique function u :: r -> P a b such that: fstP . u = f sndP . u = g |
| Candidate | u1 r = case r of {} | u1 _ = () | u1 (Left a) = f a u1 (Right b) = g b | u1 r = (f r,g r) | u1 r = P (f r) (g r) |
| Example failure condition | r ~ () | r ~ () | r ~ () f _ = () g _ = () | r ~ () f _ = undefined g _ = undefined | r ~ () f _ = () g _ = undefined |
| Alternative u | u2 _ = () | u2 _ = undefined | u2 _ = () | u2 _ = undefined | |
| Difference | u1 undefined = undefined u2 undefined = () | u1 _ = () u2 _ = undefined | u1 undefined = undefined u2 undefined = () | u1 _ = (undefined,undefined) u2 _ = undefined | f _ = () (fstP . u1) _ = undefined |
| Result | FAIL | FAIL | FAIL | FAIL | FAIL |
3 "Platonic" Hask
Because of these difficulties, Haskell developers tend to think in some subset of Haskell where types do not have bottom values. This means that it only includes functions that terminate, and typically only finite values. The corresponding category has the expected initial and terminal objects, sums and products, and instances of Functor and Monad really are endofunctors and monads.
