<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - comments on Post, Plotting multiple systems ?superimposed? onto each other</title>
    <link>http://www.mapleprimes.com/posts/40865-Plotting-Multiple-Systems-superimposed</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Wed, 10 Jun 2026 20:05:58 GMT</lastBuildDate>
    <pubDate>Wed, 10 Jun 2026 20:05:58 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest comments added to the Post, Plotting multiple systems ?superimposed? onto each other</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - comments on Post, Plotting multiple systems ?superimposed? onto each other</title>
      <link>http://www.mapleprimes.com/posts/40865-Plotting-Multiple-Systems-superimposed</link>
    </image>
    <item>
      <title>More information, please</title>
      <link>http://www.mapleprimes.com/posts/40865-Plotting-Multiple-Systems-superimposed?ref=Feed:MaplePrimes:Plotting multiple systems ?superimposed? onto each other:Comments#comment75725</link>
      <itunes:summary>I can see some problems with your code, but need more information to completely resolve your problems.

The main information I need is the definition of eqn.

From the error message you included it appears to me that you did not execute the definition of plot1.

The only outright error I see in your code is that plot2 is not a plot, it's just a function. You probably want something like:

&lt;pre&gt;
plot2 := plot( 1/2*x^2, x=-0.25..0.25 ):
&lt;/pre&gt;

Here's a template for you to use.

&lt;pre&gt;
restart;
with( plots ):
with( DEtools ):
eqn := diff(y(x),x)=y(x);  # replace with the correct ODE
plot1 := phaseportrait(eqn, y(x), x=-0.25..0.25,
                       [[y(-1/2)=2],[y(3/2)=0]],
                       titlefont=[TIMES,ROMAN,18],
                       title=`Sec 2.1 #17`,
                       color=grey, linecolor=[red,blue]):
plot2 := plot( (1/2)*x^2, x=-0.25..0.25, color=green ):
display([plot1,plot2]);
&lt;/pre&gt;

I hope this is helpful.

Doug
&lt;pre&gt;
---------------------------------------------------------------------
Douglas B. Meade
Math, USC, Columbia, SC 29208  E-mail: mailto:meade@math.sc.edu       
Phone:  (803) 777-6183         URL:    http://www.math.sc.edu/~meade/
&lt;/pre&gt;</itunes:summary>
      <description>The latest comments added to the Post, Plotting multiple systems ?superimposed? onto each other</description>
      <guid>75725</guid>
      <pubDate>Mon, 10 Sep 2007 17:35:14 Z</pubDate>
      <itunes:author>Doug Meade</itunes:author>
      <author>Doug Meade</author>
    </item>
    <item>
      <title>With coupled equations</title>
      <link>http://www.mapleprimes.com/posts/40865-Plotting-Multiple-Systems-superimposed?ref=Feed:MaplePrimes:Plotting multiple systems ?superimposed? onto each other:Comments#comment81750</link>
      <itunes:summary>restart; 
with(plots);
 with(DEtools); 
plot1 := phaseportrait([(D(x))(t) = x(t)+exp(-y(t)), (D(y))(t) = -y(t)], [x(t), y(t)], t = -100 .. 100, [[x(0) = 0, y(0) = 1]], x = -2 .. 2, y = -2 .. 2, titlefont = [TIMES, ROMAN, 18], title = `6.1.14`, color = grey, linecolor = [red, blue]); 
plot2 := plot(a[1]*(x(t)+1)+a[2]*(x(t)+1)^2, x = -2 .. 2, color = green); display([plot1, plot2])


The above problem only had DE, I have 2. What do I need to change in plot2 to make this work&gt;</itunes:summary>
      <description>The latest comments added to the Post, Plotting multiple systems ?superimposed? onto each other</description>
      <guid>81750</guid>
      <pubDate>Tue, 09 Feb 2010 06:07:36 Z</pubDate>
      <itunes:author>Nusc</itunes:author>
      <author>Nusc</author>
    </item>
    <item>
      <title>Set a[1] = 2 and a[2] = 4/3</title>
      <link>http://www.mapleprimes.com/posts/40865-Plotting-Multiple-Systems-superimposed?ref=Feed:MaplePrimes:Plotting multiple systems ?superimposed? onto each other:Comments#comment81749</link>
      <itunes:summary>&lt;p&gt;Set a[1] = 2 and a[2] = 4/3&lt;/p&gt;</itunes:summary>
      <description>The latest comments added to the Post, Plotting multiple systems ?superimposed? onto each other</description>
      <guid>81749</guid>
      <pubDate>Tue, 09 Feb 2010 06:08:23 Z</pubDate>
      <itunes:author>Nusc</itunes:author>
      <author>Nusc</author>
    </item>
  </channel>
</rss>