It is easy to find the minimum of $\|Ax-b\|_2$, when $A$ has full column rank. But how is the case when we add the constraint $\|x\|_2=1$? Or, to be explicit,
$$\min_{\|x\|_2=1}\|Ax-b\|_2=?$$
My idea is to construct the corresponding Lagrange function
$$L(x,\lambda) = (Ax-b)^T(Ax-b) + \lambda(x^T x - 1)$$
Differentiate the function with respect to $x,\lambda$, we have
$$A^T A x - A^T b + \lambda x = 0$$
$$x^T x=1$$
However, I find it hard to move forward to get the answer. Could anyone help me? Thanks a lot!