SLIDE 1
The gist
- Goal: solving very large LPs
min{c⊤x | Ax = b ∧ x ≥ 0}
- Trade-off: approximate / wrong with low probability: OK
- Means: project cols of Ax = b to random subspace T, get
Ax = b ∧ x ≥ 0 ⇔ TAx = Tb ∧ x ≥ 0 with high probability
- Bisection: solve LP using [TAx = Tb ∧ x ≥ 0] as oracle
2