
William W. answered 03/14/19
Experienced Tutor and Retired Engineer
It's a bit tedious but he's how:
1) write the generic 3rd order polynomial as ax3 + bx2 + cx + d
2) multiply out (x - 1)2 to be x2 - 2x +1 and divide it into the above using long division. You'll get a remainder that says: (3a + 2b + c)x + (-2a - b + d) but since the remainder is given in the problem as (x - 2) you set the x coefficient "(3a + 2b + c)" equal to the x coefficient of the given remainder (1) and you have the first linear equation. 3a + 2b + c = 1. Do the same with the constant term, -2a - b + d = -2
3) Divide x2 - 2x into ax3 + bx2 + cx + d to get the other two linear equations, 4a + 2b + c = 2 and d = 2.
4) stick these into your calculator to solve them simultaneously (or solve by hand) to get a = 1, b = 2, c = -6, and d = 2
5) Plug these in to get the cubic polynomial: x3 + 2x2 - 6x + 2