1.44 Exercise 1.44

TODO: Words

(define (smooth f)
  (lambda (x)
    (/
     (+ (f (- x dx))
        (f x)
        (f (+ x dx)))
     3)))
(define (n-smooth f times)
  (repeated smooth times))