I have a very basic level in optimization, so sorry in advance if my question is naive or very basic.
I am considering an objective function $f(x_1, x_2, x_3) = \phi(x_1, x_2) + \psi(x_2, x_3)$ and I'm trying to minimize it over the variable $x = (x_1, x_2, x_3) \in \mathbb{R}^3$. For several reasons relative to my problem, it's impossible to minimize the whole function in one shot. So what I do is basically the following (once again, there is no mathematical validity behind this choice, just practical considerations):
- Minimize $\phi$ over $(x_1, x_2)$. I obtain $x_1^*$ and $x_2^*$.
- Minimize $\psi$ over $(x_2, x_3)$. I obtain $x_2^{**}$ and $x_3^*$.
My two questions are the following: Is it possible (under some conditions) to upper-bound the difference $|\phi(x_1^*, x_2^*) + \phi(x_2^{**}, x_3^*) - \min_x f(x)|$ and/or the distance between $x^* = arg\min f$ and the approximate solutions $(x_1^*, x_2^{*}, x_3^*)$ and $(x_1^*, x_2^{**}, x_3^*)$?
Thank you in advance for your insights!