Newton-Raphson method
Newton-Raphson method, also called the Newton’s method, is a root-finding algorithm that uses the Taylor series of a function
in the vicinity of a suspected root. Given an initial guess of the root
, the Taylor series of
about the point
is given by

If
is the root, then
. Thus we can get
.
By letting
, we can calculate a new
, and so on. At the nth step, we can get
.
Newton-Raphson can be used to obtain maximum likelihood estimation of a statistical model. For MLE, after we get the log-likelihood function, we take the first derivative and set it to 0. In this case, it likes to find the root of a function. Thus, Newton-Raphson method can be used directly.