Let be a polynomial with rational coefficients such that when is divided by the polynomial , the remainder is , and when is divided by the polynomial , the remainder is . There is a unique polynomial of least degree with these two properties. What is the sum of the squares of the coefficients of that polynomial?
- A)
- B)
- C)
- D)
- E)
Answer
E
Key insight
Write P = (x²+1)(ax+b) + 2x+1, reduce modulo x²+x+1 with x³ = 1, and match to x+2: a = 1, b = 2.
Solution
cannot have degree , since then both remainders would equal itself, but .
The second condition says . Try the smallest .
If is constant, . Modulo we may replace by : . The constant term can never match the required , so no quadratic works.
Let :
Modulo use and :
Matching with : gives , then gives .
So , and the sum of the squares of its coefficients is .
The answer is .
Why this works
A remainder condition is a congruence: . Parametrize all such with an unknown quotient, then impose the second congruence by reducing powers of with the relation the modulus provides (, hence ). Two linear equations in the quotient's coefficients fall out. This is the polynomial version of the Chinese Remainder Theorem, and the least degree is generically.
Alternative approach
Reduce modulo each divisor directly. Mod (, ): . Mod (): . Solving the four equations gives .
The trap
Trying a quadratic P first and not recognizing the contradiction, or expanding P and forgetting the constant term 3 when summing squares.
Common mistakes
- Trying a quadratic P first and not recognizing the contradiction, or expanding P and forgetting the constant term 3 when summing squares.
- Mis-reducing modulo (it equals , not ), which flips signs and leads to a non-integer or wrong .
Techniques
Set up the equation/formula and compute; no special trick needed · Substitute to simplify (u = x+1/x, shifting, scaling)