Householder's method

In mathematics, and more specifically in numerical analysis, Householder's methods are a class of root-finding algorithms that are used for functions of one real variable with continuous derivatives up to some order d+1. Each of these methods is characterized by the number d, which is known as the order of the method. The algorithm is iterative and has a rate of convergence of d+1.

These methods are named after the American mathematician Alston Scott Householder.

Method

Householder'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

beginning with an initial guess x0.[1]

If f is a (d+1) 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:

, for some

This means that the iterates converge to the zero if the initial guess is sufficiently close, and that the convergence has order (d+1).

Despite their order of convergence, these methods are not widely used because the gain in precision is not commensurate with the rise in effort for large d. The Ostrowski index[2] expresses the error reduction in the number of function evaluations instead of the iteration count.

Motivation

An approximate idea of Householder's method derives from the geometric series. Let the real-valued, continuously differentiable function f(x) have a simple zero at x=a, that is a root f(a)=0 of multiplicity one, which is equivalent to . Then 1/f(x) has a singularity at a, specifically a simple pole (also of multiplicity one), and close to a the behavior of 1/f(x) is dominated by 1/(x-a). Approximately one gets

Here because a is a simple zero of f(x). The coefficient of degree d has the value . Thus, one can now reconstruct the zero a by dividing the coefficient of degree d-1 by the coefficient of degree d. Since this geometric series is an approximation to the Taylor expansion of 1/f(x), one can get estimates of the zero of f(x) − now without prior knowledge of the location of this zero − by dividing the corresponding coefficients of the Taylor expansion of 1/f(x) or, more generally, 1/f(b+x). From that one gets, for any integer d, and if the corresponding derivatives exist,

Alternative motivation

Suppose x=a is a simple root. Then near x=a, (1/f)(x) is a meromorphic function. Suppose we have the Taylor expansion:

By König's theorem, we have:

This suggests that Householder's iteration might be a good convergent iteration. The actual proof of the convergence is also based on this idea.

The methods of lower order

Householder's method of order 1 is just Newton's method, since:

For Householder's method of order 2 one gets Halley's method, since the identities

and

result in

In the last line, is the update of the Newton iteration at the point . This line was added to demonstrate where the difference to the simple Newton's method lies.

The third order method is obtained from the identity of the third order derivative of 1/f

and has the formula

and so on...

Example

The first problem solved by Newton with the Newton-Raphson-Simpson method was the polynomial equation . He observed that there should be a solution close to 2. Replacing y=x+2 transforms the equation into

.

The Taylor series of the reciprocal function starts with

The result of applying Householder's methods of various orders at x=0 is also obtained by dividing neighboring coefficients of the latter power series. For the first orders one gets the following values after just one iteration step: For an example, in the case of the 3rd order, .

d x1
1 0.10000000000000000000000000000000
2 0.094339622641509433962264150943396
3 0.094558429973238180196253345227476
4 0.094551282051282051282051282051282
5 0.094551486538216154140615031261963
6 0.094551481438752142436492263099119
7 0.094551481543746895938379484125813
8 0.094551481542336756233561913325371
9 0.094551481542324837086869382419375
10 0.094551481542326678478801765822985

As one can see, there are a little bit more than d correct decimal places for each order d.

Let's calculate the values for some lowest order,

And using following relations,

1st order;
2nd order;
3rd order;
x 1st (Newton) 2nd (Halley) 3rd order 4th order
x1 0.1 0.09433962264151 0.09455842997324 0.09455128205128
x2 0.09456812110419 0.09455148154016421472 0.094551481542326591482567
x3 0.09455148169819930297 0.09455148154232659148238654 0.09455148154232659148238654057931
x4 0.09455148154232659149606485 0.0945514815423265914823865405793 0.09455148154232659148238654057931
x5 0.09455148154232659148238654057931 0.0945514815423265914823865405793
x6 0.09455148154232659148238654057931

Derivation

An exact derivation of Householder's methods starts from the Padé approximation of order (d+1) of the function, where the approximant with linear numerator is chosen. Once this has been achieved, the update for the next approximation results from computing the unique zero of the numerator.

The Padé approximation has the form

The rational function has a zero at .

Just as the Taylor polynomial of degree d has d+1 coefficients that depend on the function f, the Padé approximation also has d+1 coefficients dependent on f and its derivatives. More precisely, in any Padé approximant, the degrees of the numerator and denominator polynomials have to add to the order of the approximant. Therefore, has to hold.

One could determine the Padé approximant starting from the Taylor polynomial of f using Euclid's algorithm. However, starting from the Taylor polynomial of 1/f is shorter and leads directly to the given formula. Since

has to be equal to the inverse of the desired rational function, we get after multiplying with in the power the equation

.

Now, solving the last equation for the zero of the numerator results in

.

This implies the iteration formula

.

External links

References

  1. Householder, Alston Scott (1970). The Numerical Treatment of a Single Nonlinear Equation. McGraw-Hill. p. 169. LCCN 79-103908.
  2. Ostrowski, A. M. (1966), "Solution of equations and systems of equations", Pure and Applied Mathematics (Second edition), Vol. 9, New York: Academic Press
This article is issued from Wikipedia - version of the 11/10/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.