In Newton's method, if the residual delta x is iteratively updated ($X \leftarrow X + \Delta x$) at fixed slope, does it converge?
In newton's method, the estimation of X should be done iteratively. In each iteration the derivative (slope) of a function, the residual are calculated and used to update X. My question is if what will happen if we performed the derivative only one time.
More precisely, assume the following: f(X)=A+B my target is to estimate X
solution 1::
- outer loop calculate the slope of f(X)
- inner loop
- ----calculate A
- ----calculate B
- ----calculate delta x using f(x), A, B and the slope
- end inner loop
- X=X+ delta x
- end outer loop
solution 2::
- loop
- calculate the slope of f(X)
- calculate A
- calculate B
- calculate delta x using f(x), A, B and the slope
- X = X + delta x
- end loop
does the accuracy of X in both cases similar? and why?