Newton's Method Problem: f(x) = xcosx + tan2x

kinerry

New member
Joined
Jul 7, 2006
Messages
20
Find a zero of f(x)= xcosx + tan2x on the interval (3pi/4, 5pi/4)

Would appreciate it very much if I could get the first step to start me off.
 
You do know what Newton’s method is?
We need a good guess for a seed number.
So graph the function to see an approximate a root.
In this case it appears to be about 3.7
\(\displaystyle \L
\begin{array}{rcl}
f(x) & = & x\cos (x) + \tan (2x) \\
f'(x) & = & \cos (x) - x\sin (x) + 2\sec ^2 (2x) \\
g_1 & = & 3.7 \\
g_2 & = & g_1 - \frac{{f(g_1 )}}{{f'(g_1 )}} \\
\end{array}\)
 
Yes, you have to make a good initial guess or you'll end up with a zero out of your interval.

I chose 3.6 fo this. Besides, I wanted to play around with the animation.

newton9ri.gif


Newton's Method is just interations. Find your derivative of \(\displaystyle xcos(x)+2tan(2x)\), then use the formula over and overn until the answers become very close together.
 
Too bad you can't get it to zoom in while you are doing that. :p
 
Top