Convex Optimization

Table of Contents

A mathematical optimization problem can be expressed as

minf0(x)subject tofi(x)bi,i=1,,m

where

Optimal solution x has the smallest value of f0 among all vectors that satisfy the constraints.

In fact, a general optimization problem is very difficult to solve. Its solution cannot always be found. Even though it can, it suffers some compromise, e.g. very long computation time.

Fortunately, following three problems can be efficiently and reliably solved.

Least squares (LS)

minAxb22
  • Analytical solution x=(ATA)1ATb
  • Easy to recognize
  • A mature solution with reliable and efficient algorithms and softwares
  • Computation time proportional to n2k (ARk×n)

Linear programming (LP)

mincTxsubject toaiTxbi,i=1,,m
  • No analytical solution
  • Not as easy to recognize as LS problems
  • A mature solution with reliable and efficient algorithms and softwares
  • Computation time proportional to n2m

Convex optimization

minf0(x)subject tofi(x)bi,i=1,,m

where

  • Objective and constraint functions are convex, i.e. α,β0, α+β=1, fi(αx+βy)αfi(x)+βfi(y), i=0,,m.
  • LS and LP are included as special cases.

Generally, for convex optimization problems,

  • No analytical solution
  • Often difficult to recognize
  • Almost a technology with reliable and efficient algorithms
  • Computation time roughly proportional to max{n3,n2m,F}, where F is cost of evaluating fi 's and their first and second derivatives.