-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.58a.scm
66 lines (54 loc) · 1.38 KB
/
2.58a.scm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
(define (variable? x)
(symbol? x))
(define (same-variable? x y)
(and (variable? x)
(variable? y)
(eq? x y)))
(define (make-sum a b)
(cond
((=number? a 0) b)
((=number? b 0) a)
((and (number? a)
(number? b))
(+ a b))
(else (list a '+ b))))
(define (=number? exp num)
(and (number? exp) (= exp num)))
(define (make-product a b)
(cond
((or (=number? a 0)
(=number? b 0)) 0)
((=number? a 1) b)
((=number? b 1) a)
((and (number? a) (number? b)) (* a b))
(else (list a '* b))))
(define (sum? x)
(and (pair? x) (eq? (cadr x) '+)))
(define (addend s)
(car s))
(define (augend s)
(caddr s))
(define (product? x)
(and (pair? x) (eq? (cadr x) '*)))
(define (multiplier p)
(car p))
(define (multiplicand p)
(caddr p))
(define (deriv exp var)
(cond
((number? exp) 0)
((variable? exp)
(if (same-variable? exp var) 1 0))
((sum? exp)
(make-sum
(deriv (addend exp) var)
(deriv (augend exp) var)))
((product? exp)
(make-sum
(make-product (multiplier exp)
(deriv (multiplicand exp) var))
(make-product (deriv (multiplier exp) var)
(multiplicand exp))))
(else
(error "unknown expression type: DERIV" exp))))
(deriv '(x + (3 * (x + (y + 2)))) 'x) ; 4