Linear Function and Newton's Method

117 Views Asked by At

I want to show that if a function is linear for example F(x) = 3x + 3, then after one iteration of Newton's method I can find the x-value such that F(x) = 0. In this case, after one iteration x = -1. I see that it works after one iteration, but how do I prove that??

1

There are 1 best solutions below

0
On

Usual setup for Newton's method:

$$f'\left(x_0\right) = \lim_{x \rightarrow x_0} \frac{f\left(x\right) - f\left(x_0\right)}{x-x_0}$$

Look for intersections, i.e. $f\left(x\right)=0$:

$$x = x_0 - \frac{f\left(x_0\right)}{f'\left(x_0\right)}$$

Now stray from the general case and suppose $f\left(x\right)$ is linear, as in $f\left(x\right) = mx+b$, so $f'\left(x\right) = m$. Then,

$$x = x_0 - \frac{mx_0 + b}{m} = x_0 - x_0 - \frac{b}{m} = - \frac{b}{m}$$

... and you have just $-b/m$ after one iteration.