|
@@ -49,7 +49,6 @@ plan to use this for the majority of the examples
|
|
|
|
|
|
isn't she pretty???
|
|
|
|
|
|
-
|
|
|
** 1.1.2 Naming and the Environment
|
|
|
|
|
|
variables name an object that has a value
|
|
@@ -100,15 +99,13 @@ to eval primitives:
|
|
|
|
|
|
(define g 6) is a special form
|
|
|
|
|
|
-
|
|
|
** 1.1.4 Compound Procedures
|
|
|
essential powers of a programming language:
|
|
|
-> numbers & arithmetic are primitive
|
|
|
-> nesting allows combining
|
|
|
-> definitions allow abstraction
|
|
|
|
|
|
-Procedure Definitons
|
|
|
- \giving a name to a compound expression
|
|
|
+Procedure Definitons: giving a name to a compound expression
|
|
|
|
|
|
#+BEGIN_SRC scheme :session sq :noweb yes
|
|
|
|
|
@@ -151,14 +148,15 @@ to eval a comp proc (assuming primitive built-in):
|
|
|
-> eval the body with params replaced by args
|
|
|
|
|
|
- substitution model (applicative-order) ::
|
|
|
- 1. (f 5)
|
|
|
- 2. (sum-of-squares (+ a 1) (* a 2))
|
|
|
- 2b (sum-of-squares (+ 5 1) (* 5 2))
|
|
|
- 3. (sum-of-squares 6 10)
|
|
|
- 4. (+ (square 6) (square 10))
|
|
|
- 5. (+ (* 6 6) (* 10 10))
|
|
|
- 6. (+ 36 100)
|
|
|
- 7. 136
|
|
|
+ 1. (f 5)
|
|
|
+ 2. (sum-of-squares (+ a 1) (* a 2))
|
|
|
+ 3. (sum-of-squares (+ 5 1) (* 5 2))
|
|
|
+ 4. (sum-of-squares 6 10)
|
|
|
+ 5. (+ (square 6) (square 10))
|
|
|
+ 6. (+ (* 6 6) (* 10 10))
|
|
|
+ 7. (+ 36 100)
|
|
|
+ 8. 136
|
|
|
+
|
|
|
|
|
|
substitution is a mental model, not how it really works
|
|
|
simplified, incomplete, will be refined as we continue
|
|
@@ -166,13 +164,13 @@ simplified, incomplete, will be refined as we continue
|
|
|
lisp does use applicative order, compared to ...
|
|
|
|
|
|
- normal-order evaluation ::
|
|
|
- 1. (f 5)
|
|
|
- 2. (sum-of-squares (+ 5 1) (* 5 2))
|
|
|
- 3. (+ (square (+ 5 1)) (square (* 5 2)))
|
|
|
- 4. (+ (* (+ 5 1) (+ 5 1)) (* (* 5 2) (* 5 2)))
|
|
|
- 5. (+ (* 6 6) (* 10 10))
|
|
|
- 6. (+ 36 100)
|
|
|
- 7. 136
|
|
|
+ 1. (f 5)
|
|
|
+ 2. (sum-of-squares (+ 5 1) (* 5 2))
|
|
|
+ 3. (+ (square (+ 5 1)) (square (* 5 2)))
|
|
|
+ 4. (+ (* (+ 5 1) (+ 5 1)) (* (* 5 2) (* 5 2)))
|
|
|
+ 5. (+ (* 6 6) (* 10 10))
|
|
|
+ 6. (+ 36 100)
|
|
|
+ 7. 136
|
|
|
|
|
|
** 1.1.6 Conditional Expressions and Predicates
|
|
|
|
|
@@ -232,3 +230,54 @@ and, or are special procedures
|
|
|
(not (< x y)))
|
|
|
|
|
|
#+END_SRC
|
|
|
+
|
|
|
+** 1.1.8 Procedures as Black-Box Abstractions
|
|
|
+sqrt-iter is recursive; defined in terms of itself.
|
|
|
+computing sqrt breaks up naturally into subproblems.
|
|
|
+
|
|
|
+ -> square
|
|
|
+ /
|
|
|
+ -- > good-enough -
|
|
|
+ / \
|
|
|
+sqrt ---- > sqrt-iter -- -> abs
|
|
|
+ \
|
|
|
+ -- > improve ----> average
|
|
|
+
|
|
|
+a proc should supress this detail. users should not have
|
|
|
+to know about what is going on inside of sqrt.
|
|
|
+
|
|
|
+ - local names :: var names chosen by proc's author are irrelevant
|
|
|
+ - bound variable :: formal param of a proc
|
|
|
+ - free variable :: unbound
|
|
|
+ - scope :: set of exps for which a binding gives a name
|
|
|
+
|
|
|
+a procedure's formal params bind vars to its body's scope
|
|
|
+
|
|
|
+new! block structure:
|
|
|
+
|
|
|
+#+BEGIN_SRC scheme :session :noweb yes
|
|
|
+ (define (average x y)
|
|
|
+ (/ (+ x y)
|
|
|
+ 2))
|
|
|
+ (define (square x)
|
|
|
+ (* x x))
|
|
|
+
|
|
|
+ (define (sqrt x)
|
|
|
+ (define (good-enough? guess x)
|
|
|
+ (< (abs (- (square guess) x)) 0.001))
|
|
|
+ (define (improve guess x)
|
|
|
+ (average guess (/ x guess)))
|
|
|
+ (define (sqrt-iter guess x)
|
|
|
+ (if (good-enough? guess x)
|
|
|
+ guess
|
|
|
+ (sqrt-iter (improve guess x) x)))
|
|
|
+ (sqrt-iter 1.0 x))
|
|
|
+
|
|
|
+ (sqrt 36)
|
|
|
+#+END_SRC
|
|
|
+
|
|
|
+#+RESULTS:
|
|
|
+: 6.000000005333189
|
|
|
+
|
|
|
+"we will use block structure extensively" (─‿‿─)
|
|
|
+THE IDEA OF BLOCK STRUCTURE ORIGINATED WITH ALGOL-60
|