\documentclass[12pt]{article} \usepackage{wide,me} \parindent0pt

Minimum Cut

deterministic algorithms

Recursive Contraction Algorithm

Recall contraction algorithm

$$ \begin{align*} T(n) &=2T(n/\sqrt{2})+O(n^2) = O(n^2\log n)\\ P(n) &=1-(1-\frac12P(n/\sqrt{2}))^2\\ p_k &=1-(1-\frac12p_{k-1})^2\\ &=p_{k-1}-\frac14p_{k-1}^2 \end{align*} $$ Back-envelope: Formalize: $$ \begin{align*} z_k&=4/p_k-1\\ p_k&=4/(z_k+1)\\ z_{k+1}&=z_k+1+1/z_k\\ k < z_k &< k+H_{k-1}+3 \end{align*} $$

Sampling

Min-cut

Intuition:

What goes wrong? (pause for discussion)

Surprise! It works anyway.

Proof of Theorem

Issue: need to estimate $c$.

Las Vegas:

Idea for exact:

DAUG:

Recursion Tree:

Later work. Just talk about where this went.