I have a function $\ f(x,y,z)=xyz$ on a set $\ M=\{x,y,z:x+y+z=3\} $ and have to find extreme values of the function on set $M$. I made Lagrange's function $$ L(x,y,z,\Lambda) =xyz+\Lambda x+\Lambda y+\Lambda z-3\Lambda$$ Then I took partial derivatives and counted points where they were all equal to zero. I got four points: $$[1,1,1] ; [3,0,0] ; [0,3,0] ; [0,0,3]$$ To find out whether there is minimum and maximum I counted Hessian matrix: $$\begin{pmatrix} 1 & z & y \\ z & 1 & x \\ y & x & 1 \\ \end{pmatrix} $$ which is indefinite all points but $[1,1,1]$ in which it's not positive, negative definite or indefinite.
How do I know whether there is an extreme value in this point ?