Multivariate Newton's Method
In higher dimensions it becomes difficult to generalize most of the one-dimensional root finding methods, such as bisection.
Basic Newton's Method
If we have a system of equations, F(x) = 0, in which both F and x are n-dimensional vectors (so F : \Omega \rightarrow \mathbb{R}^n for some subset \Omega \subset \mathbb{R}^n), then Newton's method generalizes to
where DF is the Jacobian matrix of derivatives of F. It has components
Usually its a bad idea to explicitly invert the Jacobian matrix, and instead we solve the linear system
for x_{m+1}.
Broyden Methods
In many cases it is either impossible or prohibitively expensive to calculate the Jacobian matrix (or its inverse) directly, and we need to approximate it. This is done iteratively along with the Newton iteration. In the first Broyden method, we approximate the Jacobian at each step by matrice A_m, updated as
In the second Broyden method (sometimes referred to a little unfairly as the "Bad Broyden method"), we directly estimate DF^{-1} by B_m, using the iteration