linearization of power function

Problems with syntax of GAMS
Post Reply
Rofice
User
User
Posts: 28
Joined: 6 years ago

linearization of power function

Post by Rofice »

Hi,
I am facing problem in linearizing the below non-separable function. Any suggestions for linearization of the con_1 ??

Best Regards,
Rofice

variable
c ;
positive Variable
x,y;
integer variable
z;

equation
con_1,con_2;

con_1.. x =e= y**z;
con_2.. c =e= 3*x ;

y.up = 3;
z.lo = 1;
z.up = 4;

model m /all/
solve m maximizing c using mip;
Manassaldi
User
User
Posts: 118
Joined: 7 years ago
Location: Rosario - Argentina

Re: linearization of power function

Post by Manassaldi »

I think you should linearize the 4 possibilities and then using a binary variable to select one.
four possibilities: y^1 (linear) y^2 (non linear and convex) y^3 (non linear and convex) and y^4 (non linear and convex)
bye
Post Reply