Homework 5
This homework covers the material from lectures 17 to 22
Due date: November 29th, 11:59pm Waterloo time.
PDF version of Homework 5.
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 - Competitive Analysis (20 points)
You have reached a river (modelled as a straight line) and must find a bridge to cross it. The bridge is at some integer coordinate upstream or downstream.
- Give a 9-competitive deterministic algorithm for optimizing the total distance travelled up and downstream before you find the bridge.
- Give a randomized 7-competitive algorithm for the problem
Problem 2 - Paging Algorithms (20 points)
A conservative algorithm is one that makes at most
- Prove that LRU and FIFO are conservative
- Prove that any conservative algorithm is k-competitive.
Problem 3 - Multiplicative Weights Update (20 points)
Here is a variation on the deterministic Weighted-Majority algorithm, designed to make it more adaptive.
- Each expert begins, on the 1st day, with weight
. - We predict the result of a weighted-majority vote of the experts.
- If an expert makes a mistake, we penalize it by dividing its weight by
, but only if its weight was at least of the average weight of experts.
Prove that in any contiguous block of trials (e.g., the block from 51st day through the 77th day),
the number of mistakes made by the algorithm is at most
Problem 4 - Distinct Elements (20 points)
Consider again the distinct elements problem that we saw in class.
We are given a stream of elements
We will now analyze a different algorithm for the distinct elements problem:
- Let
be an integer - Pick at random a function
from a strongly 2-universal family. - Let
- Output
- Suppose that
contains distinct elements. Show that - Suppose that
contains distinct elements. Show that - Assuming that
, what is the memory requirement of the algorithm above?
Problem 5 - Hardness of Approximation (20 points)
Given a graph
Interestingly, the complement of an independent set is a vertex cover, so the complement of the MIS is the minimum vertex cover. We’ve seen (twice) how to get a two-approximation for vertex cover. Even though it is complementary, the situation for MIS is much worse.
Early in the study of approximation hardness, MIS was shown to be MAX-SNP-hard, meaning there is some constant to within which it cannot be approximated (unless P = NP).
Suppose one has an
- Prove that if there is an independent set of size
in , then there is an independent set of size in the product graph. - Prove that given an independent set of size
in the product graph, one can find an independent set of size in . - Conclude from the MAX-SNP-hardness of MIS that MIS has no constant-factor approximation (unless P = NP).
Problem 6 - Proving that (20 points)
Given a matrix
Optional question: how would you remove the assumption given above?
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
Suppose in the paging problem that the size of our cache is
Problem 2
Prove that the general version of the MWU given in lecture 18 actually captures the basic version of MWU that we showed in lecture.