A polynomial from $ \mathbb{C}[x]$ divided by $ x - 1$, $x + 1$, $ x -2$ has the remainders 2, 6 and 3. Find the remainder of the division of that polynomial by $(x-1)(x+1)(x-2)$
The degree of the expression $(x-1)(x+1)(x-2)$ is 3, so the degree of the polynomial that I am looking for is 4. So the polynomial should be of the form: $ax^4 + bx^3 +cx^2 + dx + e$. I have tried to use Horner's scheme and I got the following expressions: $a+b+c+d+e=2$, $a+c-b-d+e=6$ and $16a+8b+4c+2d+c=3$. But this is not enough in order to find the polynomial. Is this the right approach?
$$\begin{align} \text{remainder} &= 2\frac{(x+1)(x-2)}{(1+1)(1-2)} + 6\frac{(x-1)(x-2)}{(-1-1)(-1-2)} + 3\frac{(x-1)(x+1)}{(2-1)(2+1)}\ &= -(x+1)(x-2) + (x-1)(x-2) + (x-1)(x+1)\ &= x^2 - 2x + 3 \end{align} $$
– achille hui Jan 13 '15 at 19:17