Problem: An Impossible Integer Polynomial
Problem Statement
Prove that there is no polynomial with integer coefficients satisfying both
Metadata
| Field | Details | |---|---| | Field | Putnam / Algebra / Number Theory | | Tags | Polynomials, Integer coefficients, Divisibility, Modular arithmetic | | Difficulty | 2 / 5 | | Date | 2026-04-24 |
Why It's Interesting
This problem looks like it should be impossible to rule out โ there are infinitely many polynomials, and the two conditions seem easy to satisfy independently. The proof hinges on a single elegant lemma about integer polynomials that is surprising the first time you see it, and immediately becomes a tool you want to use everywhere.
Key Idea / Hint
For any polynomial with integer coefficients and any two integers :
Can you prove this lemma? And then what does it say about our specific values?
Answer
See answer.md
Answer: An Impossible Integer Polynomial
A Natural but Failed Attempt
Write with .
The attempt: Factor out from the non-constant terms:
So we need integers satisfying:
Subtracting: . The attempt was to show this linear Diophantine equation has no integer solution.
Why it fails: By Bezout's lemma, has integer solutions if and only if . Since , it divides every integer โ so solutions always exist. In fact, gives . The equation is perfectly satisfiable.
The deeper issue: Even if you continued to constrain โ from and you get and , and by CRT (since ) there is always an integer satisfying both. So the approach of constraining alone can never produce a contradiction.
What goes wrong structurally: The quantities and are not independent integers. They both depend on the same coefficients : So fixing doesn't mean you can freely choose coefficients โ and are correlated through . The approach discards this coupling and loses all the information.
The correct approach instead looks at directly, without decomposing by .
This actaully gave me an interesting thought: when you are trying to solve a problem like this, you tend to reduce it (not in the theory of computation sense), but the direction is important. Which information you chose to lose is important.
For example this attempt chose to lose the inner connection between and , and reduced the problem to "show the linear Diophantine equation has no integer solution". That is clearly the wrong direction.
Intuition First
Integer-coefficient polynomials are "rigid" with respect to integer inputs. If you know and for two integers , their difference cannot be arbitrary โ it is always divisible by . This is because each monomial already has this property (since is divisible by ), and the whole polynomial inherits it by linearity.
So knowing and forces . But , and . Done.
Key Lemma
Lemma: For any polynomial with integer coefficients and any integers :
Proof: It suffices to prove it for monomials , since is a linear combination (with integer coefficients) of terms .
The factorization shows for all integers and .
Proof of the Main Result
Suppose for contradiction that such a exists. By the lemma with , :
This is a contradiction. Therefore no such polynomial exists.
Why This Matters
The lemma is a fundamental and reusable fact. It immediately gives:
- Integer root test: if for integer , then for any integer , i.e., every integer root of divides the constant term (when leading coeff is 1).
- Mod constraints: if is required, you know must be divisible by โ or the values themselves must conspire to cancel mod .
The one-line proof is a perfect example of a Putnam technique: find a single invariant (here, divisibility) that rules out the entire family of candidates at once.