Name:
Anonymous
2012-12-18 13:06
Hey. I really want to get into programming but I don't know where to start. Where would you all suggest?
Name:
Anonymous
2012-12-18 14:15
Can anyone shed some light on square roots the newton method?
(define (sqrt-iter guess x)
(if (good-enough? guess x)
guess
(sqrt-iter (improve guess x)
x)))