1

I am reading the paper "A Semidefinite Optimization Approach to Quadratic Fractional Optimization with a Strictly Constraints" by Maziar Salahi & Saeed Fallahi.

I this paper, they tried to prove that if the Slater condition holds for the primal SDP problem: \begin{equation*} \begin{aligned} \min_{X} \mathrm{tr}(C^\top X)\\ \text{s.t.}~\mathrm{tr}(A^\top X) = 1\\ \mathrm{tr}(B^\top X) \preceq 0 \\ X \succeq 0 \end{aligned} \end{equation*} as well as its dual problem: \begin{equation*} \begin{aligned} \max_{\lambda,\eta} \eta\\ \text{s.t.}~C^\top -\eta A^\top + \lambda B^\top = Z\\ \lambda\geq 0 \\ Z \succeq 0 \end{aligned} \end{equation*} then both problems attain their optimal values and the duality gap is zero.

Because trace is a linear function, in order to show the strong duality, I know one has to show the Slater condition holds for the primal problem.

My Question is: why should I also have to show the Slater condition holds for the dual problem?

1 Answers1

2

If either the primal or the dual satisfies Slater's condition, strong duality holds. However, the problem for which Slater's condition holds can still be unbounded, so you cannot conclude that "both problems attain their optimal values". To show that the primal problem is bounded you could give a feasible point for the dual or vice versa. That is not the only way. Instead, you can conclude that the primal is bounded if $C$ is positive semidefinite.

LinAlg
  • 19,822
  • Thank you very much for your replying, I was wondering, "If either the primal or the dual satisfies Slater's condition, strong duality holds." is only correct for LP problem? Because in most text books, they only require primal problem satisfies Slater's condition. – Stephen Ge Feb 05 '21 at 04:02
  • 1
    @StephenGe it is correct for any convex problem. If the primal problem is closed, it is the dual of the dual problem, so you could apply the text book argument problem to the dual, by treating it as the primal. – LinAlg Feb 05 '21 at 14:39
  • Thank you again, LinAlg! I was wondering, is there any recommended text books or websites about how to prove this "dual of dual is primal" statement? – Stephen Ge Feb 06 '21 at 15:33
  • @StephenGe I quickly checked, and surprisingly most textbooks only show it for specific problems. You could check out this answer though. – LinAlg Feb 06 '21 at 17:17