

InterviewSolution
Saved Bookmarks
1. |
Find the zeroes of the given polynomial,p(x) = x4 – 16 |
Answer» Given p(x) = x4 – 16 is a biquadratic polynomial. It has almost two zeroes. Let p(x) = 0 ⇒ x4 – 16 = 0 ⇒ (x2)2 – 42 = 0 ⇒ (x2 – 4) (x2 + 4) = 0 ⇒ (x + 2) (x – 2) (x2 + 4) = 0 ⇒ (x + 2) = 0 or (x – 2) = 0 or (x2 + 4) = 0 ⇒ x = -2 (or) x = 2 (or) x2 = -4 Therefore the zeroes of the polynomial are 2, – 2, we do not consider √-4 since it is not real. |
|