(no commit message)
[lambda.git] / topics / _week8_intensionality.mdwn
index 4159f84..c96d3d3 100644 (file)
@@ -10,7 +10,7 @@ approach to
 intensionality](http://parles.upf.es/glif/pub/sub11/individual/bena_wint.pdf),
 though without explicitly using monads.
 
-All of the code in the discussion below can be found here: [[intensionality-monad.ml]].
+All of the code in the discussion below can be found here: [[code/intensionality-monad.ml]].
 To run it, download the file, start OCaml, and say 
 
        # #use "intensionality-monad.ml";;
@@ -48,9 +48,9 @@ Vs        t->e->t              (s->t)->(s->e)->s->t    thought
 </pre>
 
 This system is modeled on the way Montague arranged his grammar.
-There are significant simplifications: for instance, determiner
-phrases are thought of as corresponding to individuals rather than to
-generalized quantifiers.  
+There are significant simplifications compared to Montague: for
+instance, determiner phrases are thought of here as corresponding to
+individuals rather than to generalized quantifiers.
 
 The main difference between the intensional types and the extensional
 types is that in the intensional types, the arguments are functions
@@ -61,10 +61,11 @@ propositions (type s->t) rather than truth values (type t).
 In addition, the result of each predicate is an intension.
 This expresses the fact that the set of people who left in one world
 may be different than the set of people who left in a different world.
-(Normally, the dependence of the extension of a predicate to the world
+
+Normally, the dependence of the extension of a predicate to the world
 of evaluation is hidden inside of an evaluation coordinate, or built
 into the the lexical meaning function, but we've made it explicit here
-in the way that the intensionality monad makes most natural.)
+in the way that the intensionality monad makes most natural.
 
 The intensional types are more complicated than the extensional
 types.  Wouldn't it be nice to make the complicated types available