Is it possible to reformulate the following optimization problem as a geometric program?
$$ \begin{array}{ll} \underset {x, y, z} {\text{minimize}} & \dfrac{x}{{2x + 3y}} + \dfrac{y}{{y + z}} + \dfrac{z}{{z + x}} =: P (x,y,z) \\ \text{subject to} & x, y, z \in \left[ {1,4} \right] \\ & x \ge y \\ & x \ge z \end{array} $$
Although this is a problem from a university entrance exam and has been solved here, I was wondering if there is some convex reformulation of this problem.
Here's maybe not what you were expecting, but it's certainly a way to solve this problem using a computer. We'll be doing this in sage using the qepcad interface, which lets us solve equations over $\mathbb{R}$ using quantifier elimination. For more specifics about this method, you might be interested in an old blog post of mine where I talk at length about solving problems like this using this machinery.
So, the first thing to do is to figure out what the solution "should" be. We can do this by trying a hundred thousand random points
The exact output will depend on what random numbers you get, but I got roughly $(3.99, 1.00, 1.99)$. Since we know this came from some kind of competition problem, it's a good guess that the solution should be an integer, so the actual solution is probably $(4,1,2)$.
With that in mind, let's use
qepcadto verify that this is correct! We see $P(4,1,2) = 34/33$, so the dream is to prove $P(x,y,z) \geq 34/33$ on our domain of interest, and ideally to check that we get equality only at $(4,1,2)$ (or maybe at finitely many other points as well).Quantifier elimination only works for polynomial queries. But thankfully we can easily turn the inequality $P \geq 34/33$ into a polynomial inequality by clearing denominators on the left hand side. Doing this gives the following query
Sage outputs
TRUEincredibly quickly, which tells us that $P \geq 34/33 = P(4,1,2)$ on our domain! So $(4,1,2)$ really is a minimum. But it's natural to ask if there are any other minima, and it's easy to get sage to tell us the answer is "no". If we modify our query to ask for equality, we can get sage to tell us all the solutions to $P = 34/33$!Here, sage outputs
[{'x': 4, 'y': 1, 'z': 2}], so we know we've found the only solution. (As a cute exercise, you can actually copy/paste this code into the cells on the page I linked earlier to see for yourself how quickly it runs!)I hope this helps ^_^