I'm trying to solve an optimization problem involving reciprocals.
The problem has the following simple form. Can this form be transformed into a problem form that commercial optimization solvers can solve (eg LP, QP ..)?
$$\begin{split} &\text{min } x+y+z\\ &\text{s.t.}\\ &\frac1x + \frac1y +\frac1z \geq 1\\ &x,y,z \geq 1 \end{split}$$
The answer would be 3, however, what I want to ask is how to re-formulate it when there is reciprocal constraints in a problem where the objective function and other constraints are linear combinations.
Thank you.
You can make piecewise linearization of each of the fraction (reciprocals) using Taylor series. This technique will not be accurate and the bounds may not be tight. In solver problems usually its like
Min $ x+y+z$
s.t.
(1) $ x_1+y_1+z_1 \ge 1$
(2) $ x_1 \cdot x - 1 = 0$
(3) $ y_1 \cdot y - 1 = 0$
(4) $ z_1 \cdot z - 1 = 0$
$ 0 \le x_1,y_1, z_1 \le 1$
Most solvers wont have a problem with constraints (2)-(4)