Let me explain my deal. We can split any positive number into addends, and then we can take those addends and use them now as factors. The product will be maximum if all addends were equal.
E.g., the number 10 can be split apart as 9 + 1, or 8 + 2... Many ways. However, if we split it as 5 + 5, the product (5 * 5 = 25) will be the greatest of all possible products.
I am very grateful to the person who finally explained it to me in case of just two addends.
Suppose we have a number a (it's a parameter, or a "known unknown"). We can split it into two addends in multiple ways. Let's denote the first addend as x. Then, the second addend would be a – x. After that, we take our two addends and use them as factors. So the resulting function will be as follows:
y = x * (a – x) = ax – x².
We now take the first derivative:
y' = (ax – x²)' = a – 2x.
Now, a – 2x must equal zero.
a – 2x = 0;
a = 2x;
x = a/2 — we got the first addend. The second addend will equal a – a/2 = a/2. Thus, they are equal to each other.
[In fact, afterwards we should take the second derivative as well, in order to make sure that we found the point of maximum rather than minimum.
y'' = (ax – x²)'' = (a – 2x)' = –2.
The second derivative is a negative constant. Hence, x = a/2 is indeed the point of maximum.]
However, the problem is that I got the proof for two addends. But what if they are more? (Three, four, and so on.)
I am afraid we may obtain a function of two or more variables. Deriving such functions was never pleasurable for me. I am certainly not good at it...
So is there maybe a simpler way to prove it?