

InterviewSolution
Saved Bookmarks
1. |
Find the zeroes of the quadratic polynomial: 2x2 - 5x + 2. |
Answer» Equating the expression with 0, 2x2 - 5x + 2 = 0 On factorising it further, 2x2 - 4x- x + 2 = 0 2x(x - 2) -1(x - 2) = 0 (2x - 1) (x - 2) = 0 x = 1/2 or x = 2 The zeroes of 2x2 - 5x + 2 are 1/2 and 2. |
|