BookmarkSubscribeRSS Feed
3 REPLIES 3
art297
Opal | Level 21

There are a number ways. Take a look at: https://blogs.sas.com/content/iml/2016/12/19/solve-linear-programming-problems-sas.html

 

Art, CEO, AnalystFinder.com

 

RobPratt
SAS Super FREQ

Here are three ways:

/* linear fractional programming problem (NLP) */
proc optmodel;
   var x {1..2} >= 0;
   max z = (x[1] + 3) / (x[2] + 1);
   con c1: -x[1] + x[2] <= 1;
   con c2: 2*x[1] <= 3;
   con c3: 3*x[1] + 2*x[2] <= 7;
   solve;
   print x;
quit;

/* linear programming transformation from Das/Mandal paper (LP) */
proc optmodel;
   var y {1..2} >= 0;
   max z = y[1] - y[2] + 3;
   con c1: -y[1] + 2*y[2] <= 1;
   con c2: 2*y[1] <= 3;
   con c3: 3*y[1] + 9*y[2] <= 7;
   solve;
   print y;
quit;

/* linear programming problem from Charnes/Cooper transformation (LP) */
/* https://en.wikipedia.org/wiki/Linear-fractional_programming#Transformation_to_a_linear_program */
proc optmodel;
   var y {1..2} >= 0;
   var t >= 0;
   max z = y[1] + 3*t;
   con c1: -y[1] + y[2] <= t;
   con c2: 2*y[1] <= 3*t;
   con c3: 3*y[1] + 2*y[2] <= 7*t;
   con c4: y[2] + t = 1;
   solve;
   print y;
   impvar x {j in 1..2} = y[j].sol / t.sol;
   print x;
quit;
Ksharp
Super User

SAS/IML also can do that . If you want IML solution, post it at IML forum. Rick is there.

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 948 views
  • 0 likes
  • 4 in conversation