Learn Before
Concept

Newton's Method

Newton’s method is based on using a second-order Taylor series expansion to approximate f(x)f(x) near point x(0)x^{(0)}: f(x)f(x(0))+(xx(0))Txf(x(0))+12(xx(0))TH(f)(x(0))(xx(0))f(x) \approx f(x^{(0)}) + (x-x^{(0)})^T \bigtriangledown _x f(x^{(0)}) + \frac{1}{2}(x-x^{(0)})^TH(f)(x^{(0)})(x-x^{(0)}) We can solve it for the critical point and get: x=x(0)H(f)(x(0))1xf(x(0))x^* = x^{(0)} - H(f)(x^{(0)})^{-1}\bigtriangledown_xf(x^{(0)}) So that we can use the equation gotten above to jump to the optimal of the function directly.

0

1

Updated 2021-06-23

References


Tags

Data Science

Related
Learn After