Given the primal problem $$\begin{aligned} \min_{x} \quad & f(x)\\ \textrm{s.t.} \quad & l_i(x) \leq 0, i\in \{1,\dots,m\}\\ & h_i(x) = 0, i\in \{1,\dots,p\} \\ \end{aligned}\quad(\text{P1})$$ we define the Lagrangian as
$$L(x,\alpha,\lambda) = f(x) + \sum_{i=1}^{m}\alpha_il_i(x) + \sum_{j=1}^{p}\lambda_jh_j(x)\quad (\text{LF})$$ and the dual function as
$$g(\alpha, \lambda) = \min\limits_{x}L(x,\alpha,\lambda) \quad (\text{P2})$$ The associated dual problem will be defined as $$\begin{aligned} \max_{\alpha, \lambda} \quad & g(\alpha, \lambda)\\ \textrm{s.t.} \quad & \alpha \geq 0 \end{aligned}\quad(\text{P3})$$
- Does the convexity (convex or concave) of $L$ depends on the convexity of $f$, $l_i$ and $h_i$? Should we study it w.r.t $x$ and $\xi=(\alpha, \lambda)$?
- In this post it is mentioned that $L(x, \alpha, \lambda)$ is concave. What is the meaning of minimizing a concave function?
- If we want to maximize (P1) what will be the (P2) and (P3)? (I suppose (P1) has to be a concave problem so as to be maximized. Please correct me.)
- Is the order of minimizing and maximizing (P2) and (P3), respectively, change according to the convexity of the entire problem (P1)?
- For example, what will be the order of optimization in (P2) and (P3) in the scenario below?
Scenario: Given that $f$ is a convex function, and constraints $l_i$ and $h_i$ are such that (P1) is not convex. For example, $l_i$ a linear constraint and $h_i$ a non-linear one (e.g., unit sphere normalization).
Thank you!