-
Notifications
You must be signed in to change notification settings - Fork 0
/
2.57.scm
72 lines (60 loc) · 1.62 KB
/
2.57.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
67
68
69
70
71
72
(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? (car x) '+)))
(define (addend s)
(cadr s))
(define (augend s)
(let ((augends (cdr (cdr s))))
(if (null? (cdr augends))
(car augends)
(cons '+ augends))))
(define (product? x)
(and (pair? x) (eq? (car x) '*)))
(define (multiplier p)
(cadr p))
(define (multiplicand p)
(let ((multiplicands (cdr (cdr p))))
(if (null? (cdr multiplicands))
(car multiplicands)
(cons '* multiplicands))))
(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 y (+ x 3)) 'x) ; (+ (* x y) (* y (+ x 3)))