CSPP 55005 Algorithms — Winter 2013

Homework 7 (assigned February 20, due February 27)

Reading: CLRS chapter 29, Matousek & Gartner, chapters 5–6.

Written assignment: Solve the following "Do" exercises and assigned problems. Only solutions to the assigned problems should be turned in.

"Do" Exercises (not to be handed in):

  1. Exercise 34.5-3, page 1101.

  2. Problem 29-3, page 895.

  3. The 3-COLORING problem is as follows:
    Input: an undirected graph G = (V, E)
    Output: a valid 3-coloring c: V → {Red, Green, Blue}, or report that none exists
    The 4-COLORING problem is as follows:
    Input: an undirected graph G = (V, E)
    Output: a valid 4-coloring c: V → {Red, Green, Blue, Yellow}, or report that none exists
    Recall that c is a valid coloring if c(u) ≠ c(v) for every edge (u, v) ∈ E.

Problems (to be handed in):

  1. Formulate the HAMILTON CYCLE problem as an integer linear-programming problem. (5 points)

  2. Consider the following simple two-player game. The players Alice and Bob each choose an outcome, heads or tails. If both outcomes are equal, Bob gives $1 to Alice; if the outcomes are different, Alice gives $1 to Bob.

  3. Find the value of the game specified by the following playoff matrix. (5 points)

  4. Formulate the change-making problem as an integer linear-programming problem. The input to the change-making problem is a positive integer A, the amount we want to make change for, and positive integers x1, x2, …, xn, the coin denominations. (5 points)
    Can we solve this program as an LP, in the certainty that the solution will turn out to be integral? Either prove it or give a counterexample. (2 points)

  5. Write a linear program for solving the minimum Vertex Cover problem in bipartite graphs. The input is a bipartite graph G = (XY, E), where EX × Y. Your linear program should have one variable for each vertex. Prove/argue that the value of your linear program is at most the minimum vertex cover size. (10 points)
    Write the dual to the linear program for the minimum vertex cover problem in bipartite graphs. What problem does this linear program represent? (5 points)

  6. Consider the two-player game with players, strategies, and payoffs described in the following game matrices.
         

  7. Consider two criminals accused of robbery. They can Confess or Deny with the following payoff matrices.
         

    Argue that C, C is the only Nash equilibrium in the game. (5 points)

  8. The k-SPANNING TREE problem is the following:
    Input: an undirected graph G = (V, E)
    Output: a spanning tree of G in which each vertex has degree ≤ k, or report that none exists
    Show that for any k ≥ 2:

Gerry Brady and Janos Simon
Wednesday February 20 23:05:09 CST 2013