Skip to content

Instantly share code, notes, and snippets.

@yao2030
Created December 18, 2012 05:42
Show Gist options
  • Save yao2030/4325367 to your computer and use it in GitHub Desktop.
Save yao2030/4325367 to your computer and use it in GitHub Desktop.
(define (=number? exp num)
(and (number? exp) (= exp num)))
(define (variable? x) (symbol? x))
(define (same-variable? a b)
(and (variable? a) (variable? b) (eq? a b)))
(define (make-sum a1 a2)
(cond ((=number? a1 0) a2)
((=number? a2 0) a1)
((and (number? a1) (number? a2)) (+ a1 a2))
(else (list '+ a1 a2))))
(define (make-product m1 m2)
(cond ((or (=number? m1 0) (=number? m2 0)) 0)
((=number? m1 1) m2)
((=number? m2 1) m1)
((and (number? m1) (number? m2)) (* m1 m2))
(else (list '* m1 m2))))
(define (make-exponentiation base exponent)
(cond ((=number? exponent 0) 1)
((=number? exponent 1) base)
(else (list '** base exponent))))
(define (exponentiation? exp)
(and (pair? exp) (eq? (car exp) '**)))
(define (base exp)
(cadr exp))
(define (exponent exp)
(caddr exp))
(define (sum? x)
(and (pair? x) (eq? (car x) '+)))
(define (addend s)
(cadr s))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (augend s)
(cond ((null? (cdddr s))
(caddr s))
(else (append '(+) (cddr s)))))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (product? x)
(and (pair? x) (eq? (car x) '*)))
(define (multiplier p) (cadr p))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(define (multiplicand p)
(if (null? (cdddr p))
(caddr p)
(append '(*) (cddr 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))))
((exponentiation? exp)
(make-product (make-product (exponent exp)
(make-exponentiation (base exp) (- (exponent exp) 1)))
(deriv (base exp) var)))
(else
(error "unknown expression type -- DERIV" exp))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment