I am looking for a good strategy to tackle this non-linear, non-convex optimization problem:
Minimize $$\frac{c_1x + c_2 y}{x+y}$$
such that:
$x, y > 0$
$x + y \leq c_3$
$c_1, c_2, c_3$ are given
$c_3 > 0$
Does anyone have any suggestions?
I know this objective function is non-convex, but I was wondering if there were any smart ways to find (or at least approximate) the global optimum. If you suggest an approximation algorithm, please also share its approximation factor. Computational efficiency is not a major concern for me, but accuracy is.
Currently, my leading (though inelegant) idea is to fix the value of $x + y$ and iterate through possible combinations. In the context of my problem, it is an OK assumption to say there are a finite number of meaningful combinations of $x + y$, so I could conceivable iterate through them, but this would be very inefficient.
In case it helps, there is the option for the additional constraint that $c_1, c_2 > 0$, but it's preferable to retain the freedom for them to be either positive or negative.
Thanks in advance for your help.