12.1 Linear Optimization

MOSEK accepts linear optimization problems of the form

(12.1)\[\begin{split}\begin{array}{lccccl} \mbox{minimize} & & & c^T x+c^f & & \\ \mbox{subject to} & l^c & \leq & A x & \leq & u^c, \\ & l^x & \leq & x & \leq & u^x, \end{array}\end{split}\]

where

  • \(m\) is the number of constraints.

  • \(n\) is the number of decision variables.

  • \(x \in \real^n\) is a vector of decision variables.

  • \(c \in \real^n\) is the linear part of the objective function.

  • \(c^f\in \real\) is a constant term in the objective

  • \(A \in \real^{m \times n}\) is the constraint matrix.

  • \(l^c \in \real^m\) is the lower limit on the activity for the constraints.

  • \(u^c \in \real^m\) is the upper limit on the activity for the constraints.

  • \(l^x \in \real^n\) is the lower limit on the activity for the variables.

  • \(u^x \in \real^n\) is the upper limit on the activity for the variables.

Lower and upper bounds can be infinite, or in other words the corresponding bound may be omitted.

A primal solution \((x)\) is (primal) feasible if it satisfies all constraints in (12.1). If (12.1) has at least one primal feasible solution, then (12.1) is said to be (primal) feasible. In case (12.1) does not have a feasible solution, the problem is said to be (primal) infeasible

12.1.1 Duality for Linear Optimization

Corresponding to the primal problem (12.1), there is a dual problem

(12.2)\[\begin{split}\begin{array} {lc} \begin{array} {l} \mbox{maximize} \end{array} & (l^c)^T s_l^c - (u^c)^T s_u^c + (l^x)^T s_l^x - (u^x)^T s_u^x + c^f\\ \begin{array} l \mbox{subject to} \end{array} & \begin{array} {ccccc} A^T y + s_l^x - s_u^x & = & c, & &\\ -y + s_l^c - s_u^c & = & 0, & & \\ s_l^c,s_u^c,s_l^x,s_u^x & \geq & 0, & & \end{array} \end{array}\end{split}\]

where

  • \(s_l^c\) are the dual variables for lower bounds of constraints,

  • \(s_u^c\) are the dual variables for upper bounds of constraints,

  • \(s_l^x\) are the dual variables for lower bounds of variables,

  • \(s_u^x\) are the dual variables for upper bounds of variables.

If a bound in the primal problem is plus or minus infinity, the corresponding dual variable is fixed at 0, and we use the convention that the product of the bound value and the corresponding dual variable is 0. This is equivalent to removing the corresponding dual variable from the dual problem. For example:

\[l_j^x = -\infty \quad \Rightarrow \quad (s_l^x)_j=0 \mbox{ and } l_j^x\cdot (s_l^x)_j = 0.\]

A solution

\[(y,s_l^c,s_u^c,s_l^x,s_u^x)\]

to the dual problem is feasible if it satisfies all the constraints in (12.2). If (12.2) has at least one feasible solution, then (12.2) is (dual) feasible, otherwise the problem is (dual) infeasible.

A solution

\[(x^*,y^*,(s_l^c)^*,(s_u^c)^*,(s_l^x)^*,(s_u^x)^*)\]

is denoted a primal-dual feasible solution, if \((x^*)\) is a solution to the primal problem (12.1) and \((y^*,(s_l^c)^*,(s_u^c)^*,(s_l^x)^*,(s_u^x)^*)\) is a solution to the corresponding dual problem (12.2). We also define an auxiliary vector

\[(x^c)^* := Ax^*\]

containing the activities of linear constraints.

For a primal-dual feasible solution we define the duality gap as the difference between the primal and the dual objective value,

(12.3)\[\begin{split}\begin{array}{l} c^T x^* + c^f - \left\lbrace (l^c)^T (s_l^c)^* - (u^c)^T (s_u^c)^* + (l^x)^T (s_l^x)^* - (u^x)^T (s_u^x)^* + c^f \right\rbrace\\ = \sum_{i=0}^{m-1} \left[ (s_l^c)_i^* ( (x_i^c)^*-l_i^c) + (s_u^c)_i^* (u_i^c-(x_i^c)^*) \right] \\ + \sum_{j=0}^{n-1} \left[ (s_l^x)_j^* (x_j-l_j^x) +(s_u^x)_j^* (u_j^x-x_j^*) \right] \geq 0 \end{array}\end{split}\]

where the first relation can be obtained by transposing and multiplying the dual constraints (12.2) by \(x^*\) and \((x^c)^*\) respectively, and the second relation comes from the fact that each term in each sum is nonnegative. It follows that the primal objective will always be greater than or equal to the dual objective.

It is well-known that a linear optimization problem has an optimal solution if and only if there exist feasible primal-dual solution so that the duality gap is zero, or, equivalently, that the complementarity conditions

\[\begin{split}\begin{array}{rcll} (s_l^c)_i^* ((x_i^c)^*-l_i^c ) & = & 0, & i=0,\ldots ,m-1, \\ (s_u^c)_i^* (u_i^c-(x_i^c)^*) & = & 0, & i=0,\ldots ,m-1, \\ (s_l^x)_j^* (x_j^*-l_j^x ) & = & 0, & j=0,\ldots ,n-1, \\ (s_u^x)_j^* (u_j^x-x_j^* ) & = & 0, & j=0,\ldots ,n-1, \end{array}\end{split}\]

are satisfied.

If (12.1) has an optimal solution and MOSEK solves the problem successfully, both the primal and dual solution are reported, including a status indicating the exact state of the solution.

12.1.2 Infeasibility for Linear Optimization

12.1.2.1 Primal Infeasible Problems

If the problem (12.1) is infeasible (has no feasible solution), MOSEK will report a certificate of primal infeasibility: The dual solution reported is the certificate of infeasibility, and the primal solution is undefined.

A certificate of primal infeasibility is a feasible solution to the modified dual problem

(12.5)\[\begin{split}\begin{array}{lc} \mbox{maximize} & (l^c)^T s_l^c - (u^c)^T s_u^c + (l^x)^T s_l^x - (u^x)^T s_u^x\\ \mbox{subject to} & \\ & A^T y + s_l^x - s_u^x = 0, \\ & -y + s_l^c - s_u^c = 0, \\ & s_l^c,s_u^c,s_l^x,s_u^x \geq 0, \end{array}\end{split}\]

such that the objective value is strictly positive, i.e. a solution

\[(y^*,(s_l^c)^*,(s_u^c)^*,(s_l^x)^*,(s_u^x)^*)\]

to (12.5) so that

\[(l^c)^T (s_l^c)^* - (u^c)^T (s_u^c)^* + (l^x)^T (s_l^x)^* - (u^x)^T (s_u^x)^* > 0.\]

Such a solution implies that (12.5) is unbounded, and that (12.1) is infeasible.

12.1.2.2 Dual Infeasible Problems

If the problem (12.2) is infeasible (has no feasible solution), MOSEK will report a certificate of dual infeasibility: The primal solution reported is the certificate of infeasibility, and the dual solution is undefined.

A certificate of dual infeasibility is a feasible solution to the modified primal problem

(12.6)\[\begin{split}\begin{array} {lccccl} \mbox{minimize} & & & c^T x & & \\ \mbox{subject to} & \hat l^c & \leq & A x & \leq & \hat u^c, \\ & \hat l^x & \leq & x & \leq & \hat u^x, \end{array}\end{split}\]

where

\[\begin{split}\hat l_i^c = \left\lbrace \begin{array} {ll} 0 & \mbox{if } l_i^c > -\infty , \\ -\infty & \mbox{otherwise}, \end{array} \right\rbrace \quad \mbox{and}\quad \hat u_i^c := \left\lbrace \begin{array}{ll} 0 & \mbox{if } u_i^c < \infty , \\ \infty & \mbox{otherwise}, \end{array} \right\rbrace\end{split}\]

and

\[\begin{split}\hat l_j^x = \left\lbrace \begin{array} {ll} 0 & \mbox{if } l_j^x > -\infty , \\ -\infty & \mbox{otherwise}, \end{array} \right\rbrace \quad \mbox{and}\quad \hat u_j^x := \left\lbrace \begin{array}{ll} 0 & \mbox{if } u_j^x < \infty , \\ \infty & \mbox{otherwise}, \end{array} \right\rbrace\end{split}\]

such that

\[c^T x<0.\]

Such a solution implies that (12.6) is unbounded, and that (12.2) is infeasible.

In case that both the primal problem (12.1) and the dual problem (12.2) are infeasible, MOSEK will report only one of the two possible certificates — which one is not defined (MOSEK returns the first certificate found).

12.1.3 Minimalization vs. Maximalization

When the objective sense of problem (12.1) is maximization, i.e.

\[\begin{split}\begin{array} {lccccl} \mbox{maximize} & & & c^T x+c^f & & \\ \mbox{subject to} & l^c & \leq & A x & \leq & u^c, \\ & l^x & \leq & x & \leq & u^x, \end{array}\end{split}\]

the objective sense of the dual problem changes to minimization, and the domain of all dual variables changes sign in comparison to (12.2). The dual problem thus takes the form

\[\begin{split}\begin{array}{lc} \mbox{minimize} & (l^c)^T s_l^c - (u^c)^T s_u^c + (l^x)^T s_l^x - (u^x)^T s_u^x + c^f\\ \mbox{subject to} & \\ & A^T y + s_l^x - s_u^x = c,\\ & -y + s_l^c - s_u^c = 0, \\ & s_l^c,s_u^c,s_l^x,s_u^x \leq 0. \end{array}\end{split}\]

This means that the duality gap, defined in (12.3) as the primal minus the dual objective value, becomes nonpositive. It follows that the dual objective will always be greater than or equal to the primal objective. The primal infeasibility certificate will be reported by MOSEK as a solution to the system

(12.7)\[\begin{split}\begin{array}{lc} & A^T y + s_l^x - s_u^x = 0, \\ & -y + s_l^c - s_u^c = 0, \\ & s_l^c,s_u^c,s_l^x,s_u^x \leq 0, \end{array}\end{split}\]

such that the objective value is strictly negative

\[(l^c)^T (s_l^c)^* - (u^c)^T (s_u^c)^* + (l^x)^T (s_l^x)^* - (u^x)^T (s_u^x)^* < 0.\]

Similarly, the certificate of dual infeasibility is an \(x\) satisfying the requirements of (12.6) such that \(c^Tx>0\).