Is the following function is convex. Consider the following function
$$ f(X)=\langle X,D\rangle-c \cdot \sqrt{\langle X,E\rangle}$$ where $X,D,E$ are all semi-definite matrices. Is this function convex?
Is the following function is convex. Consider the following function
$$ f(X)=\langle X,D\rangle-c \cdot \sqrt{\langle X,E\rangle}$$ where $X,D,E$ are all semi-definite matrices. Is this function convex?
The function $X \mapsto \langle X,D \rangle$ is linear, hence convex. Same for $X \mapsto \langle X,E \rangle$.
The function $t \mapsto -c \sqrt{t}$ is convex for $t \ge 0$, hence $f$ is convex.
You asked @copper.hat above about the minimum. Without the semidefinite constraint, the function is likely unbounded below except for certain combinations of $D$ and $E$ (e.g, $D=\alpha E$ for some $\alpha>0$; see my answer to your other question).
With the semidefinite constraint, it is unlikely there is an analytic solution. You'll need a semidefinite programming framework to determine the constrained minimum. If you use my CVX framework, for instance, this is your model:
n = size(D,1);
cvx_begin
variable X(n,n) semidefinite
minimize( trace(X'*D)-c*sqrt(trace(X'*E)) )
cvx_end
Internally, CVX will convert this to a semidefinite program and pass it to a compatible solver.
EDIT: I take that back, I do believe you can determine the solution analytically, but it's not easy, and there still is not a closed-forum solution. This will certainly be quicker for you.