What could be going wrong with my Newton's method?

  • Thread starter Thread starter robierob
  • Start date Start date
  • Tags Tags
    Method Newtons
robierob
Messages
11
Reaction score
0
so I was helping my friend today and ran into a problem.

the problem was to use Newtons method to approx. the intersection points of two graphs.

f=x^2
g=cosx

so I subtracted f-g, found the derivative and pluged in some guesses.

Except all of my guesses just blew upwards in values instead of zooming in on a point. what's the deal?

Rob
 
Physics news on Phys.org
Your guesses were too far from the root. To ensure convergence, the distance between your initial guess and the root has to be less than 2 \delta \over M where

|f'(x)| \geq \delta > 0

|f''(x)| \leq M

for all x \epsilon [a,b] in the interval [a,b] you're considering
 
Last edited:
Your totally right. Thats one tight interval to make a guess for though. I was only about .2 away from a working guess. Thanks
 
Hi Robierob,

When u compute f(x)-g(x), u should get x² - cos x on which u can apply Newton's method. Actually u can ensure that your guess is not far from the actual root by finding when your function changes from positive to negative or vice versa. There will be a root when the function changes sign provided that it is continuous for the interval where the root lies. For example, there is a root between x=a and x=b when a and b are consecutive and f(a) f(b) < 0. U can deduce the values of a and b by substitution and use a starting value between a and b for your approximation. That should help u arrive at your root quickly.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top