PirateCat said:
Use Newton's Method to approximate a critical number of the function $$\displaystyle f(x) = \frac{1}{2} x^8 + \frac{6}{5} x ^5+ 2 x +10$$ near the point $$ x = 2 $$. Use $$ x_1 = 2 $$ as the initial approximation. Find the next two approximations, x_2 and x_3, to four decimal places each.I have been working on this problem and made f(x) a derivative and then use 2 as the initial approximation, but the math website keeps telling me it is wrong. I do not understand what it means by "critical number" when it comes to the Newton's Method. Any help would be greatly appreciated, thank you!
Hi PirateCat! Welcome to MHB! ;)
I'm assuming that a
critical number is the same thing as a
critical point.
That is where the derivative is zero.
However, Newton's method (actually the
Newton-Raphson method) finds a zero.
Can it be that we're supposed to take the derivative and then find the zero?
\begin{tikzpicture}[>=stealth, xscale=5, font=\large, scale=0.5]
\foreach \i in {-1,0,1,2} {%
\draw (\i,.1) -- (\i,-.1) node[below] {$\i$};%
}
\foreach \i in {-5,0,5,10,15} {%
\draw (.1,\i) -- (-.1,\i) node
{$\i$};%
}
\draw[->] (-1.7,0) -- (2.2,0) node
{$x$};
\draw[->] (0,-6) -- (0,16) node[above] {$y$};
\draw[domain=-1.5:1.1, smooth, variable=\x, ultra thick, blue] plot ({\x},{1/2 * (\x)^8 + 6/5*(\x)^5 + 2*(\x) + 10}) node
{$y=f(x)$};
\draw[domain=-1.3:1.0, smooth, variable=\x, ultra thick, red] plot ({\x},{4 * (\x)^7 + 6*(\x)^4 + 2}) node
{$y=f'(x)$};
\end{tikzpicture}
Which approximations did you find? (Wondering)