练习1.40
首先根据公式x^3+ax^2+bx+c写出相应的cubic过程,它的返回值是一个接受参数x的过程:
(define (cubic a b c)
(lambda (x)
(+ (cube x)
(* a (square x))
(* b x)
c)))
(newtons-method (cubic 3 21) 1.0)
;Value: -2.3247179572447267
时间: 2024-11-20 05:29:59
练习1.40
首先根据公式x^3+ax^2+bx+c写出相应的cubic过程,它的返回值是一个接受参数x的过程:
(define (cubic a b c)
(lambda (x)
(+ (cube x)
(* a (square x))
(* b x)
c)))
(newtons-method (cubic 3 21) 1.0)
;Value: -2.3247179572447267