Skip to content

Instantly share code, notes, and snippets.

@kouddy
Created March 28, 2015 17:43
Show Gist options
  • Save kouddy/b7172837fb2985093ad2 to your computer and use it in GitHub Desktop.
Save kouddy/b7172837fb2985093ad2 to your computer and use it in GitHub Desktop.
(define (div-interval x y)
(let ((low (lower-bound y))
(high (upper-bound y)))
(if (or (= low 0) (= high 0))
(display "error")
(mul-interval x (make-interval (/ 1.0 high) (/ 1.0 low))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment