11.2 Linear Optimization

API for MATLAB accepts linear optimization problems of the form

(11.8)minimizecTx+cfsubject toAx=b,blxbu,

where

  • m is the number of constraints.

  • n is the number of decision variables.

  • xRn is a vector of decision variables.

  • cRn is the linear part of the objective function.

  • cfR is a constant term in the objective

  • ARm×n is the constraint matrix.

  • bRm is the activity of linear constraints.

  • blRn is the lower bound for the variables.

  • buRn is the upper bound for the variables.

Lower and upper variable 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 (11.8). If (11.8) has at least one primal feasible solution, then (11.8) is said to be (primal) feasible. In case (11.8) does not have a feasible solution, the problem is said to be (primal) infeasible

11.2.1 Duality for Linear Optimization

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

(11.9)maximizebTy+blTslxbuTsux+cfsubject toATy+slxsux=c,slx,sux0.

where

  • y are the dual variables for constraints,

  • slx are the dual variables for lower bounds of variables,

  • sux 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:

(bl)j=(slx)j=0 and (bl)j(slx)j=0.

A solution

(y,slx,sux)

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

A solution

(x,y,(slx),(sux))

is denoted a primal-dual feasible solution, if (x) is a solution to the primal problem (11.8) and (y,(slx),(sux)) is a solution to the corresponding dual problem (11.9).

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

(11.10)cTx+cf{bTy+blT(slx)buT(sux)+cf}=(ATy+(slx)(sux))TxbTyblT(slx)+buT(sux)=(y)T(Axb)+((slx))T(xbl)+((sux))T(bux)0

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

yi(Axb)i=0,i=0,,m1,(slx)j(xj(bl)j)=0,j=0,,n1,(sux)j((bu)jxj)=0,j=0,,n1,

are satisfied.

If (11.8) 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.

11.2.2 Infeasibility for Linear Optimization

11.2.2.1 Primal Infeasible Problems

If the problem (11.8) 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

(11.12)maximizebTy+blTslxbuTsuxsubject toATy+slxsux=0,slx,sux0,

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

(y,(slx),(sux))

to (11.12) so that

bTy+blT(slx)buT(sux)>0.

Such a solution implies that (11.12) is unbounded, and that (11.8) is infeasible.

11.2.2.2 Dual Infeasible Problems

If the problem (11.9) 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

(11.13)minimizecTxsubject toAx=0,b^lxb^u,

where

(^bl)j:={0if (bl)j>,otherwise,}and(^bu)j:={0if (bu)j<,otherwise,}

such that

cTx<0.

Such a solution implies that (11.13) is unbounded, and that (11.9) is infeasible.

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

11.2.3 Minimalization vs. Maximalization

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

maximizecTx+cfsubject toAx=b,blxbu,

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

minimizebTy+blTslxbuTsux+cfsubject toATy+slxsux=c,slx,sux0.

This means that the duality gap, defined in (11.10) 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

(11.14)ATy+slxsux=0,slx,sux0,

such that the objective value is strictly negative

bTy+blT(slx)buT(sux)<0.

Similarly, the certificate of dual infeasibility is an x satisfying the requirements of (11.13) such that cTx>0.