In two dimension picture a unit circle. While the distance of the radius is constantly one, the Manhattan distance of the radius at zero degrees is equal to 1 while the Manhattan distance at 45 degrees is $\frac{\sqrt{2}}{2}+\frac{\sqrt{2}}{2}\approx1.41$. Thus for a circle the difference between the minimum and maximum Manhattan distance is about 0.41. I am curious how this difference changes for higher dimensions. I know the minimum Manhattan distance will remain one, however, I am stumped how to find the maximum even for the sphere...I feel like it should just be a simple calculus exercise. I would appreciate any helping in setting up the solution for the sphere, and even better a general solution for a hypersphere!
I'm guessing that the difference continues to increase with dimension but asymptotically approaches some limit. Happy New Years!
Do you know minimisation of multi-variable functions over given sets?
Your problem is essentially asking to maximise and minimise $f(x) = \sum_j x_j$ (the Manhattan distance, $x_j$ are the components of the vector $x$) on the set $$ M := \{x\in\mathbb{R}^n : x_j\geq 0 \text{ for all $j$ and } ||x||=1\} $$ It is enough to consider $M$ instead of the entire hypersphere by, well, spherical symmetry (pun intended).
This can happen either on the boundary (where, in this case, you will have the minimum) of the set or wherever $\nabla f(x) = \left(\frac{\partial f(x)}{\partial x_1},\ldots,\frac{\partial f(x)}{\partial x_n}\right)$ is orthogonal to $M$. Since $M$ is part of a sphere, this is equivalent to $$\nabla f(x) = \lambda x$$ for some $\lambda\in\mathbb{R}$ (why?). This you can transform to a system of linear equations which you can solve. Do you think you can take it from here?