

InterviewSolution
Saved Bookmarks
1. |
Find the zeroes of the polynomial: `6x^2-7x-3` |
Answer» `f(x) = 6x^2-7x-3` To find zeroes, we will make `f(x) = 0` `:. 6x^2-7x-3 = 0` `=>6x^2-9x+2x-3 = 0` `=>3x(2x-3)+1(2x-3) = 0` `=>(2x-3)(3x+1) = 0` `=> x = 3/2 and x = -1/3` `:. 3/2 and -1/3` are the zeroes of the given poynomial. |
|