Jump to content

Rate of convergence

From Wikipedia, the free encyclopedia

Innumerical analysis,theorder of convergenceand therate of convergenceof aconvergent sequenceare quantities that represent how quickly the sequence approaches its limit. A sequencethat converges tois said to haveorder of convergenceandrate of convergenceif

[1]

The rate of convergenceis also called theasymptotic error constant. Note that this terminology is not standardized and some authors will useratewhere this article usesorder(e.g.,[2]).

In practice, the rate and order of convergence provide useful insights when usingiterative methodsfor calculating numerical approximations. If the order of convergence is higher, then typically fewer iterations are necessary to yield a useful approximation. Strictly speaking, however, theasymptotic behaviorof a sequence does not give conclusive information about any finite part of the sequence.

Similar concepts are used fordiscretizationmethods. The solution of the discretized problem converges to the solution of the continuous problem as the grid size goes to zero, and the speed of convergence is one of the factors of the efficiency of the method. However, the terminology, in this case, is different from the terminology for iterative methods.

Series accelerationis a collection of techniques for improving the rate of convergence of a series discretization. Such acceleration is commonly accomplished withsequence transformations.

Convergence speed for iterative methods

[edit]

Convergence definitions

[edit]

Suppose that thesequenceconverges to the number.The sequence is said toconverge with orderto,and with arate of convergence[3]of,if

(Definition 1)

for some positive constantif,andif.[4][5]It is not necessary, however, thatbe an integer. For example, thesecant method,when converging to a regular,simple root,has an order ofφ≈ 1.618.[citation needed]

Convergence with order

  • is calledlinear convergenceif,and the sequence is said toconverge Q-linearly to.
  • is calledquadratic convergence.
  • is calledcubic convergence.
  • etc.

Order estimation

[edit]

A practical method to calculate the order of convergence for a sequence generated by a fixed point iteration is to calculate the following sequence, which converges to:[6]

For numerical approximation of an exact value through a numerical method of order q see[7]

Q-convergence definitions

[edit]

In addition to the previously defined Q-linear convergence, a few other Q-convergence definitions exist. Given Definition 1 defined above, the sequence is said toconverge Q-superlinearly to(i.e. faster than linearly) in all the cases whereand also the case.[8]Given Definition 1, the sequence is said toconverge Q-sublinearly to(i.e. slower than linearly) if.The sequenceconverges logarithmically toif the sequence converges sublinearly and additionally if[9] Note that unlike previous definitions, logarithmic convergence is not called "Q-logarithmic."

In the definitions above, the "Q-" stands for "quotient" because the terms are defined using the quotient between two successive terms.[10]: 619 Often, however, the "Q-" is dropped and a sequence is simply said to havelinear convergence,quadratic convergence,etc.

R-convergence definition

[edit]

The Q-convergence definitions have a shortcoming in that they do not include some sequences, such as the sequencebelow, which converge reasonably fast, but whose rate is variable. Therefore, the definition of rate of convergence is extended as follows.

Suppose thatconverges to.The sequence is said toconverge R-linearly toif there exists a sequencesuch that andconverges Q-linearly to zero.[3]The "R-" prefix stands for "root". [10]: 620 

Examples

[edit]

Consider the sequence It can be shown that this sequence converges to.To determine the type of convergence, we plug the sequence into the definition of Q-linear convergence, Thus, we find thatconverges Q-linearly and has a convergence rate of. More generally, for any,the sequenceconverges linearly with rate.

The sequence also converges linearly to 0 with rate 1/2 under the R-convergence definition, but not under the Q-convergence definition. (Note thatis thefloor function,which gives the largest integer that is less than or equal to.)

The sequence converges superlinearly. In fact, it is quadratically convergent.

Finally, the sequence converges sublinearly and logarithmically.

Plot showing the different rates of convergence for the sequences ak, bk, ck and dk.
Linear, linear, superlinear (quadratic), and sublinear rates of convergence

Convergence speed for discretization methods

[edit]

A similar situation exists for discretization methods designed to approximate a function,which might be an integral being approximated bynumerical quadrature,or thesolution of an ordinary differential equation(see example below). The discretization method generates a sequence,where each successiveis a function ofalong with the grid spacingbetween successive values of the independent variable.The important parameter here for the convergence speed tois the grid spacing,inversely proportional to the number of grid points, i.e. the number of points in the sequence required to reach a given value of.

In this case, the sequenceis said to converge to the sequencewith orderqif there exists a constantCsuch that

This is written asusingbig O notation.

This is the relevant definition when discussing methods fornumerical quadratureor the solution of ordinary differential equations (ODEs).[example needed]

A practical method to estimate the order of convergence for a discretization method is pick step sizesandand calculate the resulting errorsand.The order of convergence is then approximated by the following formula:

[citation needed]

which comes from writing the truncation error, at the old and new grid spacings, as

The erroris, more specifically, aglobal truncation error(GTE), in that it represents a sum of errors accumulated over alliterations, as opposed to alocal truncation error(LTE) over just one iteration.

Example of discretization methods

[edit]

Consider the ordinary differential equation

with initial condition.We can solve this equation using theForward Euler scheme for numerical discretization:

which generates the sequence

In terms of,this sequence is as follows, from theBinomial theorem:

The exact solution to this ODE is,corresponding to the followingTaylor expansioninfor:

In this case, the truncation error is

soconverges towith a convergence rate.

Examples (continued)

[edit]

The sequencewithwas introduced above. This sequence converges with order 1 according to the convention for discretization methods.[why?]

The sequencewith,which was also introduced above, converges with orderqfor every numberq.It is said to converge exponentially using the convention for discretization methods. However, it only converges linearly (that is, with order 1) using the convention for iterative methods.[why?]

Recurrent sequences and fixed points

[edit]

The case of recurrent sequenceswhich occurs indynamical systemsand in the context of variousfixed-point theoremsis of particular interest. Assuming that the relevant derivatives offare continuous, one can (easily) show that for a fixed pointsuch that,one has at least linear convergence for any starting valuesufficiently close top.Ifand,then one has at least quadratic convergence, and so on. If,then one has arepulsive fixed pointand no starting value will produce a sequence converging top(unless one directly jumps to the pointpitself).

Acceleration of convergence

[edit]

Many methods exist to increase the rate of convergence of a given sequence, i.e., totransform a given sequenceinto one converging faster to the same limit. Such techniques are in general known as "series acceleration".The goal is to reduce thecomputational costof approximating the limit of the transformed sequence. One example of series acceleration isAitken's delta-squared process.These methods in general (and in particular Aitken's method) do not increase the order of convergence, and are useful only if initially the convergence is not faster than linear:Ifconvergences linearly, one gets a sequencethat still converges linearly (except for pathologically designed special cases), but faster in the sense that.On the other hand, if the convergence is already of order ≥ 2, Aitken's method will bring no improvement.

References

[edit]
  1. ^Ruye, Wang (2015-02-12)."Order and rate of convergence".hmc.edu.Retrieved2020-07-31.
  2. ^Senning, Jonathan R."Computing and Estimating the Rate of Convergence"(PDF).gordon.edu.Retrieved2020-08-07.
  3. ^abBockelman, Brian (2005)."Rates of Convergence".math.unl.edu.Retrieved2020-07-31.
  4. ^Hundley, Douglas."Rate of Convergence"(PDF).Whitman College.Retrieved2020-12-13.
  5. ^Porta, F. A. (1989)."On Q-Order and R-Order of Convergence"(PDF).Journal of Optimization Theory and Applications.63(3): 415–431.doi:10.1007/BF00939805.S2CID116192710.Retrieved2020-07-31.
  6. ^Senning, Jonathan R."Computing and Estimating the Rate of Convergence"(PDF).gordon.edu.Retrieved2020-08-07.
  7. ^Senning, Jonathan R."Verifying Numerical Convergence Rates"(PDF).Retrieved2024-02-09.
  8. ^Arnold, Mark."Order of Convergence"(PDF).University of Arkansas.Retrieved2022-12-13.
  9. ^Van Tuyl, Andrew H. (1994)."Acceleration of convergence of a family of logarithmically convergent sequences"(PDF).Mathematics of Computation.63(207): 229–246.doi:10.2307/2153571.JSTOR2153571.Retrieved2020-08-02.
  10. ^abNocedal, Jorge; Wright, Stephen J. (2006).Numerical Optimization(2nd ed.). Berlin, New York:Springer-Verlag.ISBN978-0-387-30303-1.

Literature

[edit]

The simple definition is used in

The extended definition is used in

The Big O definition is used in

  • Richard L. Burden and J. Douglas Faires (2001),Numerical Analysis(7th ed.), Brooks/Cole.ISBN0-534-38216-9

The termsQ-linearandR-linearare used in