I have a naive question for an optimization problem. Let $$F(x_1,x_2,x_3)=(a-x_1 \frac{(1-x_2)\sin x_3}{1-x_2 \cos x_3} )^2 + (b-x_1 (1-x_2^2))^2$$ where $a$ and $b$ are known values, I have an optimization problem that consists in minimizing $\min F (x_1,x_2,x_3)$ under the constraints $$x1 \geq 0, 0\leq x_2 \leq 1, 0\leq x_3 \leq \pi/4$$
I find that $F(x_1,x_2,x_3)$ is convex w.r.t. variable $x_1$, but is not to $x_2$ or $x_3$. My question is, is it reasonable to do the optimization in two separate steps: first fix $x_1$, minimize $x_2$ and $x_3$, and second fix $x_2$ and $x_3$ to minimize $x_1$? In other words:
- Initialization of $x_2$ and $x_3$
- Fix $x_2$ and $x_3$, update $x_1$ using linear least square method.
- Fix $x_1$, update $x_2$ and $x_3$ using interior-point algorithm.
- Stop iteration if convergence. Otherwise, go to #2.
Is this a reasonable process to separate the minimization problem to convex and non-convex, and solve them in stages?
I also find that there are a lot of discussions on how to identify convex problem, how to transfer problems to convex problems, but I cannot find information about how to deal with the case where convex and non-convex problems are " mixed ".
Any ideas? Thank you in advance.