

InterviewSolution
Saved Bookmarks
1. |
Check whether – 2 and 2 are the zeroes of the polynomial x4 – 16. |
Answer» Given polynomial is x4 – 16 Let p(x) = x4 – 16 We have p(-2) = (-2)4 – 16 = 16 – 16 = 0 and p(2) = (2)4 – 16 = 16 – 16 = 0 p(-2) = 0 and p(2) = 0. So these are zeroes of the polynomial. |
|