Usually for function of two variable checking the convexity of a constraint is quite simple since we just need to compute the Hessian. In this case, I am running into a problem where my constraint is a function of four non negative variable ${w_1},{w_2},\alpha ,\eta $ that is
$$w_1^2 + w_2^2 - w_2^2\alpha + 1 \ge \eta $$
$$f\left( {{w_1},{w_2},\alpha ,n} \right) = w_1^2 + w_2^2 - w_2^2\alpha + 1 - n \ge 0$$
The Hessian is
$$H = \left[ {\begin{array}{*{20}{c}} 2&0&0&0\\ 0&{2 - 2a}&{ - 2{w_2}}&0\\ 0&{ - 2{w_2}}&0&0\\ 0&0&0&0 \end{array}} \right]$$
And the corresponding eigen value is
$\begin{array}{*{20}{c}} {{\lambda _1} = 0}\\ {{\lambda _2} = 2}\\ {{\lambda _3} = \sqrt {{a^2} - 2a + 4w_2^2 + 1} - a + 1}\\ {{\lambda _4} = 1 - \sqrt {{a^2} - 2a + 4w_2^2 + 1} - a} \end{array}$
How to check for the convexity of such function (convex, concave or neither)?