I have the equation y = 3(x+1)^2 + 5(x+1)^4.

Using Horner's scheme I could evaluate this polynomial in this form, y = 8+x(26+x(33+x(20+5x))), thus requiring 8 arithmetic operations.

I could also evaluate it in this form, y = (x+1)^2 * ((5x+10)x+8), requiring 7 operations.

I've been told this can be done in 5 operations but Horner's algorithm is supposed to be most efficient and it can only do it in 7 operations. Am I missing something?

link|improve this question

50% accept rate
3  
Who said that Horner's is supposed to be the most efficient in all cases? It's a useful general technique, not a panacea. – David Thornley Sep 13 '10 at 21:54
Thanks for the note. – Planeman Sep 13 '10 at 22:04
feedback

2 Answers

up vote 6 down vote accepted

Let a = (x+1)^2, that's 2 ops. Then y=3a + 5a^2 = a(3+5a), 3 more ops for a total of 5.

link|improve this answer
Thank you. I'm surprised I didn't think of calculating the common (x+1) and then plugging in and factoring. – Planeman Sep 13 '10 at 22:04
feedback

3(x+1)^2 + 5(x+1)^4 = (x+1)^2[3 + 5(x+1)^2].

I can do that in 5 operations:

1) x+1
2) (x+1)^2
3) 5(x+1)^2
4) 5(x+1)^2 + 3
5) (x+1)^2[5(x+1)^2 + 3]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.