I am wondering if the following procedure to solve a maximization problem in - let's say - two variables with inequality and non-negative constraints works.
More specifically, let's assume something like the following concrete example:
$ \text{max } F(x,y)=x^{\frac{2}{3}} y^{\frac{1}{3}}$
$ \text{sub } G(x,y)=x^2 + y^2 \leq 2 \hspace{0.5cm}\text{and } x,y\geq 0$
I thought that, instead of using Kuhn-Tucker conditions, which would bring me to a real nightmare, it would be better to go for the following steps:
- I realize that the objective function is increasing in $\mathbb{R}^3_{+}$.
- For this reason the constraint has to work as an equality constraint and it is binding.
- I take the implicit function of $F(x,y)$ of $y$ in terms of $x$ and I put it equal to the same thing, for the inequality constraint.
- I create a system with the previous equation and the inequality constraint expressed as an equality constraint.
- I focus on the positive value of $x$ and $y$ and that's it.
Does it sound reasonable?
Any feedback is welcome!