<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, linear programming</title>
    <link>http://www.mapleprimes.com/questions/80848-Linear-Programming</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 12 Jun 2026 01:35:26 GMT</lastBuildDate>
    <pubDate>Fri, 12 Jun 2026 01:35:26 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, linear programming</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, linear programming</title>
      <link>http://www.mapleprimes.com/questions/80848-Linear-Programming</link>
    </image>
    <item>
      <title>ok thank you. Does there</title>
      <link>http://www.mapleprimes.com/questions/80848-Linear-Programming?ref=Feed:MaplePrimes:linear programming:Comments#answer81119</link>
      <itunes:summary>&lt;p&gt;ok thank you. Does there exist any alternative methods ? &lt;br /&gt;
I read something about introducing an auxiliary variable&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;ok thank you. Does there exist any alternative methods ? &lt;br /&gt;
I read something about introducing an auxiliary variable&lt;/p&gt;</description>
      <guid>81119</guid>
      <pubDate>Sun, 02 May 2010 22:41:14 Z</pubDate>
      <itunes:author>alex_01</itunes:author>
      <author>alex_01</author>
    </item>
    <item>
      <title>Reduced problem</title>
      <link>http://www.mapleprimes.com/questions/80848-Linear-Programming?ref=Feed:MaplePrimes:linear programming:Comments#answer81120</link>
      <itunes:summary>&lt;p&gt;It is well known that this problem can be reduced to the following problem of linear programming:&lt;/p&gt;
&lt;p&gt;maximize f=x1+x2+x3&lt;/p&gt;
&lt;p&gt;under the constraints&lt;/p&gt;
&lt;p&gt;3*x1+2*x2+3*x3&amp;lt;=1, x1+4*x2+6*x3&amp;lt;=1, 3*x1+5*x2+x3&amp;lt;=1, xj&amp;gt;=0,j=1..3.&lt;/p&gt;
&lt;p&gt;Here is its solution by Maple 13:&lt;/p&gt;
&lt;p&gt;&amp;gt; with(simplex):&lt;/p&gt;
&lt;p&gt;&amp;gt; maximize(x1+x2+x3,{3*x1+2*x2+3*x3&amp;lt;=1,x1+4*x2+6*x3&amp;lt;=1,3*x1+5*x2+x3&amp;lt;=1},NONNEGATIVE);.&lt;/p&gt;
&lt;p&gt;The output is {x1=13/65,x2=4/65,x3=6/65}, the probability p1=x1/(x1+x2+x3)=0.56522.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;It is well known that this problem can be reduced to the following problem of linear programming:&lt;/p&gt;
&lt;p&gt;maximize f=x1+x2+x3&lt;/p&gt;
&lt;p&gt;under the constraints&lt;/p&gt;
&lt;p&gt;3*x1+2*x2+3*x3&amp;lt;=1, x1+4*x2+6*x3&amp;lt;=1, 3*x1+5*x2+x3&amp;lt;=1, xj&amp;gt;=0,j=1..3.&lt;/p&gt;
&lt;p&gt;Here is its solution by Maple 13:&lt;/p&gt;
&lt;p&gt;&amp;gt; with(simplex):&lt;/p&gt;
&lt;p&gt;&amp;gt; maximize(x1+x2+x3,{3*x1+2*x2+3*x3&amp;lt;=1,x1+4*x2+6*x3&amp;lt;=1,3*x1+5*x2+x3&amp;lt;=1},NONNEGATIVE);.&lt;/p&gt;
&lt;p&gt;The output is {x1=13/65,x2=4/65,x3=6/65}, the probability p1=x1/(x1+x2+x3)=0.56522.&lt;/p&gt;</description>
      <guid>81120</guid>
      <pubDate>Sun, 02 May 2010 22:42:15 Z</pubDate>
      <itunes:author>hirnyk</itunes:author>
      <author>hirnyk</author>
    </item>
    <item>
      <title>Auxiliary variables and another method</title>
      <link>http://www.mapleprimes.com/questions/80848-Linear-Programming?ref=Feed:MaplePrimes:linear programming:Comments#comment86968</link>
      <itunes:summary>&lt;p&gt;In fact, x1,x2, and x3 are auxiliary variables.&lt;/p&gt;
&lt;p&gt;I also tried to solve the irreduced problem by Optimization, but unsuccessfully.&lt;/p&gt;
&lt;p&gt;Here is an attempt:&lt;/p&gt;
&lt;p&gt;&amp;gt; with(Optimization):&lt;/p&gt;
&lt;p&gt;&amp;gt; NLPSolve( min(E1, E2, E3),&lt;/p&gt;
&lt;p&gt;&amp;nbsp;{E1 = 3*p1 + p2 + 3*p3, E2 = 2*p1 + 4*p2 + 5*p3,E3 = 3*p1 + 6*p2 + 1*p3,&lt;/p&gt;
&lt;p&gt;p1+p2+p3=1,p1&amp;lt;=1,p2&amp;lt;=1,p3&amp;lt;=1}, assume = nonnegative,maximize);&lt;/p&gt;
&lt;p&gt;Error, (in Optimization:-NLPSolve) unable to compare -E3+E2 and 0)&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In fact, x1,x2, and x3 are auxiliary variables.&lt;/p&gt;
&lt;p&gt;I also tried to solve the irreduced problem by Optimization, but unsuccessfully.&lt;/p&gt;
&lt;p&gt;Here is an attempt:&lt;/p&gt;
&lt;p&gt;&amp;gt; with(Optimization):&lt;/p&gt;
&lt;p&gt;&amp;gt; NLPSolve( min(E1, E2, E3),&lt;/p&gt;
&lt;p&gt;&amp;nbsp;{E1 = 3*p1 + p2 + 3*p3, E2 = 2*p1 + 4*p2 + 5*p3,E3 = 3*p1 + 6*p2 + 1*p3,&lt;/p&gt;
&lt;p&gt;p1+p2+p3=1,p1&amp;lt;=1,p2&amp;lt;=1,p3&amp;lt;=1}, assume = nonnegative,maximize);&lt;/p&gt;
&lt;p&gt;Error, (in Optimization:-NLPSolve) unable to compare -E3+E2 and 0)&lt;/p&gt;</description>
      <guid>86968</guid>
      <pubDate>Sun, 02 May 2010 23:15:43 Z</pubDate>
      <itunes:author>hirnyk</itunes:author>
      <author>hirnyk</author>
    </item>
  </channel>
</rss>