

Numerical methods for ordinary differential equations are methods used to findnumerical approximations to the solutions ofordinary differential equations (ODEs). Their use is also known as "numerical integration", although this term can also refer to the computation ofintegrals.
Many differential equations cannot be solved exactly. For practical purposes, however – such as in engineering – a numeric approximation to the solution is often sufficient. Thealgorithms studied here can be used to compute such an approximation. An alternative method is to use techniques fromcalculus to obtain aseries expansion of the solution.
Ordinary differential equations occur in many scientific disciplines, includingphysics,chemistry,biology, andeconomics.[1] In addition, some methods innumerical partial differential equations convert thepartial differential equation into an ordinary differential equation, which must then be solved.
A first-order differential equation is anInitial value problem (IVP) of the form,[2]
| 1 |
where is a function, and the initial condition is a given vector.First-order means that only the first derivative ofy appears in the equation, and higher derivatives are absent.
Without loss of generality to higher-order systems, we restrict ourselves tofirst-order differential equations, because a higher-order ODE can be converted into a larger system of first-order equations by introducing extra variables. For example, the second-order equationy′′ = −y can be rewritten as two first-order equations:y′ =z andz′ = −y.
In this section, we describe numerical methods for IVPs, and remark thatboundary value problems (BVPs) require a different set of tools. In a BVP, one defines values, or components of the solutiony at more than one point. Because of this, different methods need to be used to solve BVPs. For example, theshooting method (and its variants) or global methods likefinite differences,[3]Galerkin methods,[4] orcollocation methods are appropriate for that class of problems.
ThePicard–Lindelöf theorem states that there is a unique solution, providedf isLipschitz-continuous.
Numerical methods for solving first-order IVPs often fall into one of two large categories:[5]linear multistep methods, orRunge–Kutta methods. A further division can be realized by dividing methods into those that are explicit and those that are implicit. For example, implicitlinear multistep methods includeAdams-Moulton methods, andbackward differentiation methods (BDF), whereasimplicit Runge–Kutta methods[6] include diagonally implicit Runge–Kutta (DIRK),[7][8] singly diagonally implicit Runge–Kutta (SDIRK),[9] and Gauss–Radau[10] (based onGaussian quadrature[11]) numerical methods. Explicit examples from thelinear multistep family include theAdams–Bashforth methods, and any Runge–Kutta method with a lower diagonalButcher tableau isexplicit. A loose rule of thumb dictates thatstiff differential equations require the use of implicit schemes, whereas non-stiff problems can be solved more efficiently with explicit schemes.
The so-calledgeneral linear methods (GLMs) are a generalization of the above two large classes of methods.[12]
From any point on a curve, you can find an approximation of a nearby point on the curve by moving a short distance along a linetangent to the curve.
Starting with the differential equation (1), we replace the derivativey′ by thefinite difference approximation
| 2 |
which when re-arranged yields the following formula
and using (1) gives:
| 3 |
This formula is usually applied in the following way. We choose a step sizeh, and we construct the sequence We denote by a numerical estimate of the exact solution. Motivated by (3), we compute these estimates by the followingrecursive scheme
| 4 |
This is theEuler method (orforward Euler method, in contrast with thebackward Euler method, to be described below). The method is named afterLeonhard Euler who described it in 1768.
The Euler method is an example of anexplicit method. This means that the new valueyn+1 is defined in terms of things that are already known, likeyn.
If, instead of (2), we use the approximation
| 5 |
we get thebackward Euler method:
| 6 |
The backward Euler method is animplicit method, meaning that we have to solve an equation to findyn+1. One often usesfixed-point iteration or (some modification of) theNewton–Raphson method to achieve this.
It costs more time to solve this equation than explicit methods; this cost must be taken into consideration when one selects the method to use. The advantage of implicit methods such as (6) is that they are usually more stable for solving astiff equation, meaning that a larger step sizeh can be used.
Exponential integrators describe a large class of integrators that have recently seen a lot of development.[13] They date back to at least the 1960s.
In place of (1), we assume the differential equation is either of the form
| 7 |
or it has been locally linearized about a background state to produce a linear term and a nonlinear term.
Exponential integrators are constructed by multiplying (7) by, and exactly integrating the result overa time interval:
This integral equation is exact, but it doesn't define the integral.
The first-order exponential integrator can be realized by holding constant over the full interval:
| 8 |
The Euler method is often not accurate enough. In more precise terms, it only has order one (the concept oforder is explained below). This caused mathematicians to look for higher-order methods.
One possibility is to use not only the previously computed valueyn to determineyn+1, but to make the solution depend on more past values. This yields a so-calledmultistep method. Perhaps the simplest is theleapfrog method which is second order and (roughly speaking) relies on two time values.
Almost all practical multistep methods fall within the family oflinear multistep methods, which have the form
Another possibility is to use more points in the interval. This leads to the family ofRunge–Kutta methods, named afterCarl Runge andMartin Kutta. One of their fourth-order methods is especially popular.
A good implementation of one of these methods for solving an ODE entails more than the time-stepping formula.
It is often inefficient to use the same step size all the time, sovariable step-size methods have been developed. Usually, the step size is chosen such that the (local) error per step is below some tolerance level. This means that the methods must also compute anerror indicator, an estimate of the local error.
An extension of this idea is to choose dynamically between different methods of different orders (this is called avariable order method). Methods based onRichardson extrapolation,[14] such as theBulirsch–Stoer algorithm,[15][16] are often used to construct various methods of different orders.
Other desirable features include:
Many methods do not fall within the framework discussed here. Some classes of alternative methods are:
Some IVPs require integration at such high temporal resolution and/or over such long time intervals that classical serial time-stepping methods become computationally infeasible to run in real-time (e.g. IVPs in numerical weather prediction, plasma modelling, and molecular dynamics).Parallel-in-time (PinT) methods have been developed in response to these issues in order to reduce simulation runtimes through the use ofparallel computing.
Early PinT methods (the earliest being proposed in the 1960s)[20] were initially overlooked by researchers due to the fact that the parallel computing architectures that they required were not yet widely available. With more computing power available, interest was renewed in the early 2000s with the development ofParareal, a flexible, easy-to-use PinT algorithm that is suitable for solving a wide variety of IVPs. The advent ofexascale computing has meant that PinT algorithms are attracting increasing research attention and are being developed in such a way that they can harness the world's most powerfulsupercomputers. The most popular methods as of 2023 include Parareal, PFASST, ParaDiag, and MGRIT.[21]
Numerical analysis is not only the design of numerical methods, but also their analysis. Three central concepts in this analysis are:
A numerical method is said to beconvergent if the numerical solution approaches the exact solution as the step sizeh goes to 0. More precisely, we require that for every ODE (1) with aLipschitz functionf and everyt* > 0,
All the methods mentioned above are convergent.
Suppose the numerical method is
Thelocal (truncation) error of the method is the error committed by one step of the method. That is, it is the difference between the result given by the method, assuming that no error was made in earlier steps, and the exact solution:
The method is said to beconsistent if
The method hasorder if
Hence a method is consistent if it has an order greater than 0. The (forward) Euler method (4) and the backward Euler method (6) introduced above both have order 1, so they are consistent. Most methods being used in practice attain higher order. Consistency is a necessary condition for convergence[citation needed], but not sufficient; for a method to be convergent, it must be both consistent andzero-stable.
A related concept is theglobal (truncation) error, the error sustained in all the steps one needs to reach a fixed time. Explicitly, the global error at time is where. The global error of ath order one-step method is; in particular, such a method is convergent. This statement is not necessarily true for multi-step methods.
For some differential equations, application of standard methods—such as the Euler method, explicitRunge–Kutta methods, ormultistep methods (for example, Adams–Bashforth methods)—exhibit instability in the solutions, though other methods may produce stable solutions. This "difficult behaviour" in the equation (which may not necessarily be complex itself) is described asstiffness, and is often caused by the presence of different time scales in the underlying problem.[23] For example, a collision in a mechanical system like in animpact oscillator typically occurs at much smaller time scale than the time for the motion of objects; this discrepancy makes for very "sharp turns" in the curves of the state parameters.
Stiff problems are ubiquitous inchemical kinetics,control theory,solid mechanics,weather forecasting,biology,plasma physics, andelectronics. One way to overcome stiffness is to extend the notion of differential equation to that ofdifferential inclusion, which allows for and models non-smoothness.[24][25]
Below is atimeline of some important developments in this field.[26][27]
Boundary value problems (BVPs) are usually solved numerically by solving an approximately equivalent matrix problem obtained by discretizing the original BVP.[28] The most commonly used method for numerically solving BVPs in one dimension is called theFinite Difference Method.[3] This method takes advantage of linear combinations of point values to constructfinite difference coefficients that describe derivatives of the function. For example, the second-ordercentral difference approximation to the first derivative is given by:
and the second-ordercentral difference for the second derivative is given by:
In both of these formulae, is the distance between neighbouringx values on the discretized domain. One then constructs a linear system that can then be solved by standardmatrix methods. For example, suppose the equation to be solved is:
The next step would be to discretize the problem and use linear derivative approximations such as
and solve the resulting system of linear equations. This would lead to equations such as:
On first viewing, this system of equations appears to have difficulty associated with the fact that the equation involves no terms that are not multiplied by variables, but in fact this is false. Ati = 1 andn − 1 there is a term involving the boundary values and and since these two values are known, one can simply substitute them into this equation and as a result have a non-homogeneoussystem of linear equations that has non-trivial solutions.