The question is a more broad approach, but as a concrete example, if I have a point represented by the vector v on a d-dimensional unit sphere, how would I find the elements of the vector v that would maximize the L1 norm of v?
So for a 2 dimensional circle, if I have a point (x,y) on the circle, we know that $x^{2} + y^{2} = 1$, how would I find at which point $x + y$ is maximized.
I’ve gone about it backwards, where if we theorize that when x = y, x + y is maximized, then the rate at which x is decreased by will be more than how much y gains therefore since the equation is convex, that’s the maximum.
Is there a prettier and/or more intuitive way to go about this?
Note that if $v$ maximises the one norm on the unit sphere then so do any of $(\pm v_1,...,\pm v_d)$, so we can assume that $v_k \ge 0$ for all $k$. Hence we can see that $v$ solves the problem $\max_{\|x\|_2 \le 1} \sum_k x_k $ which can be solved using Lagrange multipliers to get $v_1=\cdots = v_d = {1 \over \sqrt{d}}$. Hence the maximisers are $(\pm \sqrt{d}, ..., \pm \sqrt{d})$.