<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Finding the roots isn't so easy</title>
    <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy</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 12:32:02 GMT</lastBuildDate>
    <pubDate>Tue, 09 Jun 2026 12:32:02 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Finding the roots isn't so easy</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Finding the roots isn't so easy</title>
      <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy</link>
    </image>
    <item>
      <title>avoid</title>
      <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy?ref=Feed:MaplePrimes:Finding the roots isn't so easy:Comments#answer64983</link>
      <itunes:summary>&lt;pre&gt;
&amp;gt; r1 := fsolve(x^2/20-10*x-15*cos(x+15),x);
                               r1 := 1.274092075

&amp;gt; fsolve(x^2/20-10*x-15*cos(x+15),x=0..infinity,avoid={x=r1});
                                  200.1193789
&lt;/pre&gt;</itunes:summary>
      <description>&lt;pre&gt;
&amp;gt; r1 := fsolve(x^2/20-10*x-15*cos(x+15),x);
                               r1 := 1.274092075

&amp;gt; fsolve(x^2/20-10*x-15*cos(x+15),x=0..infinity,avoid={x=r1});
                                  200.1193789
&lt;/pre&gt;</description>
      <guid>64983</guid>
      <pubDate>Sat, 04 Jul 2009 00:28:03 Z</pubDate>
      <itunes:author>pagan</itunes:author>
      <author>pagan</author>
    </item>
    <item>
      <title>Also, RootFinding:-Analytic might be a possible approach</title>
      <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy?ref=Feed:MaplePrimes:Finding the roots isn't so easy:Comments#answer64984</link>
      <itunes:summary>&lt;code&gt;
&gt; restart;
&gt; RootFinding:-Analytic((1/20)*x^2-10*x-15*cos(x+15), x, re = -1000 .. 1000, im = -1 .. 1);
         1.27409207502708, -1.80895918513793 - 0.959196521549030 I, 

           -1.80895918513793 + 0.959196521549025 I, 200.119378915794

&lt;/code&gt;

HTH,
-- Jean-Marc</itunes:summary>
      <description>&lt;code&gt;
&gt; restart;
&gt; RootFinding:-Analytic((1/20)*x^2-10*x-15*cos(x+15), x, re = -1000 .. 1000, im = -1 .. 1);
         1.27409207502708, -1.80895918513793 - 0.959196521549030 I, 

           -1.80895918513793 + 0.959196521549025 I, 200.119378915794

&lt;/code&gt;

HTH,
-- Jean-Marc</description>
      <guid>64984</guid>
      <pubDate>Sat, 04 Jul 2009 00:37:28 Z</pubDate>
      <itunes:author>gulliet</itunes:author>
      <author>gulliet</author>
    </item>
    <item>
      <title>Student[Calculus1]</title>
      <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy?ref=Feed:MaplePrimes:Finding the roots isn't so easy:Comments#answer64986</link>
      <itunes:summary>&lt;p&gt;Use the numeric option when calling Roots, from the Student[Calculus1] package, over the range of interest.&lt;/p&gt;
&lt;p&gt;&amp;gt;restart:&lt;br /&gt;
&amp;gt;with(Student[Calculus1]):&lt;br /&gt;
&amp;gt;Roots(x^2/20-10*x-15*cos(x+15),x=0..210,numeric);&lt;maple&gt;&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;[1.274092075, 200.1193789]&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Use the numeric option when calling Roots, from the Student[Calculus1] package, over the range of interest.&lt;/p&gt;
&lt;p&gt;&amp;gt;restart:&lt;br /&gt;
&amp;gt;with(Student[Calculus1]):&lt;br /&gt;
&amp;gt;Roots(x^2/20-10*x-15*cos(x+15),x=0..210,numeric);&lt;maple&gt;&lt;/maple&gt;&lt;/p&gt;
&lt;p&gt;[1.274092075, 200.1193789]&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</description>
      <guid>64986</guid>
      <pubDate>Sat, 04 Jul 2009 00:55:42 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
    <item>
      <title>Student[Calculus1]</title>
      <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy?ref=Feed:MaplePrimes:Finding the roots isn't so easy:Comments#answer64989</link>
      <itunes:summary>&lt;p&gt;Thanks for all the options.&amp;nbsp; It seems like using Student[Calculus1] Roots seems to&amp;nbsp;be the best option.&lt;/p&gt;
&lt;p&gt;Using fsolve with avoid will still miss some roots if there are more than one root within the range.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In my opinion I think fsolve should return all roots within a specified range.&amp;nbsp; Even if I use solve, I get a RootOf answer that I can't seem to coax out the real numbers for the roots.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;solve(x^2/20-10*x-15*cox(15+x));&lt;/p&gt;
&lt;p&gt;-15 + RootOf( -300 cos(_Z) + 3225 - 230 _Z + Z^2)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;Thanks for all the options.&amp;nbsp; It seems like using Student[Calculus1] Roots seems to&amp;nbsp;be the best option.&lt;/p&gt;
&lt;p&gt;Using fsolve with avoid will still miss some roots if there are more than one root within the range.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In my opinion I think fsolve should return all roots within a specified range.&amp;nbsp; Even if I use solve, I get a RootOf answer that I can't seem to coax out the real numbers for the roots.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;solve(x^2/20-10*x-15*cox(15+x));&lt;/p&gt;
&lt;p&gt;-15 + RootOf( -300 cos(_Z) + 3225 - 230 _Z + Z^2)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>64989</guid>
      <pubDate>Sat, 04 Jul 2009 03:38:47 Z</pubDate>
      <itunes:author>Christopher2222</itunes:author>
      <author>Christopher2222</author>
    </item>
    <item>
      <title>Intersection of y=x^2-10-10*sin(x) and y=2</title>
      <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy?ref=Feed:MaplePrimes:Finding the roots isn't so easy:Comments#answer64991</link>
      <itunes:summary>&lt;p&gt;This is sort of along the same line of problem.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;a:= y=x^2-10-10*sin(x);&lt;/p&gt;
&lt;p&gt;b:=y=2;&lt;/p&gt;
&lt;p&gt;solve({a,b},{x,y});&lt;/p&gt;
&lt;p&gt;Again only returns one solution,&amp;nbsp;x as a RootOf and y=2 answer.&amp;nbsp; Using&amp;nbsp;allvalues(%) returns the same answer.&amp;nbsp; Can't get the other 3 points of intersection with a single command.&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;This is sort of along the same line of problem.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;a:= y=x^2-10-10*sin(x);&lt;/p&gt;
&lt;p&gt;b:=y=2;&lt;/p&gt;
&lt;p&gt;solve({a,b},{x,y});&lt;/p&gt;
&lt;p&gt;Again only returns one solution,&amp;nbsp;x as a RootOf and y=2 answer.&amp;nbsp; Using&amp;nbsp;allvalues(%) returns the same answer.&amp;nbsp; Can't get the other 3 points of intersection with a single command.&amp;nbsp;&lt;/p&gt;</description>
      <guid>64991</guid>
      <pubDate>Sat, 04 Jul 2009 03:56:05 Z</pubDate>
      <itunes:author>Christopher2222</itunes:author>
      <author>Christopher2222</author>
    </item>
    <item>
      <title>and if b:=cos(x)</title>
      <link>http://www.mapleprimes.com/questions/37077-Finding-The-Roots-Isnt-So-Easy?ref=Feed:MaplePrimes:Finding the roots isn't so easy:Comments#answer64999</link>
      <itunes:summary>&lt;p&gt;Using&amp;nbsp; Student[Calculus1]:-Roots(expr, x = -10 .. 10, numeric);&amp;nbsp; where expr is your new expression with b:=cos(x), you will get a diiferent set of answers.&amp;nbsp; So, to answer your question, yes it does.&amp;nbsp; Did you try it, and did it not work for you?&amp;nbsp; Below are the values that I got.&lt;/p&gt;
&lt;p&gt;[-4.367042332, -3.390886872, -1.144307303, 3.088083981]&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</itunes:summary>
      <description>&lt;p&gt;Using&amp;nbsp; Student[Calculus1]:-Roots(expr, x = -10 .. 10, numeric);&amp;nbsp; where expr is your new expression with b:=cos(x), you will get a diiferent set of answers.&amp;nbsp; So, to answer your question, yes it does.&amp;nbsp; Did you try it, and did it not work for you?&amp;nbsp; Below are the values that I got.&lt;/p&gt;
&lt;p&gt;[-4.367042332, -3.390886872, -1.144307303, 3.088083981]&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;address&gt;Regards,&lt;br /&gt;
Georgios Kokovidis&lt;/address&gt;
&lt;address&gt;Dr&amp;auml;ger Medical&lt;/address&gt;
&lt;pre&gt;

&lt;/pre&gt;</description>
      <guid>64999</guid>
      <pubDate>Sun, 05 Jul 2009 07:13:07 Z</pubDate>
      <itunes:author>gkokovidis</itunes:author>
      <author>gkokovidis</author>
    </item>
  </channel>
</rss>