<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, fsolve doesn't solve the obvious</title>
    <link>http://www.mapleprimes.com/questions/140573-Fsolve-Doesnt-Solve-The-Obvious</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Sat, 13 Jun 2026 18:35:25 GMT</lastBuildDate>
    <pubDate>Sat, 13 Jun 2026 18:35:25 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, fsolve doesn't solve the obvious</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, fsolve doesn't solve the obvious</title>
      <link>http://www.mapleprimes.com/questions/140573-Fsolve-Doesnt-Solve-The-Obvious</link>
    </image>
    <item>
      <title>Can't download from your website</title>
      <link>http://www.mapleprimes.com/questions/140573-Fsolve-Doesnt-Solve-The-Obvious?ref=Feed:MaplePrimes:fsolve doesn't solve the obvious:Comments#answer140616</link>
      <itunes:summary>&lt;p&gt;I tried to download the files from your website, but I could not.&amp;nbsp; Maybe you could upload them directly.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Does the &lt;strong&gt;fsolve &lt;/strong&gt;work at, say, &lt;strong&gt;Digits = 15&lt;/strong&gt;?&amp;nbsp; Try using the &lt;strong&gt;fulldigits&lt;/strong&gt; option to &lt;strong&gt;fsolve&lt;/strong&gt; at your higher value of &lt;strong&gt;Digits&lt;/strong&gt;, 90.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;I tried to download the files from your website, but I could not.&amp;nbsp; Maybe you could upload them directly.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Does the &lt;strong&gt;fsolve &lt;/strong&gt;work at, say, &lt;strong&gt;Digits = 15&lt;/strong&gt;?&amp;nbsp; Try using the &lt;strong&gt;fulldigits&lt;/strong&gt; option to &lt;strong&gt;fsolve&lt;/strong&gt; at your higher value of &lt;strong&gt;Digits&lt;/strong&gt;, 90.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
      <guid>140616</guid>
      <pubDate>Tue, 20 Nov 2012 22:26:23 Z</pubDate>
      <itunes:author>Carl Love</itunes:author>
      <author>Carl Love</author>
    </item>
    <item>
      <title>The problem remains</title>
      <link>http://www.mapleprimes.com/questions/140573-Fsolve-Doesnt-Solve-The-Obvious?ref=Feed:MaplePrimes:fsolve doesn't solve the obvious:Comments#comment140654</link>
      <itunes:summary>&lt;p&gt;In the name of God&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Dear Carl,&lt;/p&gt;
&lt;p&gt;Thanks for your reply. It doesn't solve even for Digits=15 and also for fulldigits option.&lt;/p&gt;
&lt;p&gt;It may interests you, Accidently I removed this instruction&lt;/p&gt;
&lt;p&gt;wiht(Student[NumericalAnalysis]);&lt;/p&gt;
&lt;p&gt;And, ran the code again, there was no problem remained!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Again thank you for the reply&lt;/p&gt;
&lt;p&gt;Hossayni&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;In the name of God&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Dear Carl,&lt;/p&gt;
&lt;p&gt;Thanks for your reply. It doesn't solve even for Digits=15 and also for fulldigits option.&lt;/p&gt;
&lt;p&gt;It may interests you, Accidently I removed this instruction&lt;/p&gt;
&lt;p&gt;wiht(Student[NumericalAnalysis]);&lt;/p&gt;
&lt;p&gt;And, ran the code again, there was no problem remained!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Again thank you for the reply&lt;/p&gt;
&lt;p&gt;Hossayni&lt;/p&gt;</description>
      <guid>140654</guid>
      <pubDate>Wed, 21 Nov 2012 15:28:27 Z</pubDate>
      <itunes:author>hossayni</itunes:author>
      <author>hossayni</author>
    </item>
    <item>
      <title>conflicting interactions</title>
      <link>http://www.mapleprimes.com/questions/140573-Fsolve-Doesnt-Solve-The-Obvious?ref=Feed:MaplePrimes:fsolve doesn't solve the obvious:Comments#comment140693</link>
      <itunes:summary>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/140573-Fsolve-Doesnt-Solve-The-Obvious#comment140654"&gt;@hossayni&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It sounds like one package may have been redefining commands used by another package, with incompatibilities in the syntax. This is known to happen once in a while.&lt;br&gt;&lt;br&gt;I have developed the habit of NOT using: &lt;br&gt;&lt;br&gt;with(SomePackage);&lt;br&gt;SomeCommand(x);&lt;br&gt;&lt;br&gt;&lt;br&gt;and instead use either: &lt;br&gt;&lt;br&gt;SomePackage:-SomeCommand(x);&lt;br&gt;&lt;br&gt;or, if the former complains and throws an error, instead:&lt;br&gt;&lt;br&gt;SomePackage[SomeCommand](x); &lt;br&gt;&lt;br&gt;&lt;br&gt;This way you keep track of which package you have loaded and what each package does.&lt;br&gt;&lt;br&gt;Also, you can load only specific commands from a given package:&lt;br&gt;&lt;br&gt;with(SomePackage,x);&lt;br&gt;&lt;br&gt;The list of commands available for the package is generated by: with(SomePackage) ;&lt;br&gt;&lt;br&gt;Edit: removed stuff that could have been misinterpreted.&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;&lt;a href="http://www.mapleprimes.com/questions/140573-Fsolve-Doesnt-Solve-The-Obvious#comment140654"&gt;@hossayni&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It sounds like one package may have been redefining commands used by another package, with incompatibilities in the syntax. This is known to happen once in a while.&lt;br&gt;&lt;br&gt;I have developed the habit of NOT using: &lt;br&gt;&lt;br&gt;with(SomePackage);&lt;br&gt;SomeCommand(x);&lt;br&gt;&lt;br&gt;&lt;br&gt;and instead use either: &lt;br&gt;&lt;br&gt;SomePackage:-SomeCommand(x);&lt;br&gt;&lt;br&gt;or, if the former complains and throws an error, instead:&lt;br&gt;&lt;br&gt;SomePackage[SomeCommand](x); &lt;br&gt;&lt;br&gt;&lt;br&gt;This way you keep track of which package you have loaded and what each package does.&lt;br&gt;&lt;br&gt;Also, you can load only specific commands from a given package:&lt;br&gt;&lt;br&gt;with(SomePackage,x);&lt;br&gt;&lt;br&gt;The list of commands available for the package is generated by: with(SomePackage) ;&lt;br&gt;&lt;br&gt;Edit: removed stuff that could have been misinterpreted.&lt;/p&gt;</description>
      <guid>140693</guid>
      <pubDate>Thu, 22 Nov 2012 15:02:48 Z</pubDate>
      <itunes:author>PatrickT</itunes:author>
      <author>PatrickT</author>
    </item>
  </channel>
</rss>