InterviewSolution
Saved Bookmarks
| 1. |
find theZero of the the polynomial if any-x²-2x+3 |
| Answer» - (x^2 + 2x - 3) = 0. (S = 2, P = -3, No :- 3, -1).x^2 + 3x - x - 3 = 0. x (x + 3) - (x + 3) = 0.(x - 1) (x + 3) = 0.x = 1 or -3// | |