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.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top