Suvarna Garge (Editor)

Halley's method

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In numerical analysis, Halley’s method is a root-finding algorithm used for functions of one real variable with a continuous second derivative, i.e., C2 functions. It is named after its inventor Edmond Halley.

Contents

The algorithm is second in the class of Householder's methods, right after Newton's method. Like the latter, it produces iteratively a sequence of approximations to the root; their rate of convergence to the root is cubic. Multidimensional versions of this method exist.

Halley's method can be viewed as exactly finding the roots of a linear-over-linear Padé approximation to the function, in contrast to Newton's method/Secant method (approximates/interpolates the function linearly) or Cauchy's method/Muller's method (approximates/interpolates the function quadratically).

Method

Edmond Halley was an English mathematician who introduced the method now called by his name. Halley's method is a numerical algorithm for solving the nonlinear equation f(x) = 0. In this case, the function f has to be a function of one real variable. The method consists of a sequence of iterations:

x n + 1 = x n 2 f ( x n ) f ( x n ) 2 [ f ( x n ) ] 2 f ( x n ) f ( x n )

beginning with an initial guess x0.

If f is a three times continuously differentiable function and a is a zero of f but not of its derivative, then, in a neighborhood of a, the iterates xn satisfy:

| x n + 1 a | K | x n a | 3 ,  for some  K > 0.

This means that the iterates converge to the zero if the initial guess is sufficiently close, and that the convergence is cubic.

The following alternative formulation shows the similarity between Halley’s method and Newton’s method. The expression f ( x n ) / f ( x n ) is computed only once, and it is particularly useful when f ( x n ) / f ( x n ) can be simplified:

x n + 1 = x n f ( x n ) f ( x n ) [ 1 f ( x n ) f ( x n ) f ( x n ) 2 f ( x n ) ] 1 .

When the second derivative is very close to zero, the Halley's method iteration is almost the same as the Newton’s method iteration.

Derivation

Consider the function

g ( x ) = f ( x ) | f ( x ) | .

Any root of f which is not a root of its derivative is a root of g; and any root r of g must be a root of f provided the derivative of f at r is not infinite. Applying Newton's method to g gives

x n + 1 = x n g ( x n ) g ( x n )

with

g ( x ) = 2 [ f ( x ) ] 2 f ( x ) f ( x ) 2 f ( x ) | f ( x ) | ,

and the result follows. Notice that if f′(c) = 0, then one cannot apply this at c because g(c) would be undefined.

Cubic convergence

Suppose a is a root of f but not of its derivative. And suppose that the third derivative of f exists and is continuous in a neighborhood of a and xn is in that neighborhood. Then Taylor's theorem implies:

0 = f ( a ) = f ( x n ) + f ( x n ) ( a x n ) + f ( x n ) 2 ( a x n ) 2 + f ( ξ ) 6 ( a x n ) 3

and also

0 = f ( a ) = f ( x n ) + f ( x n ) ( a x n ) + f ( η ) 2 ( a x n ) 2 ,

where ξ and η are numbers lying between a and xn. Multiply the first equation by 2 f ( x n ) and subtract from it the second equation times f ( x n ) ( a x n ) to give:

0 = 2 f ( x n ) f ( x n ) + 2 [ f ( x n ) ] 2 ( a x n ) + f ( x n ) f ( x n ) ( a x n ) 2 + f ( x n ) f ( ξ ) 3 ( a x n ) 3 f ( x n ) f ( x n ) ( a x n ) f ( x n ) f ( x n ) ( a x n ) 2 f ( x n ) f ( η ) 2 ( a x n ) 3 .

Canceling f ( x n ) f ( x n ) ( a x n ) 2 and re-organizing terms yields:

0 = 2 f ( x n ) f ( x n ) + ( 2 [ f ( x n ) ] 2 f ( x n ) f ( x n ) ) ( a x n ) + ( f ( x n ) f ( ξ ) 3 f ( x n ) f ( η ) 2 ) ( a x n ) 3 .

Put the second term on the left side and divide through by

2 [ f ( x n ) ] 2 f ( x n ) f ( x n )

to get:

a x n = 2 f ( x n ) f ( x n ) 2 [ f ( x n ) ] 2 f ( x n ) f ( x n ) 2 f ( x n ) f ( ξ ) 3 f ( x n ) f ( η ) 6 ( 2 [ f ( x n ) ] 2 f ( x n ) f ( x n ) ) ( a x n ) 3 .

Thus:

a x n + 1 = 2 f ( x n ) f ( ξ ) 3 f ( x n ) f ( η ) 12 [ f ( x n ) ] 2 6 f ( x n ) f ( x n ) ( a x n ) 3 .

The limit of the coefficient on the right side as xna is:

2 f ( a ) f ( a ) 3 f ( a ) f ( a ) 12 [ f ( a ) ] 2 .

If we take K to be a little larger than the absolute value of this, we can take absolute values of both sides of the formula and replace the absolute value of coefficient by its upper bound near a to get:

| a x n + 1 | K | a x n | 3

which is what was to be proved.

To summarize,

Δ x i + 1 = 3 ( f ) 2 2 f f 12 ( f ) 2 ( Δ x i ) 3 + O [ Δ x i ] 4 , Δ x i x i a .

References

Halley's method Wikipedia


Similar Topics