Suppose $p$ is a discrete probability distribution over $d$ outcomes. I need to minimize the following
$$J=\frac{\|p\|_2^2}{\|p\|_\infty}$$
For $d=4$, Mathematica suggests the minimum is $\frac{2}{3}$ achieved at $\left(\frac{1}{2},\frac{1}{6},\frac{1}{6},\frac{1}{6}\right)$. Is there a formula for general $d$?
Notebook
Motivation
This provides the shape of quadratic $H$ for which a single step of gradient descent with $1/\|H\|$ step size makes the least progress. Hence it gives a bound on progress of gradient descent in general.
We need to find the minimum of the function $${x_1^2+x_2^2+\dots +x_d^2\over \max x_k},\quad x_1+x_2+\dots +x_d=1,\quad x_k\ge 0$$ We may assume $x_d\ge x_k$ for $k<d.$ Then the function takes the form $$f(x_1,x_2,\dots,x_d)={x_1^2+x_2^2+\dots +x_d^2\over x_d}$$ We apply the Lagrange multiplier method to get the system of equations $$\begin{eqnarray*}{2x_k\over x_d}&= &\lambda , \quad 1\le k\le d-1\\x_d-{x_1^2+\dots +x_{d-1}^2\over x_d^2}& =& \lambda \end{eqnarray*}$$ Thus $$x_1=x_2=\dots =x_{d-1}$$ Denote $x_d={t\over d}.$ Then $x_k={d-t\over (d-1)d}.$ The problem reduces to minimizing the one variable function $$h(t)={{(d-t)^2\over (d-1)d}+{t^2\over d}\over t},\quad 1\le t\le d$$ We have $$(d-1)d\,h(t)=dt+{d^2\over t}-2d$$ The minimal value $m$ is attained at $t=\sqrt{d},$ i.e. $x_d={1\over \sqrt{d}},$ and $m={2\over\sqrt{d}+1}.$