I need a procedure that returns the value of a cubic polynomial, ie :
f(x) = x3 + ax2 + bx + c
I should be able to do this with a procedure that takes three arguments and Newton-Raphson's method but I am at a loss on how.
(define f (cubic a b c) ...)
How can I do this?