Suppose f is a polynomial with integer coefficients, such that for all positive integers n the n -th Fibonacci number u n divides f ( u n + 1 ) . Find the smallest possible positive value of f ( 4 ) .
Details and assumptions
The Fibonacci numbers are defined as follows:
u 1 = 1 , u 2 = 1 ; u n = u n − 1 + u n − 2 for all n ≥ 3 .
0 is not a positive number.
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.
Lemma 1: u n − 1 u n + 1 = u n 2 + ( − 1 ) n for all integers n > 1 .
Proof: Proceed by induction. As the base case, let n = 2 , so that u n − 1 u n + 1 = u 1 u 3 = 1 ⋅ 2 = 2 = 1 2 + ( − 1 ) 2 = u 2 2 + ( − 1 ) 2 = u n 2 + ( − 1 ) n .
Assume for the inductive step that u n − 1 u n + 1 = u n 2 + ( − 1 ) n . Then u n u n + 2 = u n ( u n + 1 + u n ) = u n u n + 1 + u n 2 = u n u n + 1 + u n − 1 u n + 1 − ( − 1 ) n = u n + 1 ( u n + u n − 1 ) + ( − 1 ) n + 1 = u n + 1 2 + ( − 1 ) n + 1 . ■
Lemma 2: u n − 1 and u n + 1 are relatively prime.
Proof: Suppose that a natural number divides u n − 1 and u n + 1 . Then it divides u n + 1 − u n − 1 = u n , and as a consequence of the recursion divides all Fibonacci numbers including u 1 = 1 . ■
We know that u n ∣ f ( u n + 1 ) for all n, so f ( u n − 1 ) ≡ f ( u n + u n − 1 ) = f ( u n + 1 ) ≡ 0 m o d u n thus u n ∣ f ( u n − 1 ) for all n, so u n − 1 ∣ f ( u n ) and u n + 1 ∣ f ( u n ) therefore u n − 1 u n + 1 ∣ f ( u n ) by Lemma 2. and u n 2 + 1 ∣ f ( u n ) for even n u n 2 − 1 ∣ f ( u n ) for odd n by Lemma 1. If we divide f ( x ) by x 2 + 1 , we get a remainder r ( x ) of degree at most 1. Then 0 ≡ f ( u n ) ≡ r ( u n ) m o d u n 2 + 1 for even n, but u n 2 + 1 is quadratic in u n and therefore outgrows r ( u n ) which is linear at most. Thus, r ( x ) = 0 and so x 2 + 1 divides f ( x ) . Similarly, x 2 − 1 divides f ( x ) . Hence, 4 2 + 1 = 1 7 and 4 2 − 1 = 1 5 divide f ( 4 ) , so 2 5 5 ∣ f ( 4 ) . The least positive multiple of 2 5 5 is 2 5 5 , which is achieved by letting f ( x ) = x 4 − 1 .
Problem Loading...
Note Loading...
Set Loading...
Let f ( x ) = k = 0 ∑ n a k x k . From definition, we have f ( u n + 1 ) ≡ 0 ( m o d u n ) ⟹ f ( u n + u n − 1 ) ≡ 0 ( m o d u n ) ⟹ k = 0 ∑ n a k ( u n + u n − 1 ) k ≡ 0 ( m o d u n ) ⟹ k = 0 ∑ n a k ( m = 0 ∑ k ( m k ) ( u n ) m ( u n − 1 ) k − m ) ≡ 0 ( m o d u n ) Where the last step follows from the binomial expansion of each of the terms. Since we are considering the expression modulo u n , we can ignore all terms which contain a positive power of u n . In general, from the expansion of ( u n + u n − 1 ) k , the only term that gets selected is ( 0 k ) u n − 1 = u n − 1 . Continuing, k = 0 ∑ n a k ( u n − 1 ) k ≡ 0 ( m o d u n ) Notice that this is simply f ( u n − 1 ) , so f ( u n − 1 ) ≡ 0 ( m o d u n ) . Substituting n + 1 in place of n , we find out that u n + 1 ∣ f ( u n ) .
Now, if n is even, g cd ( n + 1 , n − 1 ) = 1 , so g cd ( u n + 1 , u n − 1 ) = u g cd ( n + 1 , n − 1 ) = u 1 = 1 If n is odd, g cd ( n + 1 , n − 1 ) = 2 , so g cd ( u n + 1 , u n − 1 ) = u g cd ( n + 1 , n − 1 ) = u 2 = 1 Either way u n + 1 and u n − 1 are always coprime. Since both of them divide f ( u n ) , it immediately follows that u n + 1 u n − 1 ∣ f ( u n ) .
It is known that for all n ∈ N , u n + 1 u n − 1 = ( u n ) 2 + ( − 1 ) n . The proof is trivial by induction.
We then conclude that ( u n ) 2 + ( − 1 ) n ∣ f ( u n ) . If n is even, ( u n ) 2 + 1 ∣ f ( u n ) . If n is odd, ( u n ) 2 − 1 ∣ f ( u n ) .
We claim that x 2 + 1 ∣ f ( x ) . To prove this, we note that when f ( x ) is divided by x 2 + 1 , we shall get a polynomial P ( x ) which is either linear or constant. If it is constant, it must be 0 , which immediately follows by plugging x = u n for any even n . If it is linear, note that P ( u n ) ≡ 0 ( m o d ( ( u n ) 2 + 1 ) ) for all even n . However, since P ( u n ) is a linear and ( u n ) 2 + 1 is a quadratic in u n , for some sufficiently large n , ( u n ) 2 + 1 > P ( u n ) , a contradiction.
Similarly, we find out x 2 − 1 ∣ f ( x ) . Noting that g cd ( x 2 + 1 , x 2 − 1 ) = 1 , we combine them into x 4 − 1 ∣ f ( x ) . The value of f ( x ) which returns the smallest possible positive integer value of x is given by x 4 − 1 . Our desired answer is 4 4 − 1 = 2 5 5 .
A few clarifications
We used the identity g cd ( u a , u b ) = u g cd ( a , b ) ∀ ( a , b ) ∈ N 2 when we showed that u n + 1 and u n − 1 are always coprime. The proof can be found here .
In order to make the proof short, I skipped the proof of the identity u n + 1 u n − 1 = ( u n ) 2 + ( − 1 ) n . This can be proved by induction. For the case case, we note that u 3 u 1 = 2 × 1 = ( u 2 ) 2 + ( − 1 ) 2 , so our proposition is true for n = 2 . Assume it is true for n = k , so that u k + 1 u k − 1 = ( u k ) 2 + ( − 1 ) k . Then, note that u k u k + 2 = u k ( u k + u k + 1 ) = ( u k ) 2 + u k u k + 1 = u k + 1 u k + 1 + u k u k + 1 − ( − 1 ) n = u k + 1 ( u k + u k + 1 ) + ( − 1 ) k + 1 = u k + 1 u k + 3 + ( − 1 ) k + 1 This completes our induction step, and hence our assumption is true for all n ∈ N
Here's why we can choose a n such that ( u n ) 2 + 1 is greater than P ( x ) for all linear polynomials P ( x ) . Let P ( x ) = m x + c . We can simply solve the inequality x 2 + 1 > m x + c ⟹ x > 2 1 ( 4 c + m 2 − 4 + m ) We can simply choose any n such that u n exceeds this value. In general, any higher degree polynomial with positive coefficients grows faster than any lower degree polynomial with positive coefficients.