An unknown polynomial yields a remainder of 2 upon division by , and a remainder of 1 upon division by . If this polynomial is divided by , then the remainder is.
Details and assumptions :
You have to write only the constant if, your answer is then you have to write only 1.
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Our polynomial, let's call it f(x), can essentially be written as such:
f ( x ) = g ( x ) ( x − 1 ) ( x − 2 ) + r e m a i n d e r
g(x) is just our quotient when we divide the polynomial by (x-1)(x-2). Now, our remainder has to be of a smaller degree than (x-1)(x-2), so it has to be of degree 1 or 0. It cannot, however, be of degree 0, as a remainder of degree 0 would return the same remainder when we divide it by both (x-1) and (x-2), which does not occur. Therefore, we can write our remainder in the form ax+b. Now, all we need to do is rely on the remainder theorem and plug in our values for x.
When divided by x-1, the remainder is 2, so
a ( 1 ) + b = a + b = 2
When divided by x-2, the remainder is 1, so
a ( 2 ) + b = 2 a + b = 1
Solving for a and b yields a = -1 and b = 3. This makes our remainder -x + 3