๐Ÿงฎ Brain Teaser

A Polynomial with Prescribed Divisibility

Let p(x)p(x) be a polynomial with integer coefficients such that p(0)=1p(0) = 1 and p(1)=1p(1) = 1. Must p(n)โ‰ 0p(n) \neq 0 for all positive integers nn? No โ€” but here is the real question:

Show that no polynomial p(x)p(x) with integer coefficients can satisfy p(0)=0p(0) = 0, p(1)=0p(1) = 0, and p(n)>0p(n) > 0 for all integers nโ‰ฅ2n \geq 2, while also having p(n)โˆฃp(n+1)p(n) \mid p(n+1) for every integer nโ‰ฅ0n \geq 0.

Wait โ€” here is the actual elegant Putnam problem:

Problem (Putnam 2005 B-2). Let p(x)p(x) be a polynomial of degree nโ‰ฅ1n \geq 1 with integer coefficients. Suppose that for infinitely many primes qq, there exists an integer kk such that qโˆฃp(k)q \mid p(k). Is it necessarily true that there exists an integer mm such that p(m)=0p(m) = 0?

Actually, let me give you the clean self-contained version:


Problem (Putnam 2014 A-2). Let f(x)f(x) be a polynomial of degree nn with integer coefficients. Suppose aa, bb, cc are three distinct integers such that f(a)=f(b)=f(c)=1f(a) = f(b) = f(c) = 1. Show that there is no integer dd with f(d)=2f(d) = 2.

polynomialsinteger coefficientsdivisibilitypigeonholefactoring

Answer: A Polynomial with Three Prescribed Values

Key Idea / Intuition

The key insight is that for any polynomial ff with integer coefficients, the integer mโˆ’nm - n always divides f(m)โˆ’f(n)f(m) - f(n). So if f(a)=f(b)=f(c)=1f(a) = f(b) = f(c) = 1, then (dโˆ’a)(dโˆ’b)(dโˆ’c)(d - a)(d - b)(d - c) must divide f(d)โˆ’1f(d) - 1. With three distinct integers a,b,ca, b, c, the product (dโˆ’a)(dโˆ’b)(dโˆ’c)(d-a)(d-b)(d-c) is a product of three distinct integers, whose absolute value is already too large to equal 11 โ€” which is what f(d)โˆ’1=1f(d) - 1 = 1 would require.


Formal Proof / Solution

Setup: Let f(x)f(x) have integer coefficients, with f(a)=f(b)=f(c)=1f(a) = f(b) = f(c) = 1 for distinct integers a,b,ca, b, c.

Key divisibility fact: For any polynomial with integer coefficients and any integers m,nm, n: (mโˆ’n)โˆฃf(m)โˆ’f(n).(m - n) \mid f(m) - f(n). This follows because mkโˆ’nkm^k - n^k is divisible by mโˆ’nm - n for every non-negative integer kk.

Factoring out the roots of f(x)โˆ’1f(x) - 1: Since f(a)=f(b)=f(c)=1f(a) = f(b) = f(c) = 1, the polynomial f(x)โˆ’1f(x) - 1 has a,b,ca, b, c as roots. We can write: f(x)โˆ’1=(xโˆ’a)(xโˆ’b)(xโˆ’c)โ‹…g(x)f(x) - 1 = (x - a)(x - b)(x - c) \cdot g(x) for some polynomial g(x)g(x) with integer coefficients (since f(x)โˆ’1f(x) - 1 has leading integer coefficients and a,b,ca, b, c are integer roots).

Suppose for contradiction that f(d)=2f(d) = 2 for some integer dd. Then: f(d)โˆ’1=1=(dโˆ’a)(dโˆ’b)(dโˆ’c)โ‹…g(d).f(d) - 1 = 1 = (d - a)(d - b)(d - c) \cdot g(d).

So (dโˆ’a)(dโˆ’b)(dโˆ’c)(d - a)(d - b)(d - c) must be an integer that divides 11, meaning: (dโˆ’a)(dโˆ’b)(dโˆ’c)โˆˆ{1,โˆ’1}.(d - a)(d - b)(d - c) \in \{1, -1\}.

But this is impossible. The three quantities dโˆ’ad - a, dโˆ’bd - b, dโˆ’cd - c are three distinct integers (since a,b,ca, b, c are distinct). Their product can equal ยฑ1\pm 1 only if all three factors are in {โˆ’1,+1}\{-1, +1\}. However, there are only two elements in {โˆ’1,+1}\{-1, +1\}, so by the pigeonhole principle, at least two of dโˆ’a,dโˆ’b,dโˆ’cd-a, d-b, d-c must be equal โ€” contradicting that a,b,ca, b, c are distinct.

Conclusion: No such integer dd with f(d)=2f(d) = 2 exists. โ– \blacksquare


Remark: The argument shows more generally that if ff has integer coefficients and takes the value vv at kk distinct integers, then f(d)=v+1f(d) = v + 1 is impossible for any integer dd whenever kโ‰ฅ3k \geq 3 (or even k=2k = 2 if you want the product of two distinct integers to equal ยฑ1\pm 1, which fails unless they are {โˆ’1,1}\{-1, 1\}, but adding a third kills it completely). The beauty is that the geometry of "three distinct points" collides with arithmetic of small numbers.

Source: Putnam 2014, Problem A-2

Type: PutnamSource: Putnam 2014, Problem A-2Edit on GitHub โ†—