Code Review

Compare your solutions

    #| BEGIN (Write your solution here) |#
(define dx 0.00001)

(define (smooth f)
  (lambda (x)
    (/ (+ (f (- x dx))
          (f x)
          (f (+ x dx)))
       3)))
#| END |#