; Ex 1.7(define (good-enough-2? guess prev-guess) (< (abs (- guess prev-guess)) 0.0001))
(define sqrt-iter-2 (lambda (guess x) (define next-guess (improve guess x)) (if (good-enough-2? next-guess guess) next-guess (sqrt-iter-2 next-guess x))))
This entry was posted on Monday, January 25th, 2010 at 11:45 pm and is filed under Programming, Scheme. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Fill in your details below or click an icon to log in:
You are commenting using your WordPress.com account. ( Log Out / Change )
You are commenting using your Twitter account. ( Log Out / Change )
You are commenting using your Facebook account. ( Log Out / Change )
Connecting to %s
Notify me of follow-up comments via email.
Get every new post delivered to your Inbox.