Given $C$ is a $n \times n$ positive semidefinite matrix, how can one solve for $n \times 1$ vector $x$ to maximize the sum of absolute value of all components of $x$, given $x^TCx\leqq 1$?
I was looking for analytical solution without much success.One upper bound I found is $\sqrt{n/\lambda_{min}(C)}$, where $\lambda_{min}(C)$ is the minimum eigenvalue of $C$, is this the best upper bound? Even for numerical solution, it seems this cannot be done by convex optimization...
$$\max\|x\|_1$$ for $$x^TCx\leqq 1$$
As nominally stated, this is a concave programming problem, i.e., the minimization of a concave function ($-\|x\|_1$) subject to convex constraints.
However, this can be solved with a mixed-integer convex optimizer by introducing binary variables to handle the non-convex objective. The optimization modeling system YALMIP under MATLAB can do this for you, if you have a suitable solver installed, such as gurobi, cplex, mosek, or scip (i.e., having mixed-integer convex quadratically-constrained or second-order cone problem capability).
If $C$ is positive definite, the constraint set is compact, and therefore, there will be a globally optimal solution at an extreme of the constraint set, which in this case means $x'Cx = 1$.