Some people asked questions about KKT conditions with strict inequality constraints, such as
Kuhn Tucker conditions with strict inequality constraints?
Questions about constraints and KKT conditions
Let us see an example.
$\min\quad \frac{a^2}{b} + \frac{b^2}{c} + \frac{c^2}{d} + \frac{d^2}{a}$
$\mathrm{s.t.}\quad a>0,\ b>0,\ c>0,\ d>0,\ a^4+b^4+c^4+d^4 = 4.$
The minimum $4$ is attained at $a=b=c=d=1$. The constraints $a,b,c,d>0$ are strict inequalities. How to deal with them in KKT conditions?
Just as some people said (e.g., the 3rd link above), we simply ignore the strict inequality constraints and use KKT conditions. If the minimum is attainable (that is, min not inf), the solution will satisfy the strict inequalities. For this example, it is the Lagrange multiplier method $L = \frac{a^2}{b} + \frac{b^2}{c} + \frac{c^2}{d} + \frac{d^2}{a} + \lambda (a^4+b^4+c^4+d^4 - 4)$.
I found the lecture note:
In the lecture note (2nd page), the following problem is considered:
$\min\quad f(x)$
$\mathrm{s.t.}\quad h(x) = 0,\ g(x) \le 0, \ x \in X.$
Here $X$ is an open set. Then KKT conditions are used without including $x\in X$.
I want to make sure if this is the case. Thanks.