An [i]-city[/i] is an grid of positive integers such that every entry greater than 1 is
the sum of an entry in the same row and an entry in the same column. Shown below is an
example -city.
(a) Construct a -city that includes some entry that is at least . (It is acceptable simply to write the -city. You do not need to explain how you found it.)
(b) Show that for all , the largest entry in an -city is at most .
Problem 1668
Official solution
### Part (a)
Construct a -city that includes some entry that is at least :
### Part (b)
LEMMA: The largest element in an -city is at most , where denotes the -th term of the Fibonacci sequence defined by , , and for all integers .
PROOF:
1. Existence of 1 in Each Row:
- Note that in each row of a city, there exists at least one element that is equal to . By the well-ordering principle, this row of the city has a least term. Assume for the sake of contradiction that it is not equal to . If so, then it must be equal to the sum of another element in the row and a positive integer, meaning it must be greater than another element in the row, which contradicts the fact that it is the least term. Therefore, in each row of a city, there exists at least one element that is equal to , meaning that in an -city, there exist at least terms equal to .
2. Numbering Elements:
- Number the elements in order from greatest to least. Let denote the element of the -city that is numbered with . Note the largest element is equal to , and elements through will all be equal to , as they are the smallest terms and there exist at least terms equal to .
3. Best-Case Scenario:
- Note that in a best-case scenario, each element is the sum of the two largest elements less than or equal to itself. This means that . Working downwards in this manner, we will eventually reach a string of elements equal to whose sum is equal to . The number of s in this string is equal to the maximum value of in this best-case scenario.
4. Final String Composition:
- Note that each element equal to in this final string is either equal to or . The two are both achievable, as and . However, could only be achieved by adding the two next-smallest elements together; however, since both of these must be equal to , they will not show up in the final string. This final string then consists exclusively of multiple instances of the elements and .
5. **Sequence Function :**
- Define to be the number of sequences with first term and last term such that the -th term of the sequence minus the -th term of the sequence is equal to either or for all integers . I claim that the number of terms equal to in the final string is at most .
6. Counting Terms:
- Note that the total number of instances of is equal to . Each instance of will produce one instance of and one instance of . However, each instance of will also directly add a new instance of (as turns into , only the is added to the count). Therefore, the number of terms equal to in the final string is equal to .
7. Fibonacci Sequence:
- Note that and . In addition, (as the second-to-last term in any such sequence from to can be , yielding sequences, or , yielding sequences). Therefore, , the -th Fibonacci number. The number of terms equal to in our final string, and therefore our largest term , is therefore at most , as desired.
8. **Bounding with :**
- Now, to prove that our largest term is at most , it remains sufficient to show that for all positive integers . This is clearly true when as and , so it remains sufficient to demonstrate this for all positive integers . Note this can be proven by proving that for all positive integers and then letting for all possible values of . Binet's Formula states that the -th Fibonacci number is equal to . Letting and substituting this in gives us .
9. Simplifying the Inequality:
- Note that is always even, so . We then have . Since , it is sufficient to show that for all positive integers .
10. **Substituting :**
- We substitute in for and multiply both sides by , which simplifies our inequality to . Note that , so the right-hand side is equal to .
11. Final Simplification:
- Our inequality has now been simplified to . Note that , further reducing this inequality to . Dividing both sides by gives us . Note that this can be directly computed and shown to be true when . Additionally, . Higher values of will then be equivalent to repeatedly multiplying a value between and by a value between and , which will only further decrease the value of the LHS while keeping the RHS constant. Therefore, our inequality holds true for all , thus proving that the largest element in an -city can never be greater than for all integer .
The final answer is