I am to check for max & min values for the given function $$f(x, y, z) = xy^2z^3$$ which is defined on $$M = \left\{x, y, z > 0, x+2y+3z=6\right\}$$
So.. what I did is:
$F(x, y, z, \gamma) = xy^2z^3 - \gamma(x+2y+3z-6)$ therefore $\begin{cases} \frac{\partial F}{\partial x} = y^2z^3 - \gamma = 0\\ \frac{\partial F}{\partial y} = 2xyz^3-2\gamma = 0\\ \frac{\partial F}{\partial z} = 3xy^2z^2 -3\gamma = 0\\ \frac{\partial F}{\partial \gamma} = -x-2y-3z+6 = 0\\ \end{cases}$
After the calculation I get the possible point is $P = (1, 1, 1)$. So I count the 2nd derivatives : $$\left[\begin{array}{ccc} \frac{\partial^2 f}{\partial x^2} = 0 &\frac{\partial^2 f}{\partial x\partial y} = 2yz^3 &\frac{\partial^2 f}{\partial x\partial z} = 3y^2z^2 \\ \frac{\partial^2 f}{\partial y \partial x} = 2yz^3 &\frac{\partial^2 f}{\partial y^2} = 2xz^3 &\frac{\partial^2 f}{\partial y\partial z} = 6xyz^2 \\ \frac{\partial^2 f}{\partial z \partial x} = 3y^2z^2 &\frac{\partial^2 f}{\partial z \partial y} = 6xyz^2 &\frac{\partial^2 f}{\partial z^2} = 6xy^2z \end{array}\right]$$
So with our point P it looks like : $$\left[\begin{array}{ccc} 0&2&3\\ 2&2&6\\ 3&6&6 \end{array}\right]$$
And here's where I got lost. $\det_{1} = 0$ therefore we have no idea whether there is an extremum or not, but Wolfram says there's a local maximum in $(1, 1, 1)$. How should I obtain it?
