Supriya Ghosh (Editor)

Broyden's method

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Broyden's method

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.

Contents

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 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 × n, it terminates in 2 n steps, although like all quasi-Newton methods, it may not converge for nonlinear systems.

Solving single variable equation

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

f ( x n ) f ( x n ) f ( x n 1 ) x n x n 1 ,

and proceed similar to Newton's Method:

x n + 1 = x n 1 f ( x n ) f ( x n )

where n is the iteration index.

Solving a system of nonlinear equations

To solve a system of k nonlinear equations

f ( x ) = 0 ,

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

x = ( x 1 , x 2 , x 3 , , x k ) f ( x ) = ( f 1 ( x 1 , x 2 , , x k ) , f 2 ( x 1 , x 2 , , x k ) , , f k ( x 1 , x 2 , , x k ) )

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:

J n ( x n x n 1 ) f ( x n ) f ( x n 1 ) ,

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

f n = f ( x n ) , Δ x n = x n x n 1 , Δ f n = f n f n 1 ,

so the above may be rewritten as:

J n Δ x n Δ f n .

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:

J n = J n 1 + Δ f n J n 1 Δ x n Δ x n 2 Δ x n T

This minimizes the following Frobenius norm:

J n J n 1 f .

We may then proceed in the Newton direction:

x n + 1 = x n J n 1 f ( x n ) .

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

J n 1 = J n 1 1 + Δ x n J n 1 1 Δ f n Δ x n T J n 1 1 Δ f n Δ x n T J n 1 1

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):

J n 1 = J n 1 1 + Δ x n J n 1 1 Δ f n Δ f n 2 Δ f n T

This minimizes a different Frobenius norm:

J n 1 J n 1 1 f .

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 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.
  • Schubert's or sparse Broyden algorithm – a modification for sparse Jacobian matrices.
  • Klement (2014) – uses fewer iterations to solve many equation systems.
  • References

    Broyden's method Wikipedia