Merge branch 'pryor'
[lambda.git] / week2.mdwn
index 13fd1c8..53e86ee 100644 (file)
@@ -154,6 +154,12 @@ The orginal lambda term lifts its first argument (think of it as reversing the o
 
 Viola: the combinator takes any X and Y as arguments, and returns Y applied to X.
 
+One very nice property of combinatory logic is that there is no need to worry about alphabetic variance, or
+variable collision---since there are no (bound) variables, there is no possibility of accidental variable capture, 
+and so reduction can be performed without any fear of variable collision.  We haven't mentioned the intricacies of
+alpha equivalence or safe variable substitution, but they are in fact quite intricate.  (The best way to gain 
+an appreciation of that intricacy is to write a program that performs lambda reduction.)
+
 Back to linguistic applications: one consequence of the equivalence between the lambda calculus and combinatory 
 logic is that anything that can be done by binding variables can just as well be done with combinators.
 This has given rise to a style of semantic analysis called Variable Free Semantics (in addition to 
@@ -184,7 +190,14 @@ van Heijenoort (ed) 1967 *From Frege to Goedel,
 Cresswell has also developed a variable-free approach of some philosophical and linguistic interest
 in two books in the 1990's.
 
-These systems are Turing complete. In other words: every computation we know how to describe can be represented in a logical system consisting of only a single primitive operation!
+A final linguistic application: Steedman's Combinatory Categorial Grammar, where the "Combinatory" is 
+from combinatory logic (see especially his 2000 book, *The Syntactic Process*).  Steedman attempts to build
+a syntax/semantics interface using a small number of combinators, including T = \xy.yx, B = \fxy.f(xy),
+and our friend S.  Steedman used Smullyan's fanciful bird 
+names for the combinators, Thrush, Bluebird, and Starling.
+
+Many of these combinatory logics, in particular, the SKI system, 
+are Turing complete. In other words: every computation we know how to describe can be represented in a logical system consisting of only a single primitive operation!
 
 Here's more to read about combinatorial logic.
 Surely the most entertaining exposition is Smullyan's [[!wikipedia To_Mock_a_Mockingbird]].