Given the following minimization $$\min\limits_\mathbf\Phi \lVert \mathbf{A \Phi b} \rVert_2^2$$ where $\mathbf A$ and $\mathbf b$ are a complex matrix and vector, respectively, and $$ \mathbf \Phi = \begin{bmatrix} e^{j\phi_1} & \cdots & 0\\ \vdots & \ddots & \vdots\\ 0 & \cdots & e^{j\phi_N}\, \end{bmatrix}$$ is a diagonal matrix of rotations.
How would the rotations $\{\phi_1,\ldots,\phi_N\}$ that minimize the cost function be found? I tried minimizing each rotation independently, but sometimes it leads to a local minimum.
What is the intuition about why the rotations would produce a smaller norm? Is there a geometric explanation?
Is there a reference where this problem has been studied?
Try the parameterization $\psi_k = e^{j \phi_k} b_k$. This change of variables yields $\lVert A \psi \rVert^2 = \psi^\top A^\top A \psi$, which is convex in $\psi$ and where the optimality condition is at
$$ \frac{\mathrm{d}}{\mathrm{d} \psi} \psi^\top A^\top A \psi = 2 A^\top A \psi = 0 $$
It remains to find $\psi$ such that each component $\lvert \psi_k \rvert = \lvert b_k \rvert$ to satisfy the rotation constraint.
A geometric interpretation of this is that $b$ is some fixed input, $A$ is fixed that we are feeding $b$ into, but before this application we are able to adjust each component of $b$ so that the modified input $\Phi b$ produces a smaller norm when fed into $A$.