Find the minumum value of the function $f(x,y)=3(x+1) +2(y-1)$, subject to the constraint that $x^2+y^2=4$.
The problem states to use Lagrange Multipliers. In doing so I obtained the point $(\frac 6{\sqrt{13}},\frac 4{\sqrt{13}})$. But when checking if it is a maximum I found that the result was inconclusive. What did I do wrong?
$$minimize \hspace{3mm} 3(x+1) + 2(y-1)$$ $$s.t. \hspace{3mm} x^2+y^2=4.$$
The lagragian function is $\mathcal{L} = 3(x+1) + 2(y-1) + \lambda (x^2+y^2-4)$. Thus,
$$\frac{\partial\mathcal{L} }{\partial x} = 3 + 2\lambda x = 0 \Rightarrow \lambda = \frac{-3}{2x},$$ and
$$\frac{\partial\mathcal{L} }{\partial y} = 2 + 2\lambda y = 0 \Rightarrow \lambda = \frac{-2}{2y}.$$ Then, $x = \frac{3y}{2}$.
Substituting in the restriction, $\frac{9y^2}{4}+ y^2 = 4 \Rightarrow y = \pm \frac{4}{\sqrt{13}},$ and $x = \pm \frac{6}{\sqrt{13}}.$ We have two critical points.
For $(x,y) = (\frac{6}{\sqrt{13}},\frac{4}{\sqrt{13}}), \lambda = -\sqrt{13}/4$. For $(x,y) = (-\frac{6}{\sqrt{13}},-\frac{4}{\sqrt{13}}) , \lambda = \sqrt{13}/4$.
The Hessian is
\begin{equation} H = \left [ \begin{array}{cc} 2\lambda & 0 \\ 0 & 2\lambda \\ \end{array} \right] \end{equation} and
For $\lambda = \sqrt{13}/4$, the Hessian is a positive definite matrix, and for $\lambda = -\sqrt{13}/4$, the Hessian is a negative definite matrix (we don't need analyse the Hessian on the tangent space). Thus, we have a minimal and a maximum point.
By substituting both points in cost function $f(x,y)$ we have,
$f(\frac{6}{\sqrt{13}},\frac{4}{\sqrt{13}}) \approx 8.2111$ (global maximum).
$f(-\frac{6}{\sqrt{13}},-\frac{4}{\sqrt{13}}) \approx -6.2111$ (global minimum).