Broyden's method
|
|
This article may be too technical for most readers to understand. Please help improve this article to make it understandable to non-experts, without removing the technical details. The talk page may contain suggestions. (February 2011) |
In numerical analysis, Broyden's method is a quasi-Newton method for the root-finding algorithm in k variables. It was originally described by C. G. Broyden in 1965.[1]
Newton's method for solving the equation
uses the Jacobian matrix and determinant,
, at every iteration. However, computing this Jacobian is a difficult and expensive operation. The idea behind Broyden's method is to compute the whole Jacobian only at the first iteration, and to do a rank-one update at the other iterations.
In 1979 Gay proved that when Broyden's method is applied to a linear system of size n x n, it terminates in 2n steps.[2]
Contents |
[edit] Description of the method
Broyden's method is a generalization of the secant method to multiple dimensions. The secant method replaces the first derivative
with the finite difference approximation:
and proceeds similar to Newton's Method:
Broyden gives a generalization of this formula to a system of equations
, replacing the derivative
with the Jacobian
. The Jacobian is determined using the secant equation (using the finite difference approximation):
However this equation is under determined in more than one dimension. Broyden suggests using the current estimate of the Jacobian
and improving upon it by taking the solution to the secant equation that is a minimal modification to
(minimal in the sense of minimizing the Frobenius norm
):
then proceeds in the Newton direction:
In the formula above
and
are vector-columns with
elements for a system with k-dimensions. This way:
![\Delta x_n=\begin{bmatrix}
x_1[n]-x_1[n-1]\\
...\\
x_k[n]-x_k[n-1]
\end{bmatrix}
\quad \text{and} \quad
\Delta F_n=\begin{bmatrix}
f_1(x_1[n],...,x_k[n])-f_1(x_1[n-1],...,x_k[n-1])\\
...\\
f_k(x_1[n],...,x_k[n])-f_k(x_1[n-1],...,x_k[n-1])
\end{bmatrix}.](http://upload.wikimedia.org/wikipedia/en/math/2/d/3/2d3d2af02955cf0d17fde9e2f00172ce.png)
Broyden also suggested using the Sherman-Morrison formula to update directly the inverse of the Jacobian:
This method is commonly known as the "good Broyden's method". A similar technique can be derived by using a slightly different modification to
(which minimizes
instead); this yields the so-called "bad Broyden's method" (but see [3]):
Many other quasi-Newton schemes have been suggested in optimization, where one seeks a maximum or minimum by finding the root of the first derivative (gradient in multi dimensions). The Jacobian of the gradient is called Hessian and is symmetric, adding further constraints to its upgrade.
[edit] See also
- Secant method
- Newton's method
- Quasi-Newton method
- Newton's method in optimization
- Davidon-Fletcher-Powell formula
- Broyden-Fletcher-Goldfarb-Shanno (BFGS) method
[edit] References
- ^ Broyden, C. G. (October 1965). "A Class of Methods for Solving Nonlinear Simultaneous Equations". Mathematics of Computation (American Mathematical Society) 19 (92): 577–593. doi:10.2307/2003941. JSTOR 2003941.
- ^ Gay, D.M. (August 1979). "Some convergence properties of Broyden's method". SIAM Journal of Numerical Analysis (SIAM) 16 (4): 623–630. doi:10.1137/0716047.
- ^ Kvaalen, Eric (November 1991). "A faster Broyden method". BIT Numerical Mathematics (SIAM) 31 (2): 369–372. doi:10.1007/BF01931297.
[edit] External links
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||






