$a,b,c$ are all known positive rational numbers (e.g. $a=2.1,b=3.5,c=7.4$). They are also always $\geq1$ but I'm not sure if that helps. $\min\{ax,by,cz\}$ means the minimum out of those three products.
This feels like an optimisation problem but I'm not sure how to approach it. I'm hoping to solve this programmatically, so that it can be solved for several thousand sets of coefficients.
Suppose that $ax$ is the minimum; then $y$ can be reduced to $ax/b$ without changing the numerator but decreasing the denominator; and similarly for $z$. And similarly if one of the other two products is the minimum.
So the maximum of the quotient is going to be achieved when $ax=by=cz$, that is, when $x=\lambda/a$, $y=\lambda/b$, $z=\lambda/c$ for some constant $\lambda$, so that the quotient equals $1/(\frac1a+\frac1b+\frac1c)$.