Documentation
Mathematica
Built-in Functions
Advanced Documentation
Differential Equations
NDSolve
Composition and Splitting
Introduction
In some cases it is useful to split the differential system into subsystems and solve each subsystem using appropriate integration methods. Recombining the individual solutions often allows certain dynamical properties, such as volume, to be conserved.
Definitions
We are concerned with initial value problems
,
given.
Composition
Composition is a useful device for raising the order of a numerical integration scheme.
In contrast to the Aitken-Neville algorithm used in extrapolation, composition can conserve geometric properties of the base integration method (e.g. symplecticity).
Let
be a basic integration method that takes a step of size
with
given real numbers.
Then the
stage composition method
is given by:

Often we are interested in composition methods
that involve the same base method 
An interesting special case is symmetric composition:
,
.
The most common types of composition are:
Symmetric composition of symmetric second-order methods.
Symmetric composition of first-order methods (e.g. a method
with its adjoint
).
Composition of first-order methods.
Splitting
An
-stage splitting method is a generalization of a composition method in which
is broken up in an additive fashion:
,
.
The essential point is that there can often be computational advantages in solving problems involving
instead of
.
An
stage splitting method is a composition of the form:

with
not necessarily distinct.
Each base integration method now only solves part of the problem, but a suitable composition can still give rise to a numerical scheme with advantageous properties.
If the vector field
is integrable, then the exact solution or flow
can be used in place of a numerical integration method.
A splitting method may also use a mixture of flows and numerical methods.
An example is Lie-Trotter splitting [T59]:
Split
with
; then
yields a first-order integration method.
Computationally it can be advantageous to combine flows using the group property:
.
Implementation
Several changes to the new NDSolve framework were needed in order to implement splitting and composition methods.
Allow a method to call an arbitrary number of submethods.
The ability to pass around a function for numerically evaluating a subfield, instead of the entire vector field.
A LocallyExact method to compute the flow; analytically solve a subsystem and advance the (local) solution numerically.
Cache data for identical methods to avoid repeated initialization. Data for numerically evaluating identical subfields is also cached.
A simplified input syntax allows omitted vector fields and methods to be filled in cyclically. These must be defined unambiguously:
can be input as
.
cannot be input as
since this corresponds to
.
Nested methods
The following example constructs a high-order splitting method from a low-order splitting using composition.

Simplification
A more efficient integrator can be obtained in the previous example using the group property of flows and calling the Splitting method directly.

Examples
The following examples will use a second-order symmetric splitting known as the Strang splitting [S68], [M68]. The following defines a function to evaluate the coefficients to a given precision.
In[1]:=
This defines a method known as symplectic leapfrog in terms of the method SymplecticPartitionedRungeKutta.
In[2]:=
Load a package with some useful example problems.
In[3]:=
Symplectic splitting
Symplectic leapfrog
SymplecticPartitionedRungeKutta is an efficient method for solving separable Hamiltonian systems
with favorable long time dynamics.
Splitting is a more general-purpose method, but it can be used to construct partitioned symplectic methods (though it is somewhat less efficient than SymplecticPartitionedRungeKutta).
Consider the harmonic oscillator that arises from a linear differential system that is governed by the separable Hamiltonian H(p,q) =
+ 
In[20]:=
Out[20]=
Split the Hamiltonian vector field into independent components governing momentum and position. This is done by setting the relevant right-hand sides of the equations to zero.
In[21]:=
This composition of weighted (first-order) Euler integration steps correspond to the symplectic (second-order) leapfrog method.
In[28]:=
Out[31]=
The method ExplicitEuler could only have been specified once, since the second and third instances would have been filled in cyclically.
This is the result at the end of the integration step.
In[32]:=
Out[32]//InputForm=
This invokes the built-in integration method corresponding to the symplectic leapfrog integrator.
In[33]:=
Out[33]=
The result at the end of the integration step is identical to the result of the splitting method.
In[34]:=
Out[34]//InputForm=
Composition of symplectic leapfrog
This takes the symplectic leapfrog scheme as the base integration method and constructs a fourth-order symplectic integrator using a symmetric composition of Yoshida [Y90].
In[43]:=
Out[45]=
This is the result at the end of the integration step.
In[42]:=
Out[42]//InputForm=
This invokes the built-in symplectic integration method using coefficients for the fourth-order methods of Ruth, Yoshida.
In[46]:=
Out[47]=
The result at the end of the integration step is identical to the result of the composition method.
In[49]:=
Out[49]//InputForm=
Hybrid methods
While a closed-form solution often does not exist for the entire vector field, in some cases it is possible to analytically solve a system of differential equations for part of the vector field.
When a solution can be found by DSolve, direct numerical evaluation can be used to locally advance the solution.
This idea is implemented in the method .
Harmonic oscillator test example
This example checks that the solution for the exact flows of split components of the harmonic oscillator equations is the same as applying Euler's method to each of the split components.
In[98]:=
In[106]:=
In[107]:=
Out[107]//InputForm=
In[108]:=
Out[109]//InputForm=
Hybrid numeric-symbolic splitting methods (ABC flow)
Consider the Arnold, Beltrami, and Childress flow, a widely studied model for volume-preserving three-dimensional flows.
In[70]:=
Out[70]=
When applied directly, a volume preserving integrator would not in general preserve symmetries. A symmetry-preserving integrator, such as the implicit midpoint rule, would not preserve volume.
This defines a splitting of the system by setting some of the right hand side components to zero.
In[71]:=
In[76]:=
Out[76]=
In[77]:=
Out[77]=
The system for Y1 is solvable exactly by DSolve so that we can use the LocallyExact method.
Y2 is not solvable, however, so we need to use a suitable numerical integrator in order to obtain the desired properties in the splitting method.
This defines a method for computing the implicit midpoint rule in terms of the built-in ImplicitRungeKutta method.
In[78]:=
This defines a second-order, volume-preserving, reversing symmetry-group integrator [M02].
In[97]:=
Out[97]=
Lotka-Volterra equations
Various numerical integrators for this system are compared within .
Euler's equations
Various numerical integrators for Euler's equations are compared within .
Non-autonomous vector fields
Consider the Duffing oscillator, a forced planar non-autonomous differential system.
In[124]:=
Out[124]=
This defines a splitting of the system.
In[125]:=
The splitting of the time component among the vector fields is ambiguous, so the method issues an error message.
In[127]:=


Out[127]=
The equations can be extended by introducing a new "dummy" variable Z[T] such that Z[T]
T and specifying how it should be distributed in the split differential systems.
In[156]:=
This defines a geometric splitting method that satisfies
for any finite time interval, where
and
are the Lyapunov exponents [M02].
In[162]:=
Out[162]=
Here is a plot of the solution.
In[165]:=

Option summary
The default coefficient choice in Composition tries to automatically select between SymmetricCompositionCoefficients and SymmetricCompositionSymmetricMethodCoefficients depending on the properties of the methods specified using the Method option.

Options of the method Composition.

Options of the method Splitting.