<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
  <channel>
    <title>MaplePrimes - answers and comments on Question, Newton's Method in Maple</title>
    <link>http://www.mapleprimes.com/questions/127237-Newtons-Method-In-Maple</link>
    <language>en-us</language>
    <copyright>2026 Maplesoft, A Division of Waterloo Maple Inc.</copyright>
    <generator>Maplesoft Document System</generator>
    <lastBuildDate>Fri, 12 Jun 2026 06:21:07 GMT</lastBuildDate>
    <pubDate>Fri, 12 Jun 2026 06:21:07 GMT</pubDate>
    <itunes:subtitle />
    <itunes:summary />
    <description>The latest answers and comments added to the Question, Newton's Method in Maple</description>
    <image>
      <url>http://www.mapleprimes.com/images/mapleprimeswhite.jpg</url>
      <title>MaplePrimes - answers and comments on Question, Newton's Method in Maple</title>
      <link>http://www.mapleprimes.com/questions/127237-Newtons-Method-In-Maple</link>
    </image>
    <item>
      <title>Not quite right</title>
      <link>http://www.mapleprimes.com/questions/127237-Newtons-Method-In-Maple?ref=Feed:MaplePrimes:Newton's Method in Maple:Comments#answer127256</link>
      <itunes:summary>&lt;p&gt;There are several things wrong with your&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;G:= x-&amp;gt; x - (F)/(Fd);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Your F is a function, so you'd need F(x) rather than (F).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; On the other hand, Fd is an expression, and while it contains x that is not the x that is the formal parameter of G.&amp;nbsp; You can use unapply to make an expression into a function.&amp;nbsp; Thus:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;G:= unapply(x - F(x)/Fd, x);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Now G is a function, and you use it like any other function, by putting its argument(s) in parentheses after the G.&amp;nbsp; Thus you could say&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;x[1]:= evalf(G(x[0]));&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;and similarly in your loop&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;x[i]:= evalf(G(x[i-1]));&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Finally,&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span class="mainBody document"&gt;&lt;strong&gt;print(accuracy not reached)&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;won't work because you need quotes " " around a string.&amp;nbsp; It could be&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;print("accuracy not reached")&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;</itunes:summary>
      <description>&lt;p&gt;There are several things wrong with your&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;G:= x-&amp;gt; x - (F)/(Fd);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Your F is a function, so you'd need F(x) rather than (F).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; On the other hand, Fd is an expression, and while it contains x that is not the x that is the formal parameter of G.&amp;nbsp; You can use unapply to make an expression into a function.&amp;nbsp; Thus:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;G:= unapply(x - F(x)/Fd, x);&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Now G is a function, and you use it like any other function, by putting its argument(s) in parentheses after the G.&amp;nbsp; Thus you could say&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;x[1]:= evalf(G(x[0]));&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;and similarly in your loop&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;x[i]:= evalf(G(x[i-1]));&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Finally,&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;&lt;span class="mainBody document"&gt;&lt;strong&gt;print(accuracy not reached)&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;won't work because you need quotes " " around a string.&amp;nbsp; It could be&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;print("accuracy not reached")&lt;br&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <guid>127256</guid>
      <pubDate>Tue, 01 Nov 2011 07:55:51 Z</pubDate>
      <itunes:author>Robert Israel</itunes:author>
      <author>Robert Israel</author>
    </item>
  </channel>
</rss>