InterviewSolution
Saved Bookmarks
| 1. |
e 5: Verify whether 2 and 0 are zeroes of the polynomial x2 â 2x. |
|
Answer» To check whether 2 and 0 are zeroes of x² - 2x, substitute x = 2, 0 when x = 2 (2)² - 2(2) = 4 - 4 = 0 when x = 0 (0)² - 2(0) = 0 - 0 = 0 Therefore, 2 and 0 are zeroes of x² - 2x when we put both the values the answer is 0 so 2 and 0 are the zeroes of the given equation |
|