Algorithmic problems on convex sets

From HandWiki

Many problems in mathematical programming can be formulated as problems on convex sets or convex bodies. Six kinds of problems are particularly important:[1]:{{{1}}} optimization, violation, validity, separation, membership and emptiness. Each of these problems has a strong (exact) variant, and a weak (approximate) variant. In all problem descriptions, K denotes a compact and convex set in Rn.

Strong variants

The strong variants of the problems are:[1](p47)

  • Strong optimization problem (SOPT): given a vector c in Rn, find a vector y in K such that cTycTx for all x in K, or assert that K is empty.
  • Strong violation problem (SVIOL): given a vector c in Rn and a number t, decide whether cTxt for all x in K, or find y in K such that cTy > t.
  • Strong validity problem (SVAL): given a vector c in Rn and a number t, decide whether cTxt for all x in K.
  • Strong nonemptyness problem (SNEMPT): Decide whether K is empty, and if not, find a point in K.
  • Strong separation problem (SSEP): given a vector y in Rn, decide whether y in K, and if not, find a hyperplane that separates y from K, that is, find a vector c in Rn such that cTy > cTx for all x in K.
  • Strong membership problem (SMEM): given a vector y in Rn, decide whether y in K.

Closely related to the problems on convex sets is the following problem on a convex function f: RnR:

  • Strong unconstrained convex function minimization (SUCFM): find a vector y in Rn such that f(y) ≤ f(x) for all x in Rn .

Trivial implications

From the definitions, it is clear that algorithms for some of the problems can be used to solve other problems in oracle-polynomial time:

  • An algorithm for SOPT can solve SVIOL, by checking whether cTy > t;
  • An algorithm for SVIOL solves SVAL trivially.
  • An algorithm for SVIOL can solve SNEMPT, by taking c=0 and t=-1.
  • An algorithm for SSEP solves SMEM trivially.

Examples

The solvability of a problem crucially depends on the nature of K and the way K it is represented. For example:

  • If K is represented by a set of some m linear inequalities, then SSEP (and hence SMEM) is trivial: given a vector y in Rn, we simply check if it satisfies all inequalities, and if not, return a violated inequality as the separating hyperplane. SOPT can be solved using linear programming, but it is not so trivial.
  • If K is represented as the convex hull of some m points, then SOPT (and hence SVIOL, SVAL and SNEMPT) is easy to solve by evaluating the objective on all vertices. SMEM requires to check whether there is a vector that is a convex combination of the vertices, which requires linear programming. SSEP also requires a certificate in case there is no solution.
  • If K is represented as the epigraph of some computable convex function, then SMEM is trivial; if a subgradient can be computed, then SSEP is easy too.

Weak variants

Each of the above problems has a weak variant, in which the answer is given only approximately. To define the approximation, we define the following operations on convex sets:[1](p6)

  • S(K,ε) is the ball of radius ε around K, defined as {x in Rn : |x-y| ≤ ε for some y in K}. Informally, a point in S(K,ε) is either in K or "almost" in K.
  • S(K,) is the interior ε-ball of K, defined as {x in K : every y with |x-y| ≤ ε is in K}. Informally, a point in S(K,) "deep inside" K.

Using these notions, the weak variants are:[1](p50)

  • Weak optimization problem (WOPT): given a vector c in Qn and a rational ε>0, either -
    • find a vector y in S(K,ε) such that cTy + εcTx for all x in S(K,-ε), or -
    • assert that S(K,-ε) is empty.
  • Weak violation problem (WVIOL): given a vector c in Qn, a rational number t, and a rational ε>0, either -
    • assert that cTxt + ε for all x in S(K,-ε), or -
    • find a y in S(K,ε) such that cTy > t - ε.
  • Weak validity problem (WVAL): given a vector c in Qn, a rational number t, and a rational ε>0, either -
    • assert that cTxt+ε for all x in S(K,-ε), or -
    • assert that cTyt-ε for some y in S(K,ε).
  • Weak nonemptyness problem (WNEMPT): Given a rational ε>0, either -
    • assert that S(K,-ε) is empty, or -
    • find a point y in S(K,ε).
  • Weak separation problem (WSEP): given a vector y in Qn and a rational ε>0, either -
    • assert that y in S(K,ε), or -
    • find a vector c in Qn (with ||c||=1) such that cTy + ε > cTx for all x in S(K,-ε).
  • Weak membership problem (WMEM): given a vector y in Qn, and a rational ε>0, either -
    • assert that y in S(K,ε), or -
    • assert that y not in S(K,-ε).Closely related to the problems on convex sets is the following problem on a compact convex set K and a convex function f: RnR given by an approximate value oracle:
  • Weak constrained convex function minimization (WCCFM): given a rational ε>0, find a vector in S(K,ε) such that f(y) ≤ f(x) + ε for all x in S(K,-ε).

Trivial implications

Analogously to the strong variants, algorithms for some of the problems can be used to solve other problems in oracle-polynomial time:

  • An oracle for WOPT can solve WVIOL, by checking whether cTy + ε > t;
  • An oracle for WVIOL solves WVAL trivially.
  • An oracle for WVIOL can solve WNEMPT, by taking c=0 and t=-1.
  • An oracle for WSEP can be used to solve WMEM.

Implications of weak variants

Besides these trivial implications, there are highly non-trivial implications, whose proof relies on the ellipsoid method. Some of these implications require additional information about the convex body K. In particular, besides the number of dimensions n, the following information may be needed:[1](p53)

  • A circumscribed radius R, which is the radius of a ball centered at the origin that contains K. The tuple (K;n,R) is called a circumscribed convex set.
  • An inscribed radius r, which is the radius of a ball contained in K in case K is nonempty. This r also provides a lower bound on the volume of K. The tuple (K;n,R,r) is called a well-bounded convex set.
  • An interior point a0, which is a point such that a ball of radius r around a0 is contained in K. The tuple (K;n,R,r,a0) is called a centered convex set.

The following can be done in oracle-polynomial time:[1]:{{{1}}}

  • An oracle for WSEP, with a circumscribed radius R, can solve WVIOL. This algorithm uses the central-cut ellipsoid method. Another option is to use another method that uses simplices instead of ellipsoids.[2]
  • An oracle for WVIOL, with a circumscribed radius R, can solve WOPT using binary search.
  • An oracle for WSEP, with a circumscribed radius R, can solve WOPT. This follows by transitivity from the implications WSEP→WVIOL and WVIOL→WOPT, but there is also a direct algorithm WSEP→WOPT using the sliding objective function technique.[3]
  • An oracle for WMEM, with R and r and a0, can solve WVIOL. This was proved by Yudin and Nemirovskii in 1976,[4] using the shallow-cut ellipsoid method.
  • An oracle for WMEM, with R and r and a0, can solve WOPT. This follows by transitivity from the implications WMEM→WVIOL and WVIOL→WOPT.
  • An oracle for WMEM, with R and r and a0, can solve WSEP. This follows by transitivity from the implications WMEM→WVIOL and WVIOL→WSEP. Interestingly, both steps require the ellipsoid method, and no direct algorithm WMEM→WSEP is known.
  • An oracle for WOPT can solve WCCFM.[1](p56)
    • An approximate value oracle for a convex function can be used to construct a WMEM oracle. Combining this with the implications WMEM→WVIOL and WVIOL→WOPT and WOPT→WCCFM implies that WCCFM on a centered convex body (K;n,R,r,a0) given by a WMEM oracle can be solved in polynomial time.[1](p113)
  • An oracle for WOPT, with r, can be used to found r' and a0 such that S(a0,r') is contained in K.

The following implications use the polar set of K - defined as [math]\displaystyle{ K^* := \{ y\in \mathbb{R}^n : y^T x \leq 1 \text{ for all } x\in K \} }[/math]. Note that K**=K.

  • An oracle for WVAL on an 0-centered convex body (K; n,R,r,0) can solve WMEM on K*.
  • An oracle for WVIOL on an 0-centered convex body (K; n,R,r,0) can solve WSEP on K*.
  • An oracle for WOPT can solve WSEP without any further information. The proof uses polarity arguments.
  • An oracle for WVAL, with a circumscribed radius R, can solve WSEP. The proof uses polarity arguments.

Necessity of additional information

Some of the above implications provably do not work without the additional information.[1]:{{{1}}}

  • An oracle for WMEM or even for SMEM, with R and r but without a0, cannot solve WVIOL in polytime, even for n=1 and r=1 and c=1 and ε=1. Proof. Note that with the given parameters, what we know about K is that K is contained in the interval [-R,R], and contains some interval of length 2r=2. Suppose an SMEM oracle answers "no" to the first R membership queries; this is a valid sequence of answers, since by the pigeonhole principle, there is an interval of length 2 that does not contain any querired point. Therefore, any algorithm solving WOPT needs more than R queries, so it is exponential in the encoding length of R.
  • Similarly, an algorithm for WMEM, with R and r but without a0, cannot solve WOPT.
  • An oracle for WVAL, with r and a0 but without R, cannot solve WVIOL.
  • An oracle for WVIOL, with r and a0 but without R, cannot solve WOPT and cannot solve WMEM.
  • An oracle for WMEM, with r and a0 but without R, cannot solve WSEP.
  • An oracle for WSEP, with r and a0 but without R, cannot solve WVAL.
  • An oracle for WSEP with r cannot be used to derive a0, and hence cannot be used to solve WOPT.
  • An oracle for WVIOL with r cannot be used to derive a0, and hence cannot be used to solve WOPT.
  • An oracle for WSEP with R cannot be used to derive r.

Geometric problems on convex bodies

Using the above basic problems, one can solve several geometric problems related to convex bodies. In particular, one can find an approximate John ellipsoid in oracle-polynomial time:[1]:{{{1}}}

  • Given a well-bounded convex body (K; n, R, r) described by a WSEP oracle, one can find an ellipsoid E(A,a) such that [math]\displaystyle{ E\left(\frac{1}{n(n+1)^2}A, a\right) \subseteq K \subseteq E(A, a) }[/math]. The algorithm uses the shallow-cut ellipsoid method. Note that, by the Lowner-John theorem, there exists an ellipsoid satisfying a stronger relation [math]\displaystyle{ E\left(\frac{1}{n^2}A, a\right) \subseteq K \subseteq E(A, a) }[/math], but that theorem does not yield a polytime algorithm.
  • Given a well-bounded, centrally-symmetric convex body (K; n, R, r) described by a WSEP oracle, one can find an ellipsoid E(A,a) such that [math]\displaystyle{ E\left(\frac{1}{n(n+1)}A, a\right) \subseteq K \subseteq E(A, a) }[/math]. Note that a theorem by Jordan proves that there exists an ellipsoid satisfying a stronger relation [math]\displaystyle{ E\left(\frac{1}{n}A, a\right) \subseteq K \subseteq E(A, a) }[/math], but that theorem does not yield a polytime algorithm.
  • Given a well-bounded, convex body (K; n, R, r) given as the solution set of a system of linear inequalities, one can find an ellipsoid E(A,a) such that [math]\displaystyle{ E\left(\frac{1}{(n+1)^2}A, a\right) \subseteq K \subseteq E(A, a) }[/math].
  • Given a well-bounded, centrally-symmetric convex body (K; n, R, r) given as the solution set of a system of linear inequalities, one can find an ellipsoid E(A,0) such that [math]\displaystyle{ E\left(\frac{1}{n+1}A, 0\right) \subseteq K \subseteq E(A, 0) }[/math].

These results imply that it is possible to approximate any norm by an ellipsoidal norm. Specifically, suppose a norm N is given by a weak norm oracle: for every vector x in Qn and every rational ε>0, it returns a rational number r such that |N(x)-r|<ε. Suppose we also know a constant c1 that gives a lower bound on the ratio of N(x) to the Euclidean norm, [math]\displaystyle{ c_1 \| x \| \leq N(x) }[/math]Then we can compute in oracle-polynomial time a linear transformation T of Rn such that, for all x in Rn, [math]\displaystyle{ \| T x \| \leq N(x) \leq \sqrt{n(n+1)} \| T x \| }[/math].

It is also possible to approximate the diameter and the width of K:

  • Given a well-bounded convex body (K; n, R, r) described by a WSEP oracle, its diameter can be approximated by finding two points x,y in K, and a ball with radius R* containing K, such that [math]\displaystyle{ R^* \leq \frac{1}{2} \sqrt{n} \|x-y\| }[/math].
  • Given a well-bounded convex body (K; n, R, r) described by a WSEP oracle, its width can be approximated by finding two parallel hyperplanes cTx=d1 and cTx=d2 that lie on two sides of K, and a ball with radius r* contained in K, such that [math]\displaystyle{ r^*= \frac{d_2 - d_1}{2(n+1)\sqrt{n}\|c\|} }[/math]

Some problems not yet solved (as of 1993) are whether it is possible to compute in polytime the volume, the center of gravity or the surface area of a convex body given by a separation oracle.

From weak to strong oracles

In some cases, an oracle for a weak problem can be used to solve the corresponding strong problem.

An algorithm for WMEM, with R and r and a0, can solve the following slightly stronger membership problem: given a vector y in Qn, and a rational ε>0, either assert that y in S(K,ε), or assert that y not in K. The proof is elementary and uses a single call to the WMEM oracle.[1](p108)

Suppose now that K is a polyhedron. Then, many oracles to weak problems can be used to solve the corresponding strong problems in oracle-polynomial time. The reductions require an upper bound on the representation complexity (facet complexity or vertex complexity) of the polyhedron:[1]:{{{1}}}

  • An oracle for WNEMPT, for a full-dimensional polyhedron P with a bound on its representation complexity, can solve SNEMPT.
  • An oracle for WOPT, for a bounded full-dimensional polyhedron P with a bound on its representation complexity, can solve SOPT.
  • An oracle for WVIOL, for a bounded full-dimensional polyhedron P with a bound on its representation complexity, can solve SVIOL.
  • An oracle for WVAL, for a bounded full-dimensional polyhedron P with a bound on its representation complexity, can solve SVAL.
  • An oracle for WSEP, for a bounded full-dimensional polyhedron P with a bound on its representation complexity, can solve SSEP.
  • An oracle for WMEM, for a bounded full-dimensional polyhedron P with a bound on its representation complexity, given an interior point in P, can solve SMEM.

The proofs use results on simultaneous diophantine approximation.

Necessity of additional information

How essential is the additional information for the above reductions?[1](p173)

  • The assumption that P is full-dimensional is essential: if P is not full-dimensional, then the interior ball S(K,) is empty. Therefore, any oracle for solving a weak problem cannot distinguish between P and the empty set.
  • The assumption that P is bounded can be relaxed: it is possible to define variants of the weak problems for polyhedra that may be unbounded, and prove reductions analogous to the above results.
  • For the implication WMEM→SMEM, the assumption that an interior point of P is given is essential. Proof: Suppose we have a polyhedron P with known vertex complexity 2n, and wish to decide whether 0 is in P. If we ask the WMEM oracle fewer than 2n queries, then the oracle can always answer "no", and it is possible that there exists a unit cube H with vertices whose coefficients are in {0,+1,-1}, that contains zero as a vertex, but does not contain any of the queried points. So it is possible that P=H and the answer is "yes", but it is also possible that P is the convex hull of all non-zero vertices of H and the answer is "no".

Implications of strong variants

Using the previous results, it is possible to prove implications between strong variants. The following can be done in oracle-polynomial time, for polyhedra for which an upper bound on the representation complexity is known:[1]:{{{1}}}

  • An oracle for SSEP can solve SNEMPT, as well as SVIOL and SOPT;
  • An oracle for SVIOL can solve SOPT and SSEP;
  • An oracle for SOPT can solve SSEP and SVIOL.
  • In the special case in which P is a cone, SVIOL for P is the same as SSEP for its polar cone P*; therefore, an SSEP oracle for P yields an SSEP algorithm for P*.
  • If we know in advance that P is nonempty, then the SSEP oracle can be replaced with a slightly weaker separation oracle: given a vector y in Qn, if y is not in P it finds a hyperplane that separates y from P (= a vector c in Rn such that cTy > cTx for all x in P), but if y is in P, it may still return a hyperplane - a vector c in Rn such that cTycTx for all x in P.

So SSEP, SVIOL and SOPT are all polynomial-time equivalent. This equivalence, in particular, implies Khachian's proof that linear programming can be solved in polynomial time,[1]:{{{1}}} since when a polyhedron is given by explicit linear inequalities, a SSEP oracle is trivial to implement. Moreover, a basic optimal dual solution can also be found in polytime.[1]:{{{1}}}

Other reductions cannot be made without additional information:

  • If P is not full-dimensional, then SMEM cannot solve SSEP, SVIOL or SOPT.
  • If P is unbounded, then SVAL cannot solve SSEP, SVIOL or SOPT.

Geometric problems on polyhedra

Using the above basic problems, one can solve several geometric problems related to nonempty polytopes and polyhedra with a bound on the representation complexity, in oracle-polynomial time, given an oracle to SSEP, SVIOL or SOPT:[1]:{{{1}}}

  • Find a vertex of P.
  • Given a vector c, find a vertex of P that maximizes cTx.
  • Given vectors c1,c2, find a vertex of P that maximizes c1Tx, and subject to this, maximizes c2Tx (lexicographic maximization).
  • Find the affine hull of P.[5] This also implies finding the dimension of P, and a point in the relative interior of P.
  • Decide whether any two given vectors are vertices of P, and if so, whether they are adjacent.
  • Given a point in P, write it as a convex combination of at most n vertices of P (an algorithmic version of Carathéodory's theorem).

See also

  • Separation oracle - an algorithm for solving the (weak or strong) separation problem for some convex set K.

References