I'm struggling with determining whether a function is convex/concave and quasi-convex/quasi-concave using Hessians and Bordered Hessians respectively.
As far as I understand it, a function is convex if all Hessian determinants are larger or equal to $0$, while it is concave if this is smaller or equal to $0$. For quasi, we look at the determinants of bordered hessians, and a function is quasi convex if all determinants are larger or equal to $0$, quasiconcave if $|H_1| \geq 0$, $|H_2| \leq 0$ etc.
Is this correct?
Using this, I can see why $x_1 x_2$ is quasi-concave, but it seems to me that it is concave as well. The Hessian is: $$ \begin{pmatrix} 0 &1 \\ 1 &0 \end{pmatrix} $$ so $H_1 = 0$, $H_2 = -1$, hence concave?
What's going wrong?
Cheers, Calcer