Newton's method
Applies to: general, python, fortran
Newton's method finds roots by repeatedly following the tangent-line correction.
x = x - f(x) / fp(x)
See also: root-finding, gradient
Applies to: general, python, fortran
Newton's method finds roots by repeatedly following the tangent-line correction.
x = x - f(x) / fp(x)
See also: root-finding, gradient