Question: ;; ;; Write a function (polynomial coefs) that accepts a list of coefficients, ;; but instead of evaluating the polynomial immediately it returns a unary
;; ;; Write a function (polynomial coefs) that accepts a list of coefficients, ;; but instead of evaluating the polynomial immediately it returns a unary ;; function p(x) that can be used to evaluate the polynomial ;; ;; You may not use your solutiomn from before. ;; Your solution should recursively use `polynomial`. ;;;;;;;;; (define (polynomial coefs) ) ;;;;;;;;;;;;; ;; Tests (define (println s) (begin (display s) (newline))) (println ((polynomial `()) 5) ; Expext 0 ) (println ((polynomial `(10 3 -4 2)) 5) ; Expect 175 ) (println ((polynomial `(10)) 3) ; Expect 10 )
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
