Problem:
Is it possible to place a positive integer in every cell of a array in such a way that both the following conditions are satisfied?
- Each number (not in the top row) is a proper divisor of the number immediately below.
- Each row consists of 10 consecutive positive integers (but not necessarily in order).
Solution
Solution:
Answer: Yes. In fact it is even possible to achieve such an array where each row consists of ten consecutive positive integers in increasing order. We shall construct an example explicitly.
Initially let the top row be in this order. Then iteratively if the contents of a particular row are
then construct the next row to be
So the completed array will look like this:
| 1 | 2 | 3 | ... | 10 |
|---|---|---|---|---|
| ... | ||||
| : | : | : | : | : |
| ... | ||||
| ... | ||||
| : | : | : | : | : |
To prove that this construction works, we simply need to verify that is always a multiple of for each . We prove this by combining these two trivial divisibilities:
Thus this construction satisfies the required conditions.
Want a route through all this instead of an archive? The track
puts 2,000 problems in a working order, from AMC 10 level to the IMO shortlist.