

InterviewSolution
Saved Bookmarks
1. |
Using the Remainder Theorem find the remainders obtained when xy + (kx + 8)x + k is divided by x + 1 and x – 2. Hence, find k if the sum of the two remainders is 1. |
Answer» Given polynomial is p(x) = x3 +(kx + 8)x + k g(x) = x + 1 ∴ R1 = P(-1) = (-1)3 + {k{-1} + 8} (-1) + k = -1 + k – 8 + k = 2k – 9 h(x) = x – 2 ∴ R2 = P(2) = (2)3 + (2k + 8)2 + k = 8 + 4k + 16 + k 5k + 24 Now, R1 + R2 = 1 ⇒ 2k – 9 + 5k + 24 = 1 ⇒ 7k = 1 + 9 – 24 ⇒ 7k = – 14 ⇒ k = – 2 |
|