<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, how to solve these equations ?</title>
    <link>http://www.mapleprimes.com/questions/35487-How-To-Solve-These-Equations-</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Thu, 11 Jun 2026 01:12:38 GMT</lastBuildDate>
    <pubDate>Thu, 11 Jun 2026 01:12:38 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, how to solve these equations ?</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, how to solve these equations ?</title>
      <link>http://www.mapleprimes.com/questions/35487-How-To-Solve-These-Equations-</link>
    </image>
    <item>
      <title>No real solutions</title>
      <link>http://www.mapleprimes.com/questions/35487-How-To-Solve-These-Equations-?ref=Feed:MaplePrimes:how to solve these equations ?:Comments#answer44053</link>
      <itunes:summary>&lt;p&gt;These three equations (with m=1) have no real solutions, so it's not surprising that fsolve can't find any.&amp;nbsp; However, you might try m = 1.9.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; &amp;nbsp; fsolve(eval(eqs,m=1.9), {x1 = 0 .. 1, x2 = 0 .. 1, x3 = 0 .. 1});
&lt;/pre&gt;
&lt;p&gt;{x1 = .1320826971, x2 = .9721759684, x3 = .7957413345}&lt;/p&gt;
&lt;p&gt;This doesn't have x1,x2 and x3 in the right order, but by symmetry you can permute the values so that x3 &amp;lt;= x2 &amp;lt;= x1.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;For the plot, you could try something like this (but it won't give you the interval of m values you mentioned):&lt;/p&gt;
&lt;pre&gt;
&amp;gt; pts:= NULL: 
  for X3 from 0 to 1 by 0.01 do
 &amp;nbsp;&amp;nbsp; R:= fsolve({-3*x1+4*x1^3-3*x2+4*x2^3-3*X3+4*X3^3 = 0, 
         5*x1-20*x1^3+16*x1^5+5*x2-20*x2^3+16*x2^5+5*X3-20*X3^3+16*X3^5 = 0},
        {x1=X3..1,x2=X3..1});
&amp;nbsp; &amp;nbsp; if type(R,set) then 
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; X2:= min(map(rhs,R));
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; X1:= max(map(rhs,R));&amp;nbsp;&amp;nbsp; 
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; M1:= X1 + X2 + X3;
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pts:= pts, [X1,M1],[X2,M1],[X3,M1];
 &amp;nbsp;&amp;nbsp; end if
  end do:
&amp;nbsp; plots[pointplot]([pts]);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;These three equations (with m=1) have no real solutions, so it's not surprising that fsolve can't find any.&amp;nbsp; However, you might try m = 1.9.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;pre&gt;
&amp;gt; &amp;nbsp; fsolve(eval(eqs,m=1.9), {x1 = 0 .. 1, x2 = 0 .. 1, x3 = 0 .. 1});
&lt;/pre&gt;
&lt;p&gt;{x1 = .1320826971, x2 = .9721759684, x3 = .7957413345}&lt;/p&gt;
&lt;p&gt;This doesn't have x1,x2 and x3 in the right order, but by symmetry you can permute the values so that x3 &amp;lt;= x2 &amp;lt;= x1.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;For the plot, you could try something like this (but it won't give you the interval of m values you mentioned):&lt;/p&gt;
&lt;pre&gt;
&amp;gt; pts:= NULL: 
  for X3 from 0 to 1 by 0.01 do
 &amp;nbsp;&amp;nbsp; R:= fsolve({-3*x1+4*x1^3-3*x2+4*x2^3-3*X3+4*X3^3 = 0, 
         5*x1-20*x1^3+16*x1^5+5*x2-20*x2^3+16*x2^5+5*X3-20*X3^3+16*X3^5 = 0},
        {x1=X3..1,x2=X3..1});
&amp;nbsp; &amp;nbsp; if type(R,set) then 
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; X2:= min(map(rhs,R));
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; X1:= max(map(rhs,R));&amp;nbsp;&amp;nbsp; 
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; M1:= X1 + X2 + X3;
 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; pts:= pts, [X1,M1],[X2,M1],[X3,M1];
 &amp;nbsp;&amp;nbsp; end if
  end do:
&amp;nbsp; plots[pointplot]([pts]);&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&lt;/pre&gt;</description>
      <guid>44053</guid>
      <pubDate>Thu, 18 Mar 2010 04:47:02 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>SMALL Question</title>
      <link>http://www.mapleprimes.com/questions/35487-How-To-Solve-These-Equations-?ref=Feed:MaplePrimes:how to solve these equations ?:Comments#answer44055</link>
      <itunes:summary>&lt;p&gt;To refresh&amp;nbsp; my knowledge of MAPLE I was trying to reproduce the examples explained in this query.&lt;/p&gt;
&lt;p&gt;But ,&amp;nbsp; I cant.&amp;nbsp; With which versions of MAPLE should work those examples?&amp;nbsp; I have the old Maple10.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;JJ&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;To refresh&amp;nbsp; my knowledge of MAPLE I was trying to reproduce the examples explained in this query.&lt;/p&gt;
&lt;p&gt;But ,&amp;nbsp; I cant.&amp;nbsp; With which versions of MAPLE should work those examples?&amp;nbsp; I have the old Maple10.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;JJ&lt;/p&gt;</description>
      <guid>44055</guid>
      <pubDate>Sun, 28 Mar 2010 12:43:45 Z</pubDate>
      <itunes:author>Jean Jacques</itunes:author>
      <author>Jean Jacques</author>
    </item>
    <item>
      <title>intersectplot</title>
      <link>http://www.mapleprimes.com/questions/35487-How-To-Solve-These-Equations-?ref=Feed:MaplePrimes:how to solve these equations ?:Comments#comment44054</link>
      <itunes:summary>&lt;p&gt;A better way:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; plottools[transform]((x,y,z) -&amp;gt; [x,x+y+z])
   (plots[intersectplot](-3*x1+4*x1^3-3*x2+4*x2^3-3*x3+4*x3^3,
           5*x1-20*x1^3+16*x1^5+5*x2-20*x2^3+16*x2^5+5*x3-20*x3^3+16*x3^5,
    x1=0..1, x2=0..1, x3=0..1));

&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;A better way:&lt;/p&gt;
&lt;pre&gt;
&amp;gt; plottools[transform]((x,y,z) -&amp;gt; [x,x+y+z])
   (plots[intersectplot](-3*x1+4*x1^3-3*x2+4*x2^3-3*x3+4*x3^3,
           5*x1-20*x1^3+16*x1^5+5*x2-20*x2^3+16*x2^5+5*x3-20*x3^3+16*x3^5,
    x1=0..1, x2=0..1, x3=0..1));

&lt;/pre&gt;</description>
      <guid>44054</guid>
      <pubDate>Thu, 18 Mar 2010 06:17:09 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
    <item>
      <title>fsolve and intersectplot</title>
      <link>http://www.mapleprimes.com/questions/35487-How-To-Solve-These-Equations-?ref=Feed:MaplePrimes:how to solve these equations ?:Comments#comment44056</link>
      <itunes:summary>&lt;p&gt;The &lt;b&gt;fsolve&lt;/b&gt; examples should work just as well with Maple 10.&amp;nbsp; However, &lt;b&gt;intersectplot&lt;/b&gt; was introduced in Maple 11.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;The &lt;b&gt;fsolve&lt;/b&gt; examples should work just as well with Maple 10.&amp;nbsp; However, &lt;b&gt;intersectplot&lt;/b&gt; was introduced in Maple 11.&lt;/p&gt;</description>
      <guid>44056</guid>
      <pubDate>Sun, 28 Mar 2010 23:55:05 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>