[Math] Maximization of a log det function

convex optimizationoptimization

I want to solve the following optimization problem

$$
\text{maximize } f(X) = – \log \mathrm{det}(X+Y) – a^T (X+Y)^{-1} a \\
\text{subject to } X \succeq W,
$$
where the design variable $X$ is symmetric positive semidefinite, $W, Y$ are fixed symmetric positive semidefinite matrices, and $a$ is a given vector. The inequality $X \succeq W$ means that $X-W$ is symmetric positive semidefinite.

I was wondering if there's hope to find an analytical solution to either the constrained or unconstrained problem. And if there is none, could I use convex optimization techniques to solve this numerically?

Best Answer

Make the substitution $Z = (X+Y)^{-1} \Leftrightarrow X = Z^{-1} - Y$, then the problem becomes convex:

$$\text{maximize } \log \mathrm{det}(Z) - a^T Z a \\ \text{subject to } 0 \prec Z \preceq (Y+W)^{-1} $$

Related Question