Evan is a $n$-dimensional being that lives in a house formed by the points of $\mathbb{Z}_{\geq 0}^n$. His room is the set of points in which coordinates are all less than or equal to $2021$. Evan's room has been infested with bees, so he decides to flush them out through $\textit{captures}$. A $\textit{capture}$ can be performed by eliminating a bee from point $ (a_1, a_2, \ldots, a_n) $ and replacing it with $ n $ bees, one in each of the points: $$ (a_1 + 1, a_2 , \ldots, a_n), (a_1, a_2 + 1, \ldots, a_n), \ldots, (a_1, a_2, \ldots, a_n + 1) $$However, two bees can never occupy the same point in the house. Determine, for every $ n $, the greatest value $ A (n) $ of bees such that, for some initial arrangement of these bees in Evan's room, he is able to accomplish his goal with a finite amount of $\textit{captures}$.
Problem
Source: Olympic Revenge 2021 #2
Tags: combinatorics, Process
12.11.2021 17:53
Give weight $1/n^S$ to the point $(a_1, a_2, ..., a_n)$, where $\Sigma a_i = S$. It is easy to see that the total weight of the points with bees is invariant under "captures". The total weight of all the points in Evan's room is $(\frac{n^{2022}-1}{(n-1)(n^{2021})})^n$, and the total weight of the points in the whole plane is $(\frac{n}{n-1})^n=(\frac{n^{2022}}{(n-1)(n^{2021})})^n$, thus the total weight of the points outside Evan's room is the difference of the two. Then, just find the largest number of bees you can accommodate in Evan's room, and do this by taking the smallest weights first (near the "vertex" of the n-dimensional house). I'm lazy to do the calculation, do this yourself.
12.11.2021 19:33
I also thought of that, but this only gives you a upper bound. How do you garantee it to work? For example, consider also the fact that if the bees all lie on $\mathbb{Z}_{>0}^n$ (not $\mathbb{Z}_{\geq 0}^n$) they can never reach a point with a zero coordinate, and so you can't achieve the entire sum of numbers associated to the points outside.
13.11.2021 01:42