Let be a permutation of . Among all possible permutations, find the minimum of
Solution
Let be a permutation of . We aim to find the minimum of
We claim that the minimum is achieved when for all . In this configuration, the terms will be structured as follows:
- For from to , .
- For , .
In the sequence , which ranges from to , each odd number up to the upper bound appears twice, and each even number up to the upper bound appears once.
To show that this is indeed the minimum, note that each odd number can appear at most twice (once as an and once as ), and each even number can appear only once (as an ). Therefore, the minimum is achieved by greedily taking all the smaller numbers, i.e., two 1s, one 2, two 3s, and so on, which aligns with the described configuration.
Thus, the minimum value of the sum is:
The answer is: \boxed{\sum_{i=1}^n \min \{ n + 1 - i, 2i-1 \}}.