0

enter image description here

So I was looking at other posts related to this, and most of them contained polynomials divided by a function with multiple roots. In my question, I only have $g(x) = (x-2)$, assuming $f(x) = x^{3} - 2x + 4 $. So I set it up as such:

$$f(x) = q(x)(x-2) + l(x)$$

where $l(x) = (ax+b)$

And now if I plug in $x=2$ I get $f(x) = 2a+b$ but I'm not sure where to go from here because I only have 1 unknown, and can't solve for $a$ or $b$...

Stuy
  • 1,149

2 Answers2

1

The remainder is a constant polynomial $k$. And if$$x^3-2x+4=(x^2+ax+b)(x-2)+k,$$then, putting $x=2$, this becomes $8=0+k$. Therefore, the remainder is the constant polynomial $8$.

1

Division $\:\!\Rightarrow\:\! f(x) = q(x)(x\!-\!2) + r(x),\ \bbox[5px,border:1px solid red] {\deg r < \deg(x\!-\!2) = 1}\,$ $\,\Rightarrow\,r(x) = r\,$ is constant

Hence: $\,\ \ r = f(2) = f(x)\bmod (x\!-\!2)\,$ follows by evaluating above at $\, x=2$.

Generally: $\,\ f(a) = f(x)\bmod (x\!-\!a),\, $ the ubiquitous Polynomial Remainder Theorem.

Alternatively we can use modular arithmetic for the proof:

$\!\bmod x\!-\!a\!:\,\ x\equiv a\,\Rightarrow\,f(x)\equiv f(a)\ $ by the Polynomial Congruence Rule

Bill Dubuque
  • 272,048