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:
-
Let
be any feasible solution for the LP. Define another solution by: Similarly define the solution , by replacing with .Prove that one can find
such that both are feasible for the LP above. -
Show that every extreme point
of the LP above is half-integral, that is for all .
Problem 2 - Integer Linear Programming Rounding (20 points)
Given a hypergraph
and
Hint: You may find it useful to consider the following LP, where initially we set
Guidance on how to use the hint:
- 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.
- What does the LP given in the hint give us? What is captured by solutions to the LP?
- What are the basic solutions to the LP above? How do we find a basic solution?
- Now that we have a basic solution, and know how they look, we can prove the following consequence of basic solutions
- What happens if a coordinate is not in
? - What happens when we cannot update the LP?
- How do we get unstuck? Hint: Throw away a constraint. Which one?
- At most how many vertices will THE deleted hyperedge have?
- 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
Let
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
Your algorithm should always output a set of at most
Problem 4 - Strong Duality in SDPs (20 points)
-
Let
and consider the following SDP:Where
is a symmetric matrix. Prove that the dual of the SDP above is: -
What is the value of the first SDP of part (1)?
-
What is the value of the dual (second SDP) of part (1)?
-
Now consider the following SDP:
Compute its dual program. -
Is the primal from part (4) strictly feasible? Is the dual strictly feasible?
-
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
Let
-
Show that the following SDP has optimal value
: Where is a symmetric matrix, and are the elementary unit vectors. -
Write down the dual of the SDP from part (a).
-
Conclude that the dual you just derived is equivalent to the following SDP:
Where
is an symmetric matrix. -
Rearrange the above SDP to show that the following SDP have value
:Where
is an symmetric matrix.
Problem 6 - Projections of Spectrahedra (semidefinite representations) & SDP relaxations (20 points)
-
The
-ellipse with foci and radius is the following curve in the plane:Let
be the region whose boundary is the -ellipse. That is, is the set:Find a semidefinite representation (i.e. projection of a spectrahedron) of the set
, and prove that your semidefinite representation is correct. That is, that it captures exactly the set above. -
Given a 3-uniform hypergraph
(that is, a hypergraph where each hyperedge has exactly 3 vertices), we say that a 2-coloring of is valid for a hyperedge if the hyperedge is not monochromatic upon this coloring.
The Max-2C3U problem is the following:
- Input: a 3-uniform hypergraph
- Output: a 2-coloring of the vertices of
of maximum value, that is, a function (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.