Question: There is a more efficient algorithm ( in terms of the number of multiplications and additions used ) for evaluating polynomials than the conventional algorithm.

There is a more efficient algorithm (in terms of the number of multiplications and additions used) for evaluating
polynomials than the conventional algorithm. It is called Horner's method. This pseudocode shows how to use this method
to find the value of anxn+an-1xn-1+cdots+a1x+a0 at x=c.
procedure Horner(c,a0,a1,dots,an : real numbers)
y:=an
for i:=1ton
,y:=y**c+an-i
return y{y=ancn+an-1cn-1+cdots+a1c+a0}
Exactly how many multiplications and additions are used to evaluate a polynomial of degree n at x=c?
Multiple Choice
2n multiplications and n additions
n multiplications and 2n additions
2n multiplications and 2n additions
n multiplications and n additions
 There is a more efficient algorithm (in terms of the number

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!