Broyden's method

From HandWiki
Short description: Quasi-Newton root-finding method for the multivariable case

In numerical analysis, Broyden's method is a quasi-Newton method for finding roots in k variables. It was originally described by C. G. Broyden in 1965.[1]

Newton's method for solving f(x) = 0 uses the Jacobian matrix, J, 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 rank-one updates at other iterations.

In 1979 Gay proved that when Broyden's method is applied to a linear system of size n × n, it terminates in 2 n steps,[2] although like all quasi-Newton methods, it may not converge for nonlinear systems.

Description of the method

Solving single-variable equation

In the secant method, we replace the first derivative f at xn with the finite-difference approximation:

[math]\displaystyle{ f'(x_n) \simeq \frac{f(x_n) - f(x_{n-1})}{x_n - x_{n - 1}}, }[/math]

and proceed similar to Newton's method:

[math]\displaystyle{ x_{n + 1} = x_n - \frac{f(x_n)}{f^\prime(x_n)} }[/math]

where n is the iteration index.

Solving a system of nonlinear equations

Consider a system of k nonlinear equations

[math]\displaystyle{ \mathbf f(\mathbf x) = \mathbf 0 , }[/math]

where f is a vector-valued function of vector x:

[math]\displaystyle{ \mathbf x = (x_1, x_2, x_3, \dotsc, x_k), }[/math]
[math]\displaystyle{ \mathbf f(\mathbf x) = \big(f_1(x_1, x_2, \dotsc, x_k), f_2(x_1, x_2, \dotsc, x_k), \dotsc, f_k(x_1, x_2, \dotsc, x_k)\big). }[/math]

For such problems, Broyden gives a generalization of the one-dimensional Newton's method, replacing the derivative with the Jacobian J. The Jacobian matrix is determined iteratively, based on the secant equation in the finite-difference approximation:

[math]\displaystyle{ \mathbf J_n (\mathbf x_n - \mathbf x_{n - 1}) \simeq \mathbf f(\mathbf x_n) - \mathbf f(\mathbf x_{n - 1}), }[/math]

where n is the iteration index. For clarity, let us define:

[math]\displaystyle{ \mathbf f_n = \mathbf f(\mathbf x_n), }[/math]
[math]\displaystyle{ \Delta \mathbf x_n = \mathbf x_n - \mathbf x_{n - 1}, }[/math]
[math]\displaystyle{ \Delta \mathbf f_n = \mathbf f_n - \mathbf f_{n - 1}, }[/math]

so the above may be rewritten as

[math]\displaystyle{ \mathbf J_n \Delta \mathbf x_n \simeq \Delta \mathbf f_n. }[/math]

The above equation is underdetermined when k is greater than one. Broyden suggests using the current estimate of the Jacobian matrix Jn−1 and improving upon it by taking the solution to the secant equation that is a minimal modification to Jn−1:

[math]\displaystyle{ \mathbf J_n = \mathbf J_{n - 1} + \frac{\Delta \mathbf f_n - \mathbf J_{n - 1} \Delta \mathbf x_n}{\|\Delta \mathbf x_n\|^2} \Delta \mathbf x_n^{\mathrm T}. }[/math]

This minimizes the following Frobenius norm:

[math]\displaystyle{ \|\mathbf J_n - \mathbf J_{n - 1}\|_{\rm F} . }[/math]

We may then proceed in the Newton direction:

[math]\displaystyle{ \mathbf x_{n + 1} = \mathbf x_n - \mathbf J_n^{-1} \mathbf f(\mathbf x_n) . }[/math]

Broyden also suggested using the Sherman–Morrison formula to update directly the inverse of the Jacobian matrix:

[math]\displaystyle{ \mathbf J_n^{-1} = \mathbf J_{n - 1}^{-1} + \frac{\Delta \mathbf x_n - \mathbf J^{-1}_{n - 1} \Delta \mathbf f_n}{\Delta \mathbf x_n^{\mathrm T} \mathbf J^{-1}_{n - 1} \Delta \mathbf f_n} \Delta \mathbf x_n^{\mathrm T} \mathbf J^{-1}_{n - 1}. }[/math]

This first method is commonly known as the "good Broyden's method".

A similar technique can be derived by using a slightly different modification to Jn−1. This yields a second method, the so-called "bad Broyden's method" (but see[3]):

[math]\displaystyle{ \mathbf J_n^{-1} = \mathbf J_{n - 1}^{-1} + \frac{\Delta \mathbf x_n - \mathbf J^{-1}_{n - 1} \Delta \mathbf f_n}{\|\Delta \mathbf f_n\|^2} \Delta \mathbf f_n^{\mathrm T}. }[/math]

This minimizes a different Frobenius norm:

[math]\displaystyle{ \|\mathbf J_n^{-1} - \mathbf J_{n - 1}^{-1}\|_{\rm F}. }[/math]

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 multiple dimensions). The Jacobian of the gradient is called Hessian and is symmetric, adding further constraints to its update.

Other members of the Broyden class

Broyden has defined not only two methods, but a whole class of methods. Other members of this class have been added by other authors.

  • The Davidon–Fletcher–Powell update is the only member of this class being published before the two members defined by Broyden.[4]
  • Schubert's or sparse Broyden algorithm – a modification for sparse Jacobian matrices.[5]
  • Klement (2014) – uses fewer iterations to solve many equation systems.[6][7]

See also

References

  1. 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.1090/S0025-5718-1965-0198670-6. 
  2. Gay, D. M. (August 1979). "Some convergence properties of Broyden's method". SIAM Journal on Numerical Analysis (SIAM) 16 (4): 623–630. doi:10.1137/0716047. 
  3. Kvaalen, Eric (November 1991). "A faster Broyden method". BIT Numerical Mathematics (SIAM) 31 (2): 369–372. doi:10.1007/BF01931297. 
  4. 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.1090/S0025-5718-1965-0198670-6. 
  5. Schubert, L. K. (1970-01-01). "Modification of a quasi-Newton method for nonlinear equations with a sparse Jacobian". Mathematics of Computation 24 (109): 27–30. doi:10.1090/S0025-5718-1970-0258276-9. ISSN 0025-5718. https://www.ams.org/mcom/1970-24-109/S0025-5718-1970-0258276-9/. 
  6. Klement, Jan (2014-11-23). "On Using Quasi-Newton Algorithms of the Broyden Class for Model-to-Test Correlation" (in en). Journal of Aerospace Technology and Management 6 (4): 407–414. doi:10.5028/jatm.v6i4.373. ISSN 2175-9146. http://www.jatm.com.br/ojs/index.php/jatm/article/view/373. 
  7. "Broyden class methods – File Exchange – MATLAB Central". http://www.mathworks.com/matlabcentral/fileexchange/55251-broyden-class-methods. 

Further reading

External links