There is a constraint in my program: x3 <= a1* (x1^(-alpha/2) ) * x2^(-1) , the right side has been proved to be concave when a1 is a constant and <0, alpha is a constant and > 0, x1, x2, x3 are all variables and >0 .
I tried to use pow_p(x1,-alpha/2)*pow_p(x2,-1) but CVX still cannot accept it. Is there any other way to express it?
How to express (x1^(-alpha/2) ) * x2^(-1)
Hint: 4 The power cones — MOSEK Modeling Cookbook 3.3.0 and then convert to use of CVX functions.