I am trying to find the values $x \in [0, 16]$ and $y \in [0, 12]$ that maximise
$$ f(x,y) \equiv \min \{\ln(x) + 2\ln(y), \ln(16-x) + 2\ln(12-y) \}$$
Intuitively, it is pretty clear that the solution is $x = 8$, $y = 6$. However, I am having a bit of trouble proving this. Can anyone give me a hint?
My thoughts so far are, in order to maximise the minimum of the functions, we should equate the two arguments of the min function. Otherwise, we could increase the smaller argument and decrease the larger argument, thus increasing $f$. So we get the equation
$$ \ln(x) + 2\ln(y) = \ln(16-x) + 2\ln(12-y)$$
Now one solution to this equation is $x = 16 - x$, $y = 12 - y$, yielding $x = 8$ and $y = 6$. However, this is not the only solution; and it's not obvious to me how to show that the solution I found is the optimum.