

InterviewSolution
Saved Bookmarks
1. |
Find all the zeroes of the polynomial x4 − 8x3 + 19x2 − 12x + 2,if two of its zeroes are 2 + √2 and 2 - √2. |
Answer» since two zeroes of the given polynomial are 2 + √2 and 2 - √2 , the polynomial should have two factors (x-2-√2) and (x-2+√2) that means it has quadratic factor Now x4 − 8x3 + 19x2 − 12x + 2 = x4-4x3+2x2-4x3+16x2-8x +x2-4x+2 =x2( x2-4x+2) − 4x ( x2-4x+2)+ ( x2-4x+2) =( x2-4x+2)( x2-4x+1) Hence other quadratic factor should be= (x4 − 8x3 + 19x2 − 12x + 20)/ ( x^2-4x+2) =( x2-4x+1) => (x-2)2-3=0 hence other two zeroes are 2 + √3 and 2 - √3 |
|