Considering a mysterious polynomial that returns 2 as a remainder upon division with x − 1 and 1 as a remainder upon division with x − 2 , find out the remainder ( r ) obtained if this polynomial is divided by ( x − 1 ) ( x − 2 ) and then calculate r ( 3 ) as a function of x
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.
Let p ( x ) be the mysterious polynomial.
Now, knowing that p ( x ) returns 1 & 2 when divided by x − 2 and x − 1 respectively, we can write p ( x ) as :
p ( x ) ≡ 2 m o d ( x − 1 ) a n d p ( x ) ≡ 1 m o d ( x − 2 )
Now, we assume that d e g ( p ) ≥ 2 (Indeed, as a side note, p ( x ) = 3 − x DOES solve the required properties up to now), in order to make the division by ( x − 1 ) ( x − 2 ) sensible.
Hence, we may write p ( x ) as : p ( x ) = q ( x ) ( x − 1 ) ( x − 2 ) + r ( x ) , where q ( x ) , r ( x ) ∈ R [ x ] and d e g ( r ) ≤ 1 .
Hence, write r ( x ) = a x + b for some a , b ∈ R Now, since p ( 1 ) = 2 a n d p ( 2 ) = 1 , we see that we require :
r ( 2 ) = 1 a n d r ( 1 ) = 2
Solving for a and b , we get : r ( x ) = 3 − x Hence : r ( 3 ) = 0
From the given, P ( x ) can be expressed as:
P ( x ) = ( x − 1 ) ( x − 2 ) Q ( x ) + R ( x )
x − 1 = 0 → x = 1 , a n d x − 2 = 0 → x = 2
P ( 1 ) = R ( 1 ) = 2 , a n d P ( 2 ) = R ( 2 ) = 1
Since the divisor ( x − 1 ) ( x − 2 ) has a degree 2 , R ( x ) should be at most degree 1 .
So, R ( x ) = A x + B
From R ( 1 ) = 2 , a n d R ( 2 ) = 1 ,
R ( 1 ) = ( 1 ) A + B = A + B = 2
R ( 2 ) = ( 2 ) A + B = 2 A + B = 1
Solving for A and B,
A = − 1 , B = 3
Therefore, the remainder R ( x ) is:
R ( x ) = − x + 3
Solving for R ( 3 ) ,
R ( 3 ) = − ( 3 ) + 3 = 0
the trick is to figure out the reminder needs to be one degree less of the divisor
Problem Loading...
Note Loading...
Set Loading...
Since when the polynomial p ( x ) gives remainders 2 and 1 when it is divided by x − 1 and x − 2 respectively. We can assume p ( x ) is of the form:
p ( x ) = q ( x ) ( x − 1 ) ( x − 2 ) − x + 3
⇒ r ( x ) = − ( x − 3 ) ⇒ r ( 3 ) = − ( 3 − 3 ) = 0