

InterviewSolution
Saved Bookmarks
1. |
Find the zeroes of the given polynomial,p(x) = (x + 2) (x + 3) |
Answer» Given p(x) = (x + 2) (x + 3) It is a quadratic polynomial. It has atmost two zeroes. Let p(x) = 0 ⇒ (x + 2) (x + 3) = 0 ⇒ (x + 2) = 0 or (x + 3) = 0 ⇒ x = -2 or x = -3 Therefore the zeroes of the polynomial are -2 and – 3. |
|