HW 6 for CS 4220
You may (and probably should) talk about problems with the each other, with the TAs, and with me, providing attribution for any good ideas you might get. Your final write-up should be your own.
1. Non-negative least squares
Consider the non-negative least squares problem
$$\mbox{minimize } \frac{1}{2} \|Ax-b\|^2 \mbox{ s.t. } \forall i, x_i \geq 0$$
Write a projected gradient iteration to solve this problem for the instance below (I used 5000 iterations with a fixed step size of $10^{-4}$).
Based on your approximate solution, do a "polishing" step where you assume the constraint is active for components that are sufficiently small. This should allow you to compute the solution to machine tolerance.
Write a function to compute a residual for the KKT conditions. You should check all parts of the KKT conditions: stationarity, primal feasibility, dual feasibility, and complementary slackness. What are the residual norms before and after polishing?
2. Continuation
Write a continuation routine to trace out the solution to
$$x^2-y^2 + (x^7+y^7)/8 + (x^4+y^4)/4 = 0.5$$
from about $x = -3$ to about $x = 3$. Use pseudoarclength continuation, and space the points out by about $h = 0.01$.