Homework 4

This homework covers the material from lectures 14 to 17

Due date: November 8th, 11:59pm Waterloo time.

PDF version of Homework 4.

LaTeX template, in case you want to write it in LaTeX.

Required Exercises

Remember that you are only required to turn in 5 out of the 6 exercises below.

Problem 1 - Corner Points of Minimum Vertex Cover Relaxation (20 points)

Given the LP relaxation for minimum vertex-cover:

min  vVcvxvs.t.  0 xv1  for all vVxu+ xv1  for all {u,v}E

  1. Let y be any feasible solution for the LP. Define another solution y+ by: yv+={yv+ε  if 1/2<yv<1,yvε  if 0<yv<1/2,yv       if yv{0,12,1}. Similarly define the solution yv, by replacing ε with ε.

    Prove that one can find ε>0 such that both y+,y are feasible for the LP above.

  2. Show that every extreme point z of the LP above is half-integral, that is zv{0,12,1} for all vV.

Problem 2 - Integer Linear Programming Rounding (20 points)

Given a hypergraph G(V,E) where each hyperedge eE is a subset of V , our goal is to color the vertices of G using {1,+1} such that each hyperedge is as balanced as possible. Formally, given a coloring γ:V{1,+1} on the vertices, we define Δ(e)=veγ(v)
and Δ(G)=maxeE|Δ(e)|. Prove that if the maximum degree of the hypergraph is d (i.e. each vertex appears in at most d hyperedges), then there is a coloring with Δ(G)2d1.

Hint: You may find it useful to consider the following LP, where initially we set Be=0 for all eE.

vexv=Be  for all  eE1xv1  for all  vV

Guidance on how to use the hint:

  1. The main approach will be to iteratively update the LP above to try and find our desired solution. At each iteration, we will use a solution of the LP to guide us.
  2. What does the LP given in the hint give us? What is captured by solutions to the LP?
  3. What are the basic solutions to the LP above? How do we find a basic solution?
  4. Now that we have a basic solution, and know how they look, we can prove the following consequence of basic solutions x is basic {Ai}isupp(n) is L.I. where supp(x)={i[n]xi(1,1)}
  5. What happens if a coordinate is not in supp(x)?
  6. What happens when we cannot update the LP?
  7. How do we get unstuck? Hint: Throw away a constraint. Which one?
  8. At most how many vertices will THE deleted hyperedge have?
  9. What is the worst that can happen to an edge in this process?

Problem 3 - Integer Linear Programming Rounding (20 points)

Consider the following maximum covering problem. Given a graph G and a given number k, find a subset of k vertices that touches the maximum number of edges.

Let OPT(G,k) be the optimal number of edges touched in G by a set of at most k vertices.

Design an integer programming formulation for the problem, and then find a randomized rounding procedure for the corresponding linear programming relaxation, such that for given G and k, it identifies a set of at most 2k vertices that touches at least cOPT(G,k) edges, for some constant c>0.

Your algorithm should always output a set of at most 2k vertices, and succeed with probability at least 1/2.

Problem 4 - Strong Duality in SDPs (20 points)

  1. Let α0 and consider the following SDP: minimize   αX11s.t.  X22=0,X11+2X23=1,X0

    Where X is a 3×3 symmetric matrix. Prove that the dual of the SDP above is: maximize   y2s.t.  (y2000y1y20y20)(α00000000)

  2. What is the value of the first SDP of part (1)?

  3. What is the value of the dual (second SDP) of part (1)?

  4. Now consider the following SDP: minimize   xs.t.  (x11y)0 Compute its dual program.

  5. Is the primal from part (4) strictly feasible? Is the dual strictly feasible?

  6. What can you say about strong duality of the SDPs of parts 1 and 4? Are the results consistent with Slater conditions presented in class?

Problem 5 - Challenge to a Dual (20 points)

Let G(V,E) be a graph, where n=|V|. For each iV, let viRn be a vector variable associated to vertex i. Consider the following SDP:

min  ts.t.  vi,vj=t  for all ijV, {i,j}Evi,vi=1  for all iV

Let ΘR be the optimum value of the SDP above.

  1. Show that the following SDP has optimal value Θ: max  X,en+1en+1Ts.t.  X,eiejT +en+1en+1T=0  for all ijV, {i,j}EX,eieiT=1  for all iVX0 Where X is a (n+1)×(n+1) symmetric matrix, and e1,,en+1 are the elementary unit vectors.

  2. Write down the dual of the SDP from part (a).

  3. Conclude that the dual you just derived is equivalent to the following SDP:

    min  1inZiis.t.  Zij=0  for all ijV, {i,j}EijZij1Z0

    Where Z is an n×n symmetric matrix.

  4. Rearrange the above SDP to show that the following SDP have value Θ1Θ:

    max  i,jVYijs.t.  Yij=0  for all ijV, {i,j}E1inYii=1Y0

    Where Y is an n×n symmetric matrix.

Problem 6 - Projections of Spectrahedra (semidefinite representations) & SDP relaxations (20 points)

  1. The k-ellipse with foci (u1,v1),,(uk,vk)R2 and radius dR is the following curve in the plane: {(x,y)R2 | i=1k(xui)2+(yvi)2=d}

    Let Ck be the region whose boundary is the k-ellipse. That is, Ck is the set: {(x,y)R2 | i=1k(xui)2+(yvi)2d}

    Find a semidefinite representation (i.e. projection of a spectrahedron) of the set Ck, and prove that your semidefinite representation is correct. That is, that it captures exactly the set Ck above.

  2. Given a 3-uniform hypergraph G(V,E) (that is, a hypergraph where each hyperedge has exactly 3 vertices), we say that a 2-coloring of V is valid for a hyperedge e={a,b,c}E if the hyperedge e is not monochromatic upon this coloring.

The Max-2C3U problem is the following:

  • Input: a 3-uniform hypergraph G(V,E)
  • Output: a 2-coloring of the vertices of G of maximum value, that is, a function f:V{1,1} (the coloring) which maximizes the number of valid hyperedges.

In this question, you are asked to:

2.1. Write the optimization problem above as a quadratic program

2.2. Formulate an SDP relaxation for the problem, and prove that it is in fact a relaxation

Practice Problems

You are not required to submit the solution to these problems, but highly encouraged to attempt them for your own knowledge sake. :)

Problem 1

From lecture 13, slide 23: prove that the three definitions of corner points of a polytope are equivalent.

Previous
Next