vote up 2 vote down star

I've just started working through this book for fun; I wish it were homework, but I could never afford to attend MIT, and there are tons of people smarter than me anyway. :p

fast-exp is supposed to find b^n, i.e. 4^2 = 16, 3^3 = 27

(define (fast-exp b n)
  (define (fast-exp-iter n-prime a)
    (cond ((= n-prime 1) a)
          ((= (remainder n-prime 2) 1) (fast-exp-iter (- n-prime 1) (* a b)))
          (else (fast-exp-iter (/ n-prime 2) (* a b b)))))
  (fast-exp-iter n 1))

fast-exp 4 2; Expected 16, Actual 2
flag

Style notes...I'm guessing you're used to C syntax. You'll want to bunch up the closing brackets, it'll look nicer that way. You can also use square brackets in Scheme, so your cond could look like (cond [(= n-prime 1) a] ...) – omouse Oct 31 at 17:16
I have taken the liberty to fix the indentation and parentheses. – Svante Oct 31 at 18:35
@omouse cool thanks for the tip! – Dave Nov 1 at 3:54

1 Answer

vote up 5 vote down check

You forgot to call fast-exp. Instead, you evaluated three separate atoms. To actually evaluate the fast-exp of 4 to the 2, you'd have to write

(fast-exp 4 2)
link|flag
hah! Many thanks – Dave Oct 29 at 13:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.