X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=assignment3.mdwn;h=013bc3c5052cd781aad78bb5a82656d5e47505c3;hp=d00dba0b2cbbfa44a6adc84668e145aa6e96a7b6;hb=f2662f133c25062dc28261f655bb9daf9c2bbb9c;hpb=97cbee46cb35e1eb7aa5ea5f8b1af3583f5b7522 diff --git a/assignment3.mdwn b/assignment3.mdwn index d00dba0b..013bc3c5 100644 --- a/assignment3.mdwn +++ b/assignment3.mdwn @@ -8,88 +8,84 @@ assignment much faster and more secure. Recall that version 1 style lists are constructed like this: - - -do eta-reductions too - - - - - -
+eq 3 3
 
- + + +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.] +