

InterviewSolution
Saved Bookmarks
1. |
Find a cubic polynomial whose zeroes are 2, -3 and 4. |
Answer» General form of a cubic polynomial whose zeroes are a, b and c is: x3 – (a + b + c) x2 + (ab + bc + ca)x – abc …(1) To Find: Cubic polynomial whose zeroes are 2, -3 and 4 Let us say, a = 2, b = – 3 and c = 4 Putting the values of a, b and c in the equation (1) we get: = x3 – (2 – 3 + 4) x2 + (-6 – 12 + 8) x – (- 24) = x3 – 3x2 – 10x + 24 Which is required polynomial. |
|