X-Git-Url: http://lambda.jimpryor.net/git/gitweb.cgi?p=lambda.git;a=blobdiff_plain;f=arithmetic.mdwn;h=d27248754b7832b7c5edadb702823f11a35c3457;hp=f7406ccb66f7a1da09841d65d2a8274fd0e1c61a;hb=0dd9b48d6a2e74d618a99a101f0122f4d7c076fb;hpb=1b71f17d39016a953ec7f2bac55f159e716521b4 diff --git a/arithmetic.mdwn b/arithmetic.mdwn index f7406ccb..d2724875 100644 --- a/arithmetic.mdwn +++ b/arithmetic.mdwn @@ -198,10 +198,10 @@ Here are a bunch of pre-tested operations for the untyped lambda calculus. In so )) in - ; Curry's fixed point combinator + ; Rosenbloom's fixed point combinator let Y = \f. (\h. f (h h)) (\h. f (h h)) in ; Turing's fixed point combinator - let Z = (\u f. f (u u f)) (\u f. f (u u f)) in + let Theta = (\u f. f (u u f)) (\u f. f (u u f)) in ; length for version 1 lists @@ -218,7 +218,7 @@ Here are a bunch of pre-tested operations for the untyped lambda calculus. In so - fact Z 3 ; returns 6 + fact Theta 3 ; returns 6 + +