5

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:

  1. I realize that the objective function is increasing in $\mathbb{R}^3_{+}$.
  2. For this reason the constraint has to work as an equality constraint and it is binding.
  3. 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.
  4. I create a system with the previous equation and the inequality constraint expressed as an equality constraint.
  5. I focus on the positive value of $x$ and $y$ and that's it.

Does it sound reasonable?
Any feedback is welcome!

Kolmin
  • 4,083
  • 1
    How general a technique are you trying to make here? Because you could cube that objective function without changing the optimal point, as well. Then you simply have $x^2y=(2-y^2)y$ to maximize over $y\in[0,\sqrt{2}]$. But again, it's not clear how particular this example is. I agree with your work so far though. – Michael Grant May 24 '13 at 19:27
  • Actually, I was interested in Cobb-Douglas functions in general: namely, any objective function of the form $x^{\alpha} y^{1-\alpha}$. – Kolmin May 24 '13 at 19:31
  • 1
    What about the constraint? Is it also general? – AnilB May 24 '13 at 19:40
  • Actually, any strictly increasing function in $\mathbb{R}^3$ should work in this setting. – Kolmin May 24 '13 at 19:40
  • Given the general setting of the objective function (which could be considered specific), I would say that the constraint should be pretty general, but no idea how to prove it. – Kolmin May 24 '13 at 19:42
  • 1
    $x^\alpha y^{1-\alpha}$ is not just increasing but concave in the nonnegative orthant. So as stated you have a convex optimization problem, and you can consider a variety of general convex constraints on $x$ and $y$ without sacrificing tractability. The solution will indeed satisfy $x,y>0$ unless the interior of the feasible region is empty. – Michael Grant May 24 '13 at 20:30

2 Answers2

1

This sound reasonable. The precise justification for your step 1 could go along the following lines: Assume that $(x,y)$ is a (feasible) minimizer of $F$. Obviously, $F(x,y) > 0$.

Assume $r^2 := x^2 + y^2 < 2$. Then, take $(\sqrt2 \, x/r,\sqrt 2\,y/r)$. Obviously, this point is still feasible and $F(\sqrt 2 \, x/r,\sqrt 2\,y/r) = F(x,y) \, \sqrt 2/r > F(x,y)$. Contradiction.

Hence, $x^2 + y^2 = 2$ holds for the minimizer.

gerw
  • 31,359
  • Two questions: 1) you write minimizer cause you set the problem as a minimization one, right?; 2) I don't want to look naive but exactly how do $(2x/r,2y/r)$ come from? – Kolmin May 24 '13 at 19:33
  • Yes, I usually minimize functionals ;) 2) Oh, I should replace $2$ by $\sqrt 2$. And then, $(\sqrt 2x/r)^2 + (\sqrt 2y/r)^2 = 2$.
  • – gerw May 25 '13 at 06:46