Jump to content

Draft:One-step method

From Wikipedia, the free encyclopedia
One-step methods approximate the solution (blue) of an initial value problem by starting from the given starting point from the given starting point , etc. can be determined

In numerical mathematics, one-step methods and multi-step methods are a large group of calculation methods for solving initial value problems. This problem, in which an ordinary differential equation is given together with an initial condition, plays a central role in all natural and engineering sciences and is also becoming increasingly important in the economic and social sciences, for example. Initial value problems are used to analyze, simulate or predict dynamic processes.

The basic idea behind one-step methods is that they calculate approximation points step by step along the desired solution, starting from the given starting point. They only use the most recently determined approximation for the next step, in contrast to multi-step methods, which also include points further back in the calculation. The one-step methods can be roughly divided into two groups: the explicit methods, which calculate the new approximation directly from the old one, and the implicit methods, which require an equation to be solved. The latter are also suitable for so-called stiff initial value problems.

The simplest and oldest one-step method, the explicit Euler method, was published by Leonhard Euler in 1768. After a group of multi-step methods was presented in 1883, Carl Runge, Karl Heun and Wilhelm Kutta developed significant improvements to Euler's method around 1900. These gave rise to the large group of Runge-Kutta methods, which form the most important class of one-step methods. Further developments in the 20th century include the idea of extrapolation and, above all, considerations on step width control, i.e. the selection of suitable lengths for the individual steps of a method. These concepts form the basis for solving difficult initial value problems, as they occur in modern applications, efficiently and with the required accuracy using computer programs.

Introduction[edit]

Ordinary differential equations[edit]

The development of differential and integral calculus by the English physicist and mathematician Isaac Newton and, independently of this, by the German polymath Gottfried Wilhelm Leibniz in the last third of the 17th century was a major impetus for the mathematization of science in the early modern period. These methods formed the starting point of the mathematical subfield of analysis and are of central importance in all natural and engineering sciences. While Leibniz was led to differential calculus by the geometric problem of determining tangents to given curves, Newton started from the question of how changes in a physical quantity can be determined at a specific point in time.[1]

For example, when a body moves, its average speed is simply the distance traveled divided by the time required to travel it. However, in order to mathematically formulate the instantaneous velocity of the body at a certain point in time , a limit transition is necessary: Consider short time spans of length , the distances traveled and the corresponding average velocities .If the time period Δ 𝑡 is now allowed to converge towards zero and if the average velocities also approach a fixed value, then this value is called the (instantaneous) velocity at the given time . If denotes the position of the body at time 𝑡 , then write and call the derivative of .

The decisive step in the direction of differential equation models is now the reverse question: In the example of the moving body, let the velocity be known at every point in time 𝑡 and its position be determined from this. It is clear that the initial position of the body at a point in time 𝑡 0 must also be known in order to be able to solve this problem unambiguously. We are therefore looking for a function with that fulfills the initial condition with given values and .

In the example of determining the position 𝑥 of a body from its velocity, the derivative of the function being searched for is explicitly given. In most cases, however, the important general case of ordinary differential equations exists for a sought-after variable : Due to the laws of nature or the model assumptions, a functional relation is known that specifies how the deriativey of the function to be determined can be calculated from and from the (unknown) value . In addition, an initial condition must again be given, which can be obtained, for example, from a measurement of the required variable at a fixed point in time. To summarize, the following general type of task exists: Find the function that satisfies the equations

is fulfilled, where is a given function.

The shown solution of the differential equation of the Lorenz attractor is a very complicated curve in three-dimensional space

A simple example is a variable that grows exponentially. This means that the instantaneous change, i.e. the derivative , is proportional to itself. Therefore, with a growth rate and, for example, an initial condition . In this case, the required solution 𝑦 can already be found using elementary differential calculus and specified using the exponential function: .

The required function in a differential equation can be vector-valued, i.e. for each , can be a vector with components. This is also referred to as an -dimensional system of differential equations. In the case of a moving body, is its position in -dimensional Euclidean space and is its velocity at time . The differential equation therefore specifies the velocity of the trajectory with direction and magnitude at each point in time and space. The trajectory itself is to be calculated from this.

Basic idea of the one-step procedure[edit]

In the simple differential equation of exponential growth considered above as an example, the solution function could be specified directly. This is generally no longer possible for more complicated problems. Under certain additional conditions, it is then possible to show that a clearly determined solution to the initial value problem exists for the function ; however, this can then no longer be explicitly calculated using solution methods of analysis (such as separation of variables, an exponential approach or variation of the constants). In this case, numerical methods can be used to determine approximations for the solution sought.

The methods for the numerical solution of initial value problems of ordinary differential equations can be roughly divided into two large groups: the one-step and the multi-step methods. Both groups have in common that they calculate approximations for the desired function values at points step by step. The defining characteristic of one-step methods is that only the "current" approximation is used to determine the following approximation . In contrast, multi-step methods also include previously calculated approximations; a three-step method would therefore use and to determine the new approximation in addition to .

Two steps of the explicit Euler method

The simplest and most basic one-step method is the explicit Euler method, which was introduced by the Swiss mathematician and physicist Leonhard Euler in 1768 in his textbook Institutiones Calculi Integralis.[2] The idea of this method is to approximate the solution sought by a piecewise linear function in which the gradient of the straight line piece is given by in each step from the point math>t_{j+1}</math> to the point . In more detail: The problem definition already gives a value of the function being searched for, namely . However, the derivative at this point is also known, as applies. This allows the tangent to the graph of the solution function to be determined and used as an approximation. At the point the following results with the step size

.

This procedure can now be continued in the following steps. Overall, this results in the following calculation rule for the explicit Euler method

with the increments .[3]

The explicit Euler method is the starting point for numerous generalizations in which the gradient is replaced by gradients that approximate the behaviour of the solution between the points and more precisely. An additional idea for one-step methods is provided by the implicit Euler method, which uses as the gradient. At first glance, this choice does not seem very suitable, as is unknown. However, as a procedural step, we now obtain the equation

from which can be calculated (using a numerical method if necessary). If, for example, the arithmetic mean of the slopes of the explicit and implicit Euler method is selected as the slope, the implicit trapezoidal method is obtained. In turn, an explicit method can be obtained from this if, for example, the unknown on the right-hand side of the equation is approximated using the explicit Euler method, the so-called Heun method.[4] All these methods and all other generalizations have the basic idea of one-step methods in common: the step

with a gradient that can depend on , and as well as (for implicit methods) on .

Definition[edit]

With the considerations from the introductory section of this article, the concept of the one-step method can be defined as follows: Let the solution of the initial value problem be sought

, .

It is assumed that the solution

exists on a given interval and is uniquely determined. Are

Intermediate positions in the interval and the corresponding increments, then this is given by

,

given method is a one-step method with method function . If does not depend on , then it is called an explicit one-step method. Otherwise, an equation for must be solved in each step and the method is called implicit.[5]

Consistency and convergence[edit]

Convergence order[edit]

For a practical one-step procedure, the calculated should be good approximations for the values of the exact solution at the point . As the variables are generally -dimensional vectors, the quality of this approximation is measured using a vector norm as , the error at the point . It is desirable that these errors quickly converge to zero for all if the step sizes are allowed to converge to zero. In order to also capture the case of non-constant step sizes, is defined more precisely as the maximum of the step sizes used and the behavior of the maximum error at all points is considered in comparison to powers of . The one-step method for solving the given initial value problem is said to have the order of convergence if the estimate

applies to all sufficiently small with a constant that is independent of .[6] The order of convergence is the most important parameter for comparing different one-step methods.[7] A method with a higher order of convergence generally delivers a smaller total error for a given step size or, conversely, fewer steps are required to achieve a given accuracy. For a method with , it is to be expected that the error will only be approximately halved if the step size is halved. With a method of convergence order , on the other hand, it can be assumed that the error is reduced by a factor of approximately .

Global and local error[edit]

The errors considered in the definition of the convergence order are made up of two individual components in a way that initially seems complicated: On the one hand, of course, they depend on the error that the method makes in a single step by approximating the unknown gradient of the function being searched for by the method function. On the other hand, however, it must also be taken into account that the starting point of a step generally does not match the exact starting point ; the error after this step therefore also depends on all errors that have already been made in the previous steps. Due to the uniform definition of the one-step procedures, which differ only in the choice of the procedure function , it can be proven, however, that (under certain technical conditions at ) one can directly infer the order of convergence from the error order in a single step, the so-called consistency order.

The concept of consistency is a general and central concept of modern numerical mathematics. While the convergence of a method involves investigating how well the numerical approximations match the exact solution, in simplified terms the "reverse" question is asked in the case of consistency: How well does the exact solution fulfill the method specification? In this general theory, a method is convergent if it is consistent and stable. To simplify the notation, the following consideration assumes that an explicit one-step procedure

with a constant step size exists. With the true solution , the local truncation error (also called local process error) is defined as[8]

.

Thus, one assumes that the exact solution is known, starts a method step at the point and forms the difference to the exact solution at the point . This defines: A one-step method has the consistency order if the estimate

applies to all sufficiently small with a constant that is independent of .

The striking difference between the definitions of the consistency order and the convergence order is the power instead of . This can be clearly interpreted as meaning that a power of the step size is "lost" during the transition from local to global error. The following theorem, which is central to the theory of one-step methods, applies:[9]

If the process function is Lipschitz-continuous and the associated one-step process has the consistency order , then it also has the convergence order .

The Lipschitz continuity of the process function as an additional requirement for stability is generally always fulfilled if the function from the differential equation itself is Lipschitz-continuous. This requirement must be assumed for most applications anyway in order to guarantee the unambiguous solvability of the initial value problem. According to the theorem, it is therefore sufficient to determine the consistency order of a one-step method. In principle, this can be achieved by Taylor expansion of to powers of . In practice, the resulting formulas for higher orders become very complicated and confusing, so that additional concepts and notations are required.[10]

Stiffness and A-stability[edit]

The convergence order of a method is an asymptotic statement that describes the behavior of the approximations when the step size converges to zero. However, it says nothing about whether the method actually calculates a useful approximation for a given fixed step size. Charles Francis Curtiss and Joseph O. Hirschfelder first described in 1952 that this can actually be a major problem for certain types of initial value problems. They had observed that the solutions to some differential equation systems in chemical reaction kinetics could not be calculated using explicit numerical methods and called such initial value problems "stiff".[11] There are numerous mathematical criteria for determining how stiff a given problem is. Stiff initial value problems are usually systems of differential equations in which some components become constant very quickly while other components change only slowly. Such behavior typically occurs in the modeling of chemical reactions. However, the most useful definition of stiffness for practical applications is: An initial value problem is stiff if, when solving it with explicit one-step methods, the step size would have to be chosen "too small" in order to obtain a useful solution. Such problems can therefore only be solved using implicit methods.[12]

Zur Berechnung einer exponentiell fallenden Lösung (blau) ist das explizite Euler-Verfahren (rot) bei zu großer Schrittweite völlig unbrauchbar; das implizite Euler-Verfahren (grün) bestimmt die Lösung für beliebige Schrittweiten qualitativ richtig.

This effect can be illustrated more precisely by examining how the individual methods cope with exponential decay. According to the Swedish mathematician Germund Dahlquist, the test equation

with the exponentially decreasing solution for . The adjacent diagram shows - as an example for the explicit and implicit Euler method - the typical behavior of these two groups of methods for this seemingly simple initial value problem: If too large a step size is used in an explicit method, this results in strongly oscillating values that build up over the course of the calculation and move further and further away from the exact solution. Implicit methods, on the other hand, typically calculate the solution for arbitrary step sizes qualitatively correctly, namely as an exponentially decreasing sequence of approximate values.[13]

More generally, the above test equation is also considered for complex values of . In this case, the solutions are oscillations whose amplitude remains limited precisely when , i.e. the real part of is less than or equal to 0. This makes it possible to formulate a desirable property of one-step methods that are to be used for stiff initial value problems: the so-called A-stability. A method is called A-stable if it calculates a sequence of approximations for any step size applied to the test equation for all with , which remains bounded (like the true solution). The implicit Euler method and the implicit trapezoidal method are the simplest examples of A-stable one-step methods. On the other hand, it can be shown that an explicit method can never be A-stable.[14]

Special procedures and procedure classes[edit]

Simple procedures of order 1 and 2[edit]

Einige Einschrittverfahren im Vergleich

As the French mathematician Augustin-Louis Cauchy proved around 1820, the Euler method has a convergence order of 1. If you average the slopes of the explicit Euler method and of the implicit Euler method, as they exist at the two end points of a step,[15] you can hope to obtain a better approximation over the entire interval. In fact, it can be proven that the implicit trapezoidal method obtained in this way

has a convergence order of 2. This method has very good stability properties, but is implicit, meaning that an equation for 𝑦 𝑗 + 1 must be solved in each step. If this variable is approximated on the right-hand side of the equation using the explicit Euler method, the result is the explicit method of Heun[16]

,

which also has convergence order 2. Another simple explicit method of order 2, the improved Euler method, is obtained by the following consideration: A "mean" slope in the method step would be the slope of the solution 𝑦 in the middle of the step, i.e. at the point . However, as the solution is unknown, it is approximated by an explicit Euler step with half the step size. This results in the following procedure

.

These one-step methods of order 2 were all published as improvements of the Euler method in 1895 by the German mathematician Carl Runge.[17]

Runge-Kutta method[edit]

Das klassische Runge-Kutta-Verfahren vierter Ordnung mittelt in jedem Schritt vier Hilfssteigungen (rot)

The aforementioned ideas for simple one-step methods lead to the important class of Runge-Kutta methods when generalized further. For example, Heun's method can be presented more clearly as follows: First, an auxiliary slope is calculated, namely the slope of the explicit Euler method. This is used to determine a further auxiliary slope, here . The actual process gradient used is then calculated as a weighted average of the auxiliary gradients, i.e. in Heun's method. This procedure can be generalized to more than two auxiliary slopes. An - -stage Runge-Kutta method first calculates auxiliary slopes by evaluating 𝑓 at suitable points and then as a weighted average. In an explicit Runge-Kutta method, the auxiliary slopes are calculated directly one after the other; in an implicit method, they are obtained as solutions to a system of equations. A typical example is the explicit classical Runge-Kutta method of order 4, which is sometimes simply referred to as the Runge-Kutta method: First, the four auxiliary slopes[18]

and then the weighted average is calculated as the process slope

is used. This well-known method was published by the German mathematician Wilhelm Kutta in 1901, after Karl Heun had found a three-step one-step method of order 3 a year earlier.[19]

The construction of explicit methods of even higher order with the smallest possible number of steps is a mathematically quite demanding problem. As John C. Butcher was able to show in 1965, there are, for example, only a minimum of six steps for order 5; an explicit Runge-Kutta method of order 8 requires at least 11 steps. In 1978, the Austrian mathematician Ernst Hairer found a method of order 10 with 17 levels. The coefficients for such a method must fulfill 1205 determinant equations. With implicit Runge-Kutta methods,[20] the situation is simpler and clearer: for every number of steps there is a method of order  ; this is also the maximum achievable order.[21]

Extrapolation method[edit]

Extrapolation auf bei einem Verfahren der Ordnung

The idea of extrapolation is not limited to the solution of initial value problems with one-step methods, but can be applied analogously to all numerical methods that discretize the problem to be solved with a step size . A well-known example of an extrapolation method is the Romberg integration for the numerical calculation of integrals. In general, let be a value that is to be determined numerically, in the case of this article, for example, the value of the solution function of an initial value problem at a given point. A numerical method, for example a one-step method, calculates an approximate value for this, which depends on the choice of step size . It is assumed that the method is convergent, i.e. that converges to when converges to zero. However, this convergence is only a purely theoretical statement, as approximate values can be calculated for a finite number of different step sizes , but of course the step size cannot be allowed to "converge to zero". However, the calculated approximations for different step sizes can be interpreted as information about the (unknown) function : In the extrapolation methods, is approximated by an interpolation polynomial, i.e. by a polynomial with[22]

for . The value of the polynomial at the point is then used as a computable approximation for the non-computable limit value of for towards zero. An early successful extrapolation algorithm for initial value problems was published by Roland Bulirsch and Josef Stoer in 1966.[23]

A concrete example in the case of a one-step method of order can illustrate the general procedure of extrapolation. With such a method, the calculated approximation for small step sizes ℎ can be easily described by a polynomial of the form

with initially unknown parameters and . If you now calculate two approximations and using the method for a step size and for half the step size , two linear equations for the unknowns and are obtained from the interpolation conditions and .

The value extrapolated to 

is then generally a significantly better approximation than the two values calculated initially. It can be shown that the order of the one-step method obtained in this way is at least , i.e. at least 1 greater than the original method.[24]

Method with step width control[edit]

One advantage of the one-step method is that any step size can be used in each step 𝑗 independently of the other steps. In practice, this obviously raises the question of how ℎ 𝑗 should be selected. In real applications, there will always be an error tolerance with which the solution of an initial value problem is to be calculated; for example, it would be pointless to determine a numerical approximation that is significantly more "accurate" than the data for initial values and parameters of the given problem, which are subject to measurement errors. The aim will therefore be to select the step sizes in such a way that, on the one hand, the specified error tolerances are adhered to and, on the other hand, as few steps as possible are used in order to keep the computational effort to a minimum. This problem, in which an ordinary differential equation is given together with an initial condition, plays a central role in all natural and engineering sciences and is also becoming increasingly important in the economic and social sciences, for example. Initial value problems are used to analyze, simulate or predict dynamic processes.[25]

For well-conditioned initial value problems, it can be shown that the global process error is approximately equal to the sum of the local truncation errors in the individual steps. Therefore, the largest possible should be selected as the step size, for which is below a selected tolerance threshold. The problem here is that cannot be calculated directly, as it depends on the unknown exact solution of the initial value problem at the point . The basic idea of step size control is therefore to approximate with a method that is more accurate than the underlying basic method.[26]

Two basic ideas for step width control are step width halving and embedded processes. With step size halving, the result for two steps with half the step size is calculated as a comparison value in addition to the actual process step. A more precise approximation for is then determined from both values by extrapolation and the local error 𝜂 𝑗 is estimated. If this is too large, this step is discarded and repeated with a smaller step size. If it is significantly smaller than the specified tolerance, the step size can be increased in the next step.[27] The additional computational effort for this step width halving procedure is relatively high; this is why modern implementations usually use so-called embedded procedures for step width control. The basic idea is to calculate two approximations for in each step using two one-step methods that have different orders of convergence and thus estimate the local error. In order to optimize the computational effort, the two methods should have as many computational steps in common as possible: They should be "embedded in each other". Embedded Runge-Kutta methods, for example, use the same auxiliary slopes and differ only in how they average them. Well-known embedded methods include the Runge-Kutta-Fehlberg method (Erwin Fehlberg, 1969) and the Dormand-Prince method (J. R. Dormand and P. J. Prince, 1980).[28]

Practical example: Solving initial value problems with numerical software[edit]

Numerous software implementations have been developed for the mathematical concepts outlined in this article, which allow the user to solve practical problems numerically in a simple way. As a concrete example, a solution to the Lotka-Volterra equations will now be calculated using the popular numerical software Matlab. The Lotka-Volterra equations are a simple model from biology that describes the interactions between predator and prey populations. Given the differential equation system

with the parameters and the initial condition , . Here, and correspond to the temporal development of the prey and predator population respectively. The solution should be calculated on the time interval .

For the calculation using Matlab, the function is first defined for the given parameter values on the right-hand side of the differential equation :

a = 1; b = 2; c = 1; d = 1;
f = @(t,y) [a*y(1) - b*y(1)*y(2); c*y(1)*y(2) - d*y(2)];

The time interval and the initial values are also required:

t_int = [0, 20];
y0 = [3; 1];

The solution can then be calculated:

[t, y] = ode45(f, t_int, y0);

The Matlab function ode45 implements a one-step method that uses two embedded explicit Runge-Kutta methods with convergence orders 4 and 5 for step size control.[29]

The solution can now be plotted, as a blue curve and as a red curve; the calculated points are marked by small circles:

figure(1)
plot(t, y(:,1), 'b-o', t, y(:,2), 'r-o')

The result is shown below in the left-hand image. The right-hand image shows the step sizes used by the method and was generated with

figure(2)
plot(t(1:end-1), diff(t))

This example can also be executed without changes using the free numerical software GNU Octave. However, the method implemented there results in a slightly different step size sequence.

Literature[edit]

  • John C. Butcher (2008), Numerical Methods for Ordinary Differential Equations, Chichester: John Wiley & Sons, ISBN 978-0-470-72335-7
  • Wolfgang Dahmen, Arnold Reusken (2008), "Kap. 11: Gewöhnliche Differentialgleichungen", Numerik für Ingenieure und Naturwissenschaftler (2. ed.), Berlin/Heidelberg: Springer, ISBN 978-3-540-76492-2
  • Peter Deuflhard, Folkmar Bornemann (2008), Numerische Mathematik 2 – Gewöhnliche Differentialgleichungen (3. ed.), Berlin: Walter de Gruyter, ISBN 978-3-11-020356-1
  • David F. Griffiths, Desmond J. Higham (2010), Numerical Methods for Ordinary Differential Equations – Initial Value Problems, London: Springer, ISBN 978-0-85729-147-9
  • Robert Plato (2010), "Kap. 7: Einschrittverfahren für Anfangswertprobleme", Numerische Mathematik kompakt (4. ed.), Wiesbaden: Vieweg+Teubner, ISBN 978-3-8348-1018-2
  • Hans-Jürgen Reinhardt (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Berlin/Boston: Walter de Gruyter, ISBN 978-3-11-028045-6
  • Hans Rudolf Schwarz, Norbert Köckler (2011), "Kap. 8: Anfangswertprobleme", Numerische Mathematik (8. ed.), Wiesbaden: Vieweg+Teubner, ISBN 978-3-8348-1551-4
  • Karl Strehmel, Rüdiger Weiner, Helmut Podhaisky (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Wiesbaden: Springer Spektrum, ISBN 978-3-8348-1847-8{{citation}}: CS1 maint: multiple names: authors list (link)

External links[edit]

References[edit]

  1. ^ Thomas Sonar (2011), 3000 Jahre Analysis, Berlin/Heidelberg: Springer, pp. 378–388 und 401–426, ISBN 978-3-642-17203-8
  2. ^ Jean-Luc Chabert u. a. (1999), A History of Algorithms, Berlin/Heidelberg: Springer, pp. 374–378, ISBN 978-3-540-63369-3
  3. ^ Wolfgang Dahmen, Arnold Reusken (2008), Numerik für Ingenieure und Naturwissenschaftler (2. ed.), Berlin/Heidelberg: Springer, pp. 386 f, ISBN 978-3-540-76492-2
  4. ^ Wolfgang Dahmen, Arnold Reusken (2008), Numerik für Ingenieure und Naturwissenschaftler (2. ed.), Berlin/Heidelberg: Springer, pp. 386–392, ISBN 978-3-540-76492-2
  5. ^ Hans Rudolf Schwarz, Norbert Köckler (2011), Numerische Mathematik (8. ed.), Wiesbaden: Vieweg+Teubner, pp. 350 f, ISBN 978-3-8348-1551-4
  6. ^ Robert Plato (2010), Numerische Mathematik kompakt (4. ed.), Wiesbaden: Vieweg+Teubner, p. 157, Bibcode:2010nmk..book.....P, ISBN 978-3-8348-1018-2
  7. ^ Robert Plato (2010), Numerische Mathematik kompakt (4. ed.), Wiesbaden: Vieweg+Teubner, p. 156, Bibcode:2010nmk..book.....P, ISBN 978-3-8348-1018-2
  8. ^ Robert Plato (2010), Numerische Mathematik kompakt (4. ed.), Wiesbaden: Vieweg+Teubner, p. 157, Bibcode:2010nmk..book.....P, ISBN 978-3-8348-1018-2
  9. ^ Hans-Jürgen Reinhardt (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Berlin/Boston: Walter de Gruyter, pp. 42 f, ISBN 978-3-11-028045-6
  10. ^ John C. Butcher (2008), Numerical Methods for Ordinary Differential Equations, Chichester: John Wiley & Sons, pp. 95–100, ISBN 978-0-470-72335-7
  11. ^ J. C. Butcher (2000-12-15), "Numerical methods for ordinary differential equations in the 20th century", Journal of Computational and Applied Mathematics, vol. 125, no. 1–2, pp. 21 f.
  12. ^ Peter Deuflhard, Folkmar Bornemann (2008), Numerische Mathematik 2 – Gewöhnliche Differentialgleichungen (3. ed.), Berlin: Walter de Gruyter, pp. 228 f, ISBN 978-3-11-020356-1
  13. ^ Peter Deuflhard, Folkmar Bornemann (2008), Numerische Mathematik 2 – Gewöhnliche Differentialgleichungen (3. ed.), Berlin: Walter de Gruyter, pp. 229–231, ISBN 978-3-11-020356-1
  14. ^ Wolfgang Dahmen, Arnold Reusken (2008), Numerik für Ingenieure und Naturwissenschaftler (2. ed.), Berlin/Heidelberg: Springer, pp. 443 f, ISBN 978-3-540-76492-2
  15. ^ Karl Strehmel, Rüdiger Weiner, Helmut Podhaisky (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Wiesbaden: Springer Spektrum, pp. 258 f, ISBN 978-3-8348-1847-8{{citation}}: CS1 maint: multiple names: authors list (link)
  16. ^ Jean-Luc Chabert u. a. (1999), A History of Algorithms, Berlin/Heidelberg: Springer, pp. 378 f, ISBN 978-3-540-63369-3
  17. ^ Jean-Luc Chabert u. a. (1999), A History of Algorithms, Berlin/Heidelberg: Springer, pp. 381–388, ISBN 978-3-540-63369-3
  18. ^ Wolfgang Dahmen, Arnold Reusken (2008), Numerik für Ingenieure und Naturwissenschaftler (2. ed.), Berlin/Heidelberg: Springer, pp. 406 f., ISBN 978-3-540-76492-2
  19. ^ J. C. Butcher (2000-12-15), "Numerical methods for ordinary differential equations in the 20th century", Journal of Computational and Applied Mathematics, vol. 125, no. 1–2, pp. 4–6
  20. ^ Peter Deuflhard, Folkmar Bornemann (2008), Numerische Mathematik 2 – Gewöhnliche Differentialgleichungen (3. ed.), Berlin: Walter de Gruyter, pp. 160–162, ISBN 978-3-11-020356-1
  21. ^ Karl Strehmel, Rüdiger Weiner, Helmut Podhaisky (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Wiesbaden: Springer Spektrum, pp. 219–221, ISBN 978-3-8348-1847-8{{citation}}: CS1 maint: multiple names: authors list (link)
  22. ^ Karl Strehmel, Rüdiger Weiner, Helmut Podhaisky (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Wiesbaden: Springer Spektrum, pp. 79 ff, ISBN 978-3-8348-1847-8{{citation}}: CS1 maint: multiple names: authors list (link)
  23. ^ J. C. Butcher (2000-12-15),"Numerical methods for ordinary differential equations in the 20th century", Journal of Computational and Applied Mathematics, vol. 125, no. 1–2, p. 26
  24. ^ Robert Plato (2010), Numerische Mathematik kompakt (4. ed.), Wiesbaden: Vieweg+Teubner, pp. 171–173, Bibcode:2010nmk..book.....P, ISBN 978-3-8348-1018-2
  25. ^ Karl Strehmel, Rüdiger Weiner, Helmut Podhaisky (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Wiesbaden: Springer Spektrum, pp. 57–59, ISBN 978-3-8348-1847-8{{citation}}: CS1 maint: multiple names: authors list (link)
  26. ^ Peter Deuflhard, Folkmar Bornemann (2008), Numerische Mathematik 2 – Gewöhnliche Differentialgleichungen (3. ed.), Berlin: Walter de Gruyter, pp. 199–204, ISBN 978-3-11-020356-1
  27. ^ Robert Plato (2010), "Kap. 7: Einschrittverfahren für Anfangswertprobleme", Numerische Mathematik kompakt (4. ed.), Wiesbaden: Vieweg+Teubner, pp. 173–177, ISBN 978-3-8348-1018-2
  28. ^ Karl Strehmel, Rüdiger Weiner, Helmut Podhaisky (2012), Numerik gewöhnlicher Differentialgleichungen (2. ed.), Wiesbaden: Springer Spektrum, pp. 64–70, ISBN 978-3-8348-1847-8{{citation}}: CS1 maint: multiple names: authors list (link)
  29. ^ "ode45: Solve nonstiff differential equations — medium order method". MathWorks. Retrieved 2017-11-23.