I need to find max and min (if they exist) of the following function: $f(x_1,x_2) = \ln(x_1) + \ln(x_2) - 2x_1-2x_2$
On the set $C = \{(x_1, x_2) ∈ R^2: x_1 \geq 1, x_2\geq 1, x_1+x_2 \leq 4\}.$
I have checked that the Lagrange theorem assumptions hold, so that I can find the critical points solving the following system of equation:
$\frac{1}{x_1}-2+\lambda_1 -\lambda_3=0$
$\frac{1}{x_2}-2+\lambda_2 -\lambda_3=0$
$\lambda_1(-x_1+1)=0$
$\lambda_2(-x_2+1)=0$
$\lambda_3(x_1+x_2-4)=0$
$-x_1\leq -1, -x_2\leq -1, x_1+x_2\leq 4$
What is the best way to proceed, given that I would like to solve the problem via Lagrange first order conditions?
Concentrate on the third and fourth equations. There are several possibilities:
The last solution is extraneous, so that $f$ achieves a minimum of $-4$ and $(1,1)$ and a maximum of $-8 + \ln 3$ at $(1,3)$ and $(3,1)$.