Let $n$ positive integer. Find the minimum value of expression:
$$ E=max(\frac {x_1} {1+x_1},\frac {x_2} {1+x_1+x_2}, ... , \frac {x_n} {1+x_1+..+x_n})$$
where $x_1,x_2, .. , x_n$ are real not negative so that $x_1+x_2+ .. +x_n=1$
My try
For $x_1=1, x_2=0, ...x_n=0$ one gets $E=\frac 1 2$ so $Min \le \frac 1 2$
For $x_1=x_2= ... =x_n=\frac 1 n$ one gets $E=\frac 1 {n+1}$ so $Min \le \frac 1 {n+1}$ (much better)
I suspect the minimum is $\frac 1 {n+1}$ but I cannot prove it (or disprove it).
Update
The minimum cannot be $\frac 1 {n+1}$ because for $n=2, Min=1-\frac{1}{\sqrt2} \lt \frac 1 3$, as @almagest pointed out in a comment.