If I have a function $f(x.y)=x^2+xy$
And I want to find out maximum, minimum or saddle points.
If I find out Hessian matrix, entries of this matrix is constant.
Then, it seems like that we can not use hessian matrix test to find out extremum points.?
Is that right?
even though stationary points exists.
The hessian of this function will be $$H=\begin{bmatrix} 1 & 1/2\\ 1/2 & 0 \end{bmatrix}$$Clearly the matrix is not positive definite (as corrected by @dawg in the comment) the eigenvalues being $1/2(1\pm\sqrt{2})$. So the stationary point $(0,0)$ that you get from the first order condition, is a saddle point.