<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Put the solutions of an equation into a list</title>
    <link>http://www.mapleprimes.com/questions/139556-Put-The-Solutions-Of-An-Equation-Into-A-List</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Tue, 09 Jun 2026 09:31:25 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 09:31:25 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Put the solutions of an equation into a list</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Put the solutions of an equation into a list</title>
      <link>http://www.mapleprimes.com/questions/139556-Put-The-Solutions-Of-An-Equation-Into-A-List</link>
    </image>
    <item>
      <title>if there is no [] in the result, you should use convert(</title>
      <link>http://www.mapleprimes.com/questions/139556-Put-The-Solutions-Of-An-Equation-Into-A-List?ref=Feed:MaplePrimes:Put the solutions of an equation into a list:Comments#answer139579</link>
      <itunes:summary>&lt;p&gt;if there is no [] in the result, you should use convert([(1)],list), otherwise you&amp;nbsp;need not add the [] in the command.&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;if there is no [] in the result, you should use convert([(1)],list), otherwise you&amp;nbsp;need not add the [] in the command.&amp;nbsp;&lt;/p&gt;</description>
      <guid>139579</guid>
      <pubDate>Sat, 10 Nov 2012 22:20:26 Z</pubDate>
      <itunes:author>zsy312</itunes:author>
      <author>zsy312</author>
    </item>
    <item>
      <title>list with no particular order</title>
      <link>http://www.mapleprimes.com/questions/139556-Put-The-Solutions-Of-An-Equation-Into-A-List?ref=Feed:MaplePrimes:Put the solutions of an equation into a list:Comments#answer139628</link>
      <itunes:summary>&lt;p&gt;Not sure exactly what you mean. It depends on how you use solve. Say you have a quadratic with 2 solutions.&lt;/p&gt;
&lt;p&gt;sol := [solve(x^2+x+1,x)];&lt;br&gt;sol[1];&lt;br&gt;sol[2];&lt;/p&gt;
&lt;p&gt;As far as I know the order of the solutions is not necessarily consistent across worksheet executions, so you do get a list but the order of the list could change from one time to the next.&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Not sure exactly what you mean. It depends on how you use solve. Say you have a quadratic with 2 solutions.&lt;/p&gt;
&lt;p&gt;sol := [solve(x^2+x+1,x)];&lt;br&gt;sol[1];&lt;br&gt;sol[2];&lt;/p&gt;
&lt;p&gt;As far as I know the order of the solutions is not necessarily consistent across worksheet executions, so you do get a list but the order of the list could change from one time to the next.&amp;nbsp;&lt;/p&gt;</description>
      <guid>139628</guid>
      <pubDate>Sun, 11 Nov 2012 00:31:59 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
    <item>
      <title>Reading Maple Help</title>
      <link>http://www.mapleprimes.com/questions/139556-Put-The-Solutions-Of-An-Equation-Into-A-List?ref=Feed:MaplePrimes:Put the solutions of an equation into a list:Comments#answer139637</link>
      <itunes:summary>&lt;p&gt;&amp;nbsp;Up to &lt;a href='http://www.maplesoft.com/support/help/search.aspx?term=solve' target='_new'&gt;?solve&lt;/a&gt; ,&amp;nbsp; if the second argument is a list, then the solutions are returned as a list. For example,&lt;/p&gt;
&lt;p&gt;&amp;gt; solve(x^2-1, [x]);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [[x = 1], [x = -1]]&lt;br&gt;&lt;br&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&amp;nbsp;Up to &lt;a href='http://www.maplesoft.com/support/help/search.aspx?term=solve' target='_new'&gt;?solve&lt;/a&gt; ,&amp;nbsp; if the second argument is a list, then the solutions are returned as a list. For example,&lt;/p&gt;
&lt;p&gt;&amp;gt; solve(x^2-1, [x]);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [[x = 1], [x = -1]]&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description>
      <guid>139637</guid>
      <pubDate>Sun, 11 Nov 2012 01:07:10 Z</pubDate>
      <itunes:author>Markiyan Hirnyk</itunes:author>
      <author>Markiyan Hirnyk</author>
    </item>
    <item>
      <title>I found a way to do it</title>
      <link>http://www.mapleprimes.com/questions/139556-Put-The-Solutions-Of-An-Equation-Into-A-List?ref=Feed:MaplePrimes:Put the solutions of an equation into a list:Comments#answer139852</link>
      <itunes:summary>&lt;p&gt;I also found a way to do it by just putting [ ] around the Maple output. The reason for having the solutions as a list was that I wanted to&amp;nbsp;plot the solutions in the complex plane.&amp;nbsp;Thanks a lot for your replies!&amp;nbsp;I appreciate it.&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="/view.aspx?sf=139852/447052/solutions.png"&gt;&lt;img src="/view.aspx?sf=139852/447052/solutions.png" alt="" width="475" height="378"&gt;&lt;/a&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I also found a way to do it by just putting [ ] around the Maple output. The reason for having the solutions as a list was that I wanted to&amp;nbsp;plot the solutions in the complex plane.&amp;nbsp;Thanks a lot for your replies!&amp;nbsp;I appreciate it.&lt;/p&gt;
&lt;p&gt;Erik&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="/view.aspx?sf=139852/447052/solutions.png"&gt;&lt;img src="/view.aspx?sf=139852/447052/solutions.png" alt="" width="475" height="378"&gt;&lt;/a&gt;&lt;/p&gt;</description>
      <guid>139852</guid>
      <pubDate>Sun, 11 Nov 2012 17:42:26 Z</pubDate>
      <itunes:author>erik10</itunes:author>
      <author>erik10</author>
    </item>
  </channel>
</rss>