If the G.C.D of the polynomials x 3 − 3 x 2 + p x + 2 4 a n d x 2 − 7 x + q i s x − 2 T h e n t h e v a l u e o f ( p + q ) i s
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.
As Mr Alvaro has already mentioned, that x − 2 is the GCD of the two other polynomials implies that when each is divided by it the remainders must be zero.
Using the Python sympy library:
The remainder for the first polynomial is 2 p + 2 0 , that for the second q − 1 0 , implying values of -10 and 10 for p and q respectively.
Use the sum of the roots to find the second root of the quadratic equation. Multiply the roots to get q. Divide the cubic equation by x-2 and substitute the values of p that would leave a remainder of 0. It turns out p=-10 and q=10.
Problem Loading...
Note Loading...
Set Loading...
Since the G . C . D . of the polynomials is x − 2 , their remainders should be 0 .
Given that x − 2 is the G . C . D . , equating it to 0 , x = 2
Substitute x = 2 , first into x 3 - 3 x 2 + p x + 2 4 = 0 , where p = − 1 0 ,
then into x 2 - 7 x + q = 0 , where q = 1 0 .
Since we are looking for the value of p + q , - 1 0 + 1 0 = 0 , which is the answer .