Exercise 1.32. a. Show that sum and product (exercise 1.31) are both special cases of a still more general notion called accumulate that combines a collection of terms, using some general accumulation function:

(accumulate combiner null-value term a next b)

Accumulate takes as arguments the same term and range specifications as sum and product, together with a combiner procedure (of two arguments) that specifies how the current term is to be combined with the accumulation of the preceding terms and a null-value that specifies what base value to use when the terms run out. Write accumulate and show how sum and product can both be defined as simple calls to accumulate.

A)

(define (accumulate combiner null-value term a next b)
  (if (> a b)
      null-value
      (combiner 
       (term a) 
       (accumulate combiner null-value term (next a) next b))))
 
 
(define (sum term a next b)
  (accumulate + 0 term a next b))
 
(define (product term a next b)
  (accumulate * 1 term a next b))
 

B)

(define (accumulate combiner null-value term a next b)
  (define (iter a result)
    (if (> a b)
	result
	(iter (next a) (combiner (term a) result))))
  (iter a null-value))
 
exercise_1.32.txt · Last modified: 2009/03/02 01:06 by mariorz
 
Except where otherwise noted, content on this wiki is licensed under the following license:CC Attribution-Noncommercial-Share Alike 3.0 Unported
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki