I need to solve this problem:
minimize $f(x,y)=5x-xy-50+10y$
subject to:
$g_1(x,y)=18-xy\leq0$
$g_2(x,y)=x+y-11\leq0$
$x,y\geq0$
I found the optimal solution: $(x,y)=(6,3)$ But the Hessian matrix of the objective function is indefinite. My question is, why are the KKT conditions sufficient in this case? Or if they are not, then according to what sufficient condition is the optimal solution correct?
Thanks in advance!
Suggestion: can you show it is quasi-convex?
$$\forall h,\, Df(x)\cdot h = 0 \Longrightarrow h^T\cdot D^2f(x) \cdot h \ge 0$$
That is, we only care about the directions $h$ that are orthogonal to the gradient.
$$f_x\cdot h_1+f_y\cdot h_2=(5-y)h_1+(10-x)h_2 = 0\Rightarrow h_2=\dfrac{5-y}{10-x}h_1$$ $$ h^T\cdot D^2f(x) \cdot h = -2h_1\cdot h_2$$ $$ -2\dfrac{5-y}{10-x}h_1^2 \ge 0\Leftrightarrow \mathrm{sign} \;y-5=\mathrm{sign}\, 10-x$$
That is, either $y> 5$ implies $x<10$ or $y<5$ implies $x>10$.
Maybe we could make an argument this happens in the constrain set? Not sure, again just a suggestion too long to be a comment.