X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=assignment3.mdwn;h=f89f5017a3363236c5e4fc3ba52c45e7ba776818;hp=d00dba0b2cbbfa44a6adc84668e145aa6e96a7b6;hb=5c7dbf2ff40b4cf646b9fc3bb9290d19e0a8e388;hpb=97cbee46cb35e1eb7aa5ea5f8b1af3583f5b7522 diff --git a/assignment3.mdwn b/assignment3.mdwn index d00dba0b..f89f5017 100644 --- a/assignment3.mdwn +++ b/assignment3.mdwn @@ -8,88 +8,83 @@ assignment much faster and more secure. Recall that version 1 style lists are constructed like this: - - -do eta-reductions too - - - - - -
+Then `length mylist` evaluates to 3.
+
+1. What does `head (tail (tail mylist))` evaluate to?
+
+2. Using the `length` function as a model, and using the predecessor
+function, write a function that computes factorials.  (Recall that n!,
+the factorial of n, is n times the factorial of n-1.)
+
+Warning: my browser isn't able to compute factorials of numbers
+greater than 2 (it does't provide enough resources for the JavaScript
+interpreter; web pages are not supposed to be that computationally
+intensive).
+
+
+3. Write a function `listLenEq` that returns true just in case two lists have the
+same length.  That is,
+
+     listLenEq mylist (makeList meh (makeList meh (makeList meh nil))) ~~> true
+     listLenEq mylist (makeList meh (makeList meh nil))) ~~> false
+
+
+4. Now write the same function (true iff two lists have the same
+length) but don't use the length function (hint: use `leq` as a model).
+
+   That is, (makeList 1 (makeList 2 (makeList 3 nil))) 
+
+[The following should be correct, but won't run in my browser:
+
+let factorial = Y (\fac n. isZero n 1 (mult n (fac (predecessor n)))) in
+
+
+let reverse = 
+  Y (\rev l. isNil l nil 
+                   (isNil (tail l) l 
+                          (makeList (head (rev (tail l))) 
+                                    (rev (makeList (head l) 
+                                                   (rev (tail (rev (tail l))))))))) in
+
+reverse (makeList 1 (makeList 2 (makeList 3 nil)))
 
- + +It may require more resources than my browser is willing to devote to +JavaScript.] +