次のコードのどこに欠陥がありますか?
(define (newtons-method2 f guess n)
(define (newton-transform f)
(lambda (x)
(- x (/ (f x) ((der f 0.5) x)))))
(let ((next (newton-transform guess)))
(if (= 0 n)
next
(newtons-method2 (f next (- n 1))))))
このメソッドは "newtons-method2" という名前になっています
私の微分関数は次のとおりです。
(define (der f h)
(lambda (x)
(/ (- (f(+ x h)) (f x))
h)))