X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?a=blobdiff_plain;f=hints%2Fassignment_7_hint_5.mdwn;h=120c1fdb6dbcbd2768935f35399740f1a5de0fd1;hb=60fde0202775a36c5b20c370374649d2a90c6af8;hp=a0ac32a3e8066a71968a56684027591a2eff228c;hpb=85784b8965db9b0daf0c03f043bc68bd9b41a18c;p=lambda.git diff --git a/hints/assignment_7_hint_5.mdwn b/hints/assignment_7_hint_5.mdwn index a0ac32a3..120c1fdb 100644 --- a/hints/assignment_7_hint_5.mdwn +++ b/hints/assignment_7_hint_5.mdwn @@ -1,7 +1,7 @@ * How shall we handle \[[∃x]]? As we said, GS&V really tell us how to interpret \[[∃xPx]], but what they say about this breaks naturally into two pieces, such that we can represent the update of our starting set `u` with \[[∃xPx]] as: -
u >>=set \[[∃x]] >>=set \[[Px]]
+	
u >>= \[[∃x]] >>= \[[Px]]
 	
What does \[[∃x]] need to be here? Here's what they say, on the top of p. 13: @@ -15,17 +15,16 @@ Deferring the "property P" part, this corresponds to:
u updated with \[[∃x]] ≡
-		let extend_one = fun (one_dpm : bool dpm) ->
+		let extend_one : clause = fun one_dpm ->
 			List.map (fun d -> bind_dpm one_dpm (new_peg_and_assign 'x' d)) domain
 		in bind_set u extend_one
 	
where `new_peg_and_assign` is the operation we defined in [hint 3](/hints/assignment_7_hint_3): - let new_peg_and_assign (var_to_bind : char) (d : entity) = - (* we want to return a function that we can bind to a bool dpm *) - fun (truth_value : bool) -> - fun ((r, h) : assignment * store) -> + let new_peg_and_assign (var_to_bind : char) (d : entity) : bool -> bool dpm = + fun truth_value -> + fun (r, h) -> (* first we calculate an unused index *) let new_index = List.length h (* next we store d at h[new_index], which is at the very end of h *) @@ -35,7 +34,7 @@ in let r' = fun var -> if var = var_to_bind then new_index else r var (* we pass through the same truth_value that we started with *) - in (truth_value, r', h') + in (truth_value, r', h');; What's going on in this representation of `u` updated with \[[∃x]]? For each `bool dpm` in `u`, we collect `dpm`s that are the result of passing through their `bool`, but extending their input `(r, h)` by allocating a new peg for entity `d`, for each `d` in our whole domain of entities, and binding the variable `x` to the index of that peg. @@ -57,23 +56,31 @@ type assignment = char -> entity;; type 'a reader = assignment -> 'a;; - let unit_reader (x : 'a) = fun r -> x;; + let unit_reader (value : 'a) : 'a reader = fun r -> value;; - let bind_reader (u : 'a reader) (f : 'a -> 'b reader) = + let bind_reader (u : 'a reader) (f : 'a -> 'b reader) : 'b reader = fun r -> let a = u r in let u' = f a in u' r;; - let getx = fun r -> r 'x';; + Here the type of a sentential clause is: + + type clause = bool reader;; + + Here are meanings for singular terms and predicates: - let lift (predicate : entity -> bool) = + let getx : entity reader = fun r -> r 'x';; + + type lifted_unary = entity reader -> bool reader;; + + let lift (predicate : entity -> bool) : lifted_unary = fun entity_reader -> fun r -> let obj = entity_reader r in unit_reader (predicate obj) - `lift predicate` converts a function of type `entity -> bool` into one of type `entity reader -> bool reader`. The meaning of \[[Qx]] would then be: + The meaning of \[[Qx]] would then be:
\[[Q]] ≡ lift q
 	\[[x]] ≡ getx
@@ -85,10 +92,9 @@
 
 	Recall also how we defined \[[lambda x]], or as [we called it before](/reader_monad_for_variable_binding), \\[[who(x)]]:
 
-		let shift (var_to_bind : char) (clause : bool reader) =
-			(* we return a lifted predicate, that is a entity reader -> bool reader *)
+		let shift (var_to_bind : char) (clause : clause) : lifted_unary =
 			fun entity_reader ->
-				fun (r : assignment) ->
+				fun r ->
 					let new_value = entity_reader r
 					(* remember here we're implementing assignments as functions rather than as lists of pairs *)
 					in let r' = fun var -> if var = var_to_bind then new_value else r var
@@ -96,7 +102,7 @@
 
 	Now, how would we implement quantifiers in this setting? I'll assume we have a function `exists` of type `(entity -> bool) -> bool`. That is, it accepts a predicate as argument and returns `true` if any element in the domain satisfies that predicate. We could implement the reader-monad version of that like this:
 
-		fun (lifted_predicate : entity reader -> bool reader) ->
+		fun (lifted_predicate : lifted_unary) ->
 			fun r -> exists (fun (obj : entity) ->
 				lifted_predicate (unit_reader obj) r)