What is the Newton-Raphson method, and what are the steps?
The Newton’s method is used to find the minimum/maximum of a function.
By the Taylor expansion f(x + h) ≈ f(x) + h^T G(x) + 0,5 h^2 H(x) h =: Q(h), then minimize Q(h) with respect to h in R^d
Q’(x) = G(x) = H(x)h = 0 => H(x)h = -G(x)
set x = x + h, then repeat
What are the disadvantages of the Newson-Rapson Method?
We can use the BFGS method to approximate H^-1
What are steps of the BFGS method?
What is the direction h of the Newton-Rapson method?
h = -[H(x^(k)]^-1 G(x^(k))
What is the direction h of the BFGS method?
h = -MkG(x^(k))