The problem is as follows:
$$\min_{x,y} x + y$$
subject to
$$xy = 0.25$$
My attempt:
I used the method of Lagrange multipliers here setting
$f(x,y) = x + y$ and $g(x,y) = xy - 0.25 = 0$
So we have $\nabla f = \lambda \nabla f$
$\implies 1 = \lambda y$, and $1 = \lambda x$
$\implies x = y$ and from the constraint we get:
$x^2 = 0.25 \implies x = \pm \sqrt{0.25} = y$
Clearly we choose $x = y = - \sqrt{0.25}$ to minimize the function.
However, I checked this minimization problem with Wolfram Alpha and it says no global minima where found. Why is this and where did I go wrong? Thanks!
