How would you prove that Newton's Method applied to $f(x) = ax + b$ converges in one step? Would it be because the derivative of $f(x)$ is simply $a$?
Asked
Active
Viewed 1,704 times
1 Answers
4
Write down the formula $$N(x) = x-\frac{f(x)}{f'(x)}$$ for this specific function and simplify.
In the course of that procedure, you will certainly use the fact that $f'(x)=a$.
Mark McClure
- 30,510
-
So, it would just converge to b/a after one step, correct? – Jesus Jan 23 '14 at 19:28
-
If the expression simplifies to just a constant then, yes, the convergence takes just one step. However, the constant should be the root, which is $-b/a$. – Mark McClure Jan 23 '14 at 19:37