X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=list_monad_as_continuation_monad.mdwn;h=dd05fb0c745003c773478748918442fb4c8f2c48;hp=aa167a4b3f1a20f26a1cebc5e1944d1b87d3c966;hb=76d2b904ae8af78f5d69fd1580f7f2a2cbfe6095;hpb=cd3b0839319cccf085142a33c82c32df1bcf69d4 diff --git a/list_monad_as_continuation_monad.mdwn b/list_monad_as_continuation_monad.mdwn index aa167a4b..dd05fb0c 100644 --- a/list_monad_as_continuation_monad.mdwn +++ b/list_monad_as_continuation_monad.mdwn @@ -1,16 +1,20 @@ +[[!toc]] +We're going to come at continuations from three different directions, and each +time we're going to end up at the same place: a particular monad, which we'll +call the continuation monad. Rethinking the list monad ------------------------- To construct a monad, the key element is to settle on a type -constructor, and the monad naturally follows from that. We'll remind -you of some examples of how monads follow from the type constructor in -a moment. This will involve some review of familair material, but -it's worth doing for two reasons: it will set up a pattern for the new -discussion further below, and it will tie together some previously -unconnected elements of the course (more specifically, version 3 lists -and monads). +constructor, and the monad more or less naturally follows from that. +We'll remind you of some examples of how monads follow from the type +constructor in a moment. This will involve some review of familair +material, but it's worth doing for two reasons: it will set up a +pattern for the new discussion further below, and it will tie together +some previously unconnected elements of the course (more specifically, +version 3 lists and monads). For instance, take the **Reader Monad**. Once we decide that the type constructor is @@ -21,17 +25,19 @@ then the choice of unit and bind is natural: let r_unit (a : 'a) : 'a reader = fun (e : env) -> a -Since the type of an `'a reader` is `env -> 'a` (by definition), -the type of the `r_unit` function is `'a -> env -> 'a`, which is a -specific case of the type of the *K* combinator. So it makes sense -that *K* is the unit for the reader monad. +The reason this is a fairly natural choice is that because the type of +an `'a reader` is `env -> 'a` (by definition), the type of the +`r_unit` function is `'a -> env -> 'a`, which is an instance of the +type of the *K* combinator. So it makes sense that *K* is the unit +for the reader monad. Since the type of the `bind` operator is required to be r_bind : ('a reader) -> ('a -> 'b reader) -> ('b reader) -We can reason our way to the correct `bind` function as follows. We -start by declaring the types determined by the definition of a bind operation: +We can reason our way to the traditional reader `bind` function as +follows. We start by declaring the types determined by the definition +of a bind operation: let r_bind (u : 'a reader) (f : 'a -> 'b reader) : ('b reader) = ... @@ -40,19 +46,26 @@ feed it to `f`. Since `u` is a function from environments to objects of type `'a`, the way we open a box in this monad is by applying it to an environment: +
 	... f (u e) ...
+
This subexpression types to `'b reader`, which is good. The only -problem is that we invented an environment `e` that we didn't already have , -so we have to abstract over that variable to balance the books: +problem is that we made use of an environment `e` that we didn't already have, +so we must abstract over that variable to balance the books: fun e -> f (u e) ... +[To preview the discussion of the Curry-Howard correspondence, what +we're doing here is constructing an intuitionistic proof of the type, +and using the Curry-Howard labeling of the proof as our bind term.] + This types to `env -> 'b reader`, but we want to end up with `env -> 'b`. Once again, the easiest way to turn a `'b reader` into a `'b` is to apply it to an environment. So we end up as follows: - r_bind (u : 'a reader) (f : 'a -> 'b reader) : ('b reader) = - f (u e) e +
+r_bind (u : 'a reader) (f : 'a -> 'b reader) : ('b reader) = f (u e) e         
+
And we're done. This gives us a bind function of the right type. We can then check whether, in combination with the unit function we chose, it satisfies the monad laws, and behaves in the way we intend. And it does. @@ -121,7 +134,7 @@ so there's no obvious reason to prefer `fun x -> [x,x]`. In other words, `fun x -> [x]` is a reasonable choice for a unit. As for bind, an `'a list` monadic object contains a lot of objects of -type `'a`, and we want to make some use of each of them (rather than +type `'a`, and we want to make use of each of them (rather than arbitrarily throwing some of them away). The only thing we know for sure we can do with an object of type `'a` is apply the function of type `'a -> 'a list` to them. Once we've done so, we @@ -136,13 +149,13 @@ choice of unit and bind for the list monad. Yet we can still desire to go deeper, and see if the appropriate bind behavior emerges from the types, as it did for the previously -considered monads. But we can't do that if we leave the list type -as a primitive Ocaml type. However, we know several ways of implementing +considered monads. But we can't do that if we leave the list type as +a primitive Ocaml type. However, we know several ways of implementing lists using just functions. In what follows, we're going to use type -3 lists (the right fold implementation), though it's important to -wonder how things would change if we used some other strategy for -implementating lists. These were the lists that made lists look like -Church numerals with extra bits embdded in them: +3 lists, the right fold implementation (though it's important and +intriguing to wonder how things would change if we used some other +strategy for implementating lists). These were the lists that made +lists look like Church numerals with extra bits embdded in them: empty list: fun f z -> z list with one element: fun f z -> f 1 z @@ -226,7 +239,7 @@ Now, we've used a `k` that we pulled out of nowhere, so we need to abstract over fun (k : 'c -> 'b -> 'b) -> u (fun (a : 'a) (b : 'b) -> f a k b) -This whole expression has type `('c -> 'b -> 'b) -> 'b -> 'b`, which is exactly the type of a `('c, 'b) list'`. So we can hypothesize that we our bind is: +This whole expression has type `('c -> 'b -> 'b) -> 'b -> 'b`, which is exactly the type of a `('c, 'b) list'`. So we can hypothesize that our bind is: l'_bind (u : ('a -> 'b -> 'b) -> 'b -> 'b) (f : 'a -> ('c -> 'b -> 'b) -> 'b -> 'b) @@ -301,3 +314,66 @@ lists, so that they will print out. Ta da! + +Montague's PTQ treatment of DPs as generalized quantifiers +---------------------------------------------------------- + +We've hinted that Montague's treatment of DPs as generalized +quantifiers embodies the spirit of continuations (see de Groote 2001, +Barker 2002 for lengthy discussion). Let's see why. + +First, we'll need a type constructor. As you probably know, +Montague replaced individual-denoting determiner phrases (with type `e`) +with generalized quantifiers (with [extensional] type `(e -> t) -> t`. +In particular, the denotation of a proper name like *John*, which +might originally denote a object `j` of type `e`, came to denote a +generalized quantifier `fun pred -> pred j` of type `(e -> t) -> t`. +Let's write a general function that will map individuals into their +corresponding generalized quantifier: + + gqize (a : e) = fun (p : e -> t) -> p a + +This function is what Partee 1987 calls LIFT, and it would be +reasonable to use it here, but we will avoid that name, given that we +use that word to refer to other functions. + +This function wraps up an individual in a box. That is to say, +we are in the presence of a monad. The type constructor, the unit and +the bind follow naturally. We've done this enough times that we won't +belabor the construction of the bind function, the derivation is +highly similar to the List monad just given: + + type 'a continuation = ('a -> 'b) -> 'b + c_unit (a : 'a) = fun (p : 'a -> 'b) -> p a + c_bind (u : ('a -> 'b) -> 'b) (f : 'a -> ('c -> 'd) -> 'd) : ('c -> 'd) -> 'd = + fun (k : 'a -> 'b) -> u (fun (a : 'a) -> f a k) + +Note that `c_unit` is exactly the `gqize` function that Montague used +to lift individuals into the continuation monad. + +That last bit in `c_bind` looks familiar---we just saw something like +it in the List monad. How similar is it to the List monad? Let's +examine the type constructor and the terms from the list monad derived +above: + + type ('a, 'b) list' = ('a -> 'b -> 'b) -> 'b -> 'b + l'_unit a = fun f -> f a + l'_bind u f = fun k -> u (fun a -> f a k) + +(We performed a sneaky but valid eta reduction in the unit term.) + +The unit and the bind for the Montague continuation monad and the +homemade List monad are the same terms! In other words, the behavior +of the List monad and the behavior of the continuations monad are +parallel in a deep sense. + +Have we really discovered that lists are secretly continuations? Or +have we merely found a way of simulating lists using list +continuations? Well, strictly speaking, what we have done is shown +that one particular implementation of lists---the right fold +implementation---gives rise to a continuation monad fairly naturally, +and that this monad can reproduce the behavior of the standard list +monad. But what about other list implementations? Do they give rise +to monads that can be understood in terms of continuations? + +