This question comes from a master thesis's course I followed in Optimization. The problem is the following
Maximize/Minimize $ \sum\limits_{i=1}^n x_i^3$ subject to $\sum\limits_{i=1}^n x_i = 0$ and $\sum\limits_{i=1}^n x_i^2 =1 $.
Or, if we prefer \begin{align*} \min/\max f(\pmb x) &= \sum_{i=1}^n x_i^3 \\ \text{s.t.} \quad h_1(\pmb x) &= \sum_{i=1}^n x_i = 0 \\ h_2(\pmb x) &= \sum_{i=1}^n x_i^2 - 1 = 0 \end{align*}
My approach
Let $\Omega = \{\pmb x \in \mathbb R^n : h_1(\pmb x) = 0, h_2(\pmb x) = 0 \}$
- The interesting cases are for $n \ge 3$;
- $\Omega$ is compact;
- $\Omega$ is simmetric (i.e. for every $\pmb x \in \Omega$ we have that $-\pmb x \in \Omega$);
- $f$ is globally odd (i.e. $f(- \pmb x) = -f(\pmb x)$ for every $\pmb x \in \Omega$);
- If $\pmb x_{\text{max}}$ is a local maximum, then $-\pmb x_{\text{max}} $ is a local minimum; hence we can reduce to the minimization case.
I apply the KKT condition and with a lot of calculus I obtained
$$ f(\pmb x_\text{min}^*)= - \frac{n-2}{\sqrt{n^2-n}} $$
and the minimum is
$$ \pmb x_\text{min}= \left(\frac{1}{\sqrt{n^2-n}},\frac{1}{\sqrt{n^2-n}},\dots,\frac{1}{\sqrt{n^2-n}},- \sqrt{\frac{n-1}{n}} \right) $$ (and, of course, every permutation with this structure).
Assumed my solution is correct, the question is : is there another way to prove this solution with some clever algebraic trick?