Homework 3
This homework covers the material from lectures 9 to 12
Due date: October 25th, 11:59pm Waterloo time.
PDF version of Homework 3.
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 - Markov Chains (20 points)
- Show that if a Markov chain with transition matrix
is irreducible and has a state such that , then it is also aperiodic. - Let
be positive integers and consider the Markov chain with state space where are integers, and the following transition mechanism: if the chain is in state at time , then at time it moves to with probability or to with probability .
Show that this Markov chain is irreducible, and show that it is aperiodic if, and only if,
- Consider a chessboard with a lone white king making random (king) moves, meaning that at each move, he picks one of the possible squares to move to, uniformly at random. Is the corresponding Markov chain irreducible and/or aperiodic? If so, what is the stationary distribution?
- Same question as part 3, except now we have a lone knight in the chessboard.
Problem 2 - Mixing Time of Random Walks (20 points)
Compute the mixing time (both upper bounds and lower bounds) of the dumbbell graph: the graph on
Hint: try breaking up the graph into 4 pieces which converge to the stationary distribution in the appropriate time, and then show that any other probability distribution converges quickly to one of these pieces.
Problem 3 - Pagerank (20 points)
Suppose someone searches a keyword (like “car”) and we would like to identify the webpages that are the most relevant for this keyword and the webpages that are the most reliable sources for this keyword (a page is a reliable source if it points to many of the most relevant pages).
First we identify the pages with this keyword and ignore all other pages. Then we run the following ranking algorithm on the remaining pages.
- Each vertex corresponds to a remaining page, and there is a directed edge
from page
to page if there is a link from page to page . Call this directed graph , where . - For each vertex
, we have two values and , where intendedly represents how relevant is this page and represents how reliable it is as a source (the larger the values the better). - We start from some arbitrary initial values, say
for all , as we have no idea of their relevance at the beginning. - At each step, we update
and (where and are vectors whose entries are and ) as follows: - First we update
for all , as a page is more relevant if it is linked by many reliable sources. - Then we update
for all (using the just updated values ), as a page is a more reliable source if it points to many relevant pages. - To keep the values small, we let
and , and divide each by and each by . - We repeat this step for many times to refine the values.
Let
- Give a matrix formulation for computing
and . - Suppose
is weakly connected (that is, when we ignore the direction of the edges, the underlying undirected graph is connected) and there is a self-loop at each vertex. Prove that there is a unique limiting and a unique limiting for any initial as long as and .
Hint: use the Perron-Frobenius theorem.
Problem 4 - Linear Programming (20 points)
Let
Problem 5 - More Linear Programming (20 points)
Suppose we are given a sequence of
- Describe a linear program whose solution describes the largest axis-aligned square that lies entirely inside
- Describe a linear program whose solution describes the maximum-perimeter axis-aligned rectangle that lies entirely inside
- Describe a linear program whose solution describes the largest circle that lies entirely inside
Problem 6 - LP Duality (20 points)
Given a finite set of halfspaces
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
There are
E.g., if there’s a positive terminal at point
Or, for any
So given the locations of the terminals (and their polarities), the problem is to compute the shortest total length of wires needed to satisfy the stated requirement.
- Consider the following specific instance of the problem. All the terminals are
along the
-axis. There are positive terminals at . And there are negative terminals at and .
What’s the optimal solution to the problem?
(You don’t need to prove your solution is optimal.)
- Formulate this problem as an LP. (Illustrate your LP by writing this for an example with two positive and two negative terminals.)
- Write the dual of the LP in part (2.). (Again, write down this dual for the two terminal example in part (2.).)
- Show how to compute an optimal solution to the dual problem of part (3.), without using a general LP solver.
Hint: see Seidel’s 2D algorithm for LPs
Problem 2
Suppose we are given a sequence of
- Describe a polynomial time algorithm to compute two interior-disjoint axis-aligned squares with maximum total perimeter that lie entirely inside
- Describe a polynomial time algorithm to compute two interior-disjoint axis-aligned rectangles with maximum total perimeter that lie entirely inside