Find the point $(x,y)$ that minimizes
$$f(x,y) = \sum_{i=1}^{n} \sqrt{(x-x_{i})^{2}+(y-y_{i})^{2}} $$
where $(x_i, y_i)$ are chosen symmetrically with respect to the origin. Take $n$ as an even number greater than or equal to $20$.
I think I can solve it through 'least squares method' but I want to know how to do it with $l_{1}$ approximation.
The function $\phi((x,y)) = f(x,y)$ is convex and $\phi(-(x,y)) = \phi((x,y))$, so $\phi((0,0)) \le {1 \over 2} (\phi(-(x,y)) + \phi((x,y))) = \phi((x,y))$.
In particular, $(0,0)$ is a solution.