<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic is there one way to solve fractional programming with SAS? in Mathematical Optimization, Discrete-Event Simulation, and OR</title>
    <link>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/414896#M2073</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If we have this problem&amp;nbsp; (you can see it in&amp;nbsp;&lt;A href="https://www.slideshare.net/orajjournal/a-single-stage-single-constraints-linear-fractional-programming-problem-an-approach" target="_blank"&gt;https://www.slideshare.net/orajjournal/a-single-stage-single-constraints-linear-fractional-programming-problem-an-approach&lt;/A&gt;), can we solve with SAS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 329px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16741i12BD6B4AC71A3BF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 20 Nov 2017 16:58:07 GMT</pubDate>
    <dc:creator>dali74</dc:creator>
    <dc:date>2017-11-20T16:58:07Z</dc:date>
    <item>
      <title>is there one way to solve fractional programming with SAS?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/414896#M2073</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If we have this problem&amp;nbsp; (you can see it in&amp;nbsp;&lt;A href="https://www.slideshare.net/orajjournal/a-single-stage-single-constraints-linear-fractional-programming-problem-an-approach" target="_blank"&gt;https://www.slideshare.net/orajjournal/a-single-stage-single-constraints-linear-fractional-programming-problem-an-approach&lt;/A&gt;), can we solve with SAS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 329px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/16741i12BD6B4AC71A3BF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 16:58:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/414896#M2073</guid>
      <dc:creator>dali74</dc:creator>
      <dc:date>2017-11-20T16:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: is there one way to solve fractional programming with SAS?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/414904#M2074</link>
      <description>&lt;P&gt;There are a number ways. Take a look at:&amp;nbsp;&lt;A href="https://blogs.sas.com/content/iml/2016/12/19/solve-linear-programming-problems-sas.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2016/12/19/solve-linear-programming-problems-sas.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Art, CEO, AnalystFinder.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Nov 2017 17:30:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/414904#M2074</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2017-11-20T17:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: is there one way to solve fractional programming with SAS?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/414908#M2075</link>
      <description>&lt;P&gt;Here are three ways:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* linear fractional programming problem (NLP) */
proc optmodel;
   var x {1..2} &amp;gt;= 0;
   max z = (x[1] + 3) / (x[2] + 1);
   con c1: -x[1] + x[2] &amp;lt;= 1;
   con c2: 2*x[1] &amp;lt;= 3;
   con c3: 3*x[1] + 2*x[2] &amp;lt;= 7;
   solve;
   print x;
quit;

/* linear programming transformation from Das/Mandal paper (LP) */
proc optmodel;
   var y {1..2} &amp;gt;= 0;
   max z = y[1] - y[2] + 3;
   con c1: -y[1] + 2*y[2] &amp;lt;= 1;
   con c2: 2*y[1] &amp;lt;= 3;
   con c3: 3*y[1] + 9*y[2] &amp;lt;= 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} &amp;gt;= 0;
   var t &amp;gt;= 0;
   max z = y[1] + 3*t;
   con c1: -y[1] + y[2] &amp;lt;= t;
   con c2: 2*y[1] &amp;lt;= 3*t;
   con c3: 3*y[1] + 2*y[2] &amp;lt;= 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;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 20 Nov 2017 17:40:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/414908#M2075</guid>
      <dc:creator>RobPratt</dc:creator>
      <dc:date>2017-11-20T17:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: is there one way to solve fractional programming with SAS?</title>
      <link>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/415173#M2076</link>
      <description>&lt;P&gt;SAS/IML also can do that . If you want IML solution, post it at IML forum. Rick is there.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2017 13:34:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Mathematical-Optimization/is-there-one-way-to-solve-fractional-programming-with-SAS/m-p/415173#M2076</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2017-11-21T13:34:51Z</dc:date>
    </item>
  </channel>
</rss>

