General linear methods

From HandWiki

General linear methods (GLMs) are a large class of numerical methods used to obtain numerical solutions to ordinary differential equations. They include multistage Runge–Kutta methods that use intermediate collocation points, as well as linear multistep methods that save a finite time history of the solution. John C. Butcher originally coined this term for these methods, and has written a series of review papers[1] [2] [3] a book chapter[4] and a textbook[5] on the topic. His collaborator, Zdzislaw Jackiewicz also has an extensive textbook[6] on the topic. The original class of methods were originally proposed by Butcher (1965), Gear (1965) and Gragg and Stetter (1964).

Some definitions

Numerical methods for first-order ordinary differential equations approximate solutions to initial value problems of the form

[math]\displaystyle{ y' = f(t,y), \quad y(t_0) = y_0. }[/math]

The result is approximations for the value of [math]\displaystyle{ y(t) }[/math] at discrete times [math]\displaystyle{ t_i }[/math]:

[math]\displaystyle{ y_i \approx y(t_i) \quad\text{where}\quad t_i = t_0 + i h, }[/math]

where h is the time step (sometimes referred to as [math]\displaystyle{ \Delta t }[/math]).

A description of the method

We follow Butcher (2006), pps 189–190 for our description, although we note that this method can be found elsewhere.

General linear methods make use of two integers, [math]\displaystyle{ r }[/math], the number of time points in history and [math]\displaystyle{ s }[/math], the number of collocation points. In the case of [math]\displaystyle{ r=1 }[/math], these methods reduce to classical Runge–Kutta methods, and in the case of [math]\displaystyle{ s=1 }[/math], these methods reduce to linear multistep methods.

Stage values [math]\displaystyle{ Y_i }[/math] and stage derivatives, [math]\displaystyle{ F_i, i=1,2,\dots s }[/math] are computed from approximations, [math]\displaystyle{ y_i^{[n-1]}, i=1, \dots, r }[/math], at time step [math]\displaystyle{ n }[/math]:

[math]\displaystyle{ y^{[n-1]} = \left[ \begin{matrix} y_1^{[n-1]} \\ y_2^{[n-1]} \\ \vdots \\ y_r^{[n-1]} \\ \end{matrix} \right], \quad y^{[n]} = \left[ \begin{matrix} y_1^{[n]} \\ y_2^{[n]} \\ \vdots \\ y_r^{[n]} \\ \end{matrix} \right], \quad Y = \left[ \begin{matrix} Y_1 \\ Y_2 \\ \vdots \\ Y_s \end{matrix} \right], \quad F = \left[ \begin{matrix} F_1 \\ F_2 \\ \vdots \\ F_s \end{matrix} \right] = \left[ \begin{matrix} f(Y_1) \\ f(Y_2) \\ \vdots \\ f(Y_s) \end{matrix} \right]. }[/math]

The stage values are defined by two matrices, [math]\displaystyle{ A = [a_{ij} ] }[/math] and [math]\displaystyle{ U = [ u_{ij} ] }[/math]:

[math]\displaystyle{ Y_i = \sum_{j=1}^s a_{ij} h F_j + \sum_{j=1}^r u_{ij} y_j^{[n-1]}, \qquad i=1,2, \dots, s, }[/math]

and the update to time [math]\displaystyle{ t^n }[/math] is defined by two matrices, [math]\displaystyle{ B = [b_{ij}] }[/math] and [math]\displaystyle{ V = [v_{ij}] }[/math]:

[math]\displaystyle{ y_i^{[n]} = \sum_{j=1}^s b_{ij} h F_j + \sum_{j=1}^r v_{ij} y_j^{[n-1]}, \qquad i=1, 2, \dots, r. }[/math]

Given the four matrices, [math]\displaystyle{ A, U, B }[/math] and [math]\displaystyle{ V }[/math], one can compactly write the analogue of a Butcher tableau as,

[math]\displaystyle{ \left[ \begin{matrix} Y \\ y^{[n]} \end{matrix} \right] = \left[ \begin{matrix} A \otimes I & U \otimes I \\ B \otimes I & V \otimes I \end{matrix} \right] \left[ \begin{matrix} h F \\ y^{[n-1]} \end{matrix} \right], }[/math]

where [math]\displaystyle{ \otimes }[/math] stands for the tensor product.

Examples

We present an example described in (Butcher, 1996).[7] This method consists of a single 'predicted' step, and 'corrected' step, that uses extra information about the time history, as well as a single intermediate stage value.

An intermediate stage value is defined as something that looks like it came from a linear multistep method:

[math]\displaystyle{ y^*_{n-1/2} = y_{n-2} + h \left( \frac9 8 f( y_{n-1} ) + \frac3 8 f( y_{n-2} ) \right). }[/math]

An initial 'predictor' [math]\displaystyle{ y^*_n }[/math] uses the stage value [math]\displaystyle{ y^*_{n-1/2} }[/math] together with two pieces of time history:

[math]\displaystyle{ y^*_n = \frac{28}{5} y_{n-1} - \frac{23}{5} y_{n-2} + h \left( \frac{32}{15} f( y^*_{n-1/2} ) - 4 f( y_{n-1} ) - \frac{26}{15} f( y_{n-2} ) \right), }[/math]

and the final update is given by:

[math]\displaystyle{ y_n = \frac{32}{31} y_{n-1} - \frac{1}{31} y_{n-2} + h \left( \frac{5}{31} f( y^*_n ) + \frac{64}{93} f( y^*_{n-1/2} ) + \frac{4}{31} f( y_{n-1} ) - \frac{1}{93} f( y_{n-2} ) \right). }[/math]

The concise table representation for this method is given by:

[math]\displaystyle{ \left[ \begin{array}{ccc|cccc} 0 & 0 & 0 & 0 & 1 & \frac{9}{8} & \frac{3}{8} \\ \frac{32}{15} & 0 & 0 & \frac{28}{5} & -\frac{23}{5} & -4 & -\frac{26}{15} \\ \frac{64}{93} & \frac{5}{31} & 0 & \frac{32}{31} & -\frac{1}{31} & \frac{4}{31} & -\frac{1}{93} \\ \hline \frac{64}{93} & \frac{5}{31} & 0 & \frac{32}{31} & -\frac{1}{31} & \frac{4}{31} & -\frac{1}{93} \\ 0 & 0 & 0 & 1 & 0 & 0 & 0 \\ 0 & 0 & 1 & 0 & 0 & 0 & 0 \\ 0 & 0 & 0 & 0 & 0 & 1 & 0 \\ \end{array} \right]. }[/math]

See also

Notes

  1. Butcher, John C. (February–March 1996). "General linear methods". Computers & Mathematics with Applications 31 (4–5): 105–112. doi:10.1016/0898-1221(95)00222-7. 
  2. Butcher, John (May 2006). "General linear methods". Acta Numerica 15: 157–256. doi:10.1017/S0962492906220014. Bibcode2006AcNum..15..157B. 
  3. Butcher, John (February 2009). "General linear methods for ordinary differential equations". Mathematics and Computers in Simulation 79 (6): 1834–1845. doi:10.1016/j.matcom.2007.02.006. 
  4. Butcher, John (2005). "General Linear Methods". Numerical Methods for Ordinary Differential Equations. John Wiley & Sons, Ltd. pp. 357–413. doi:10.1002/0470868279.ch5. ISBN 9780470868270. 
  5. Butcher, John (1987). The numerical analysis of ordinary differential equations: Runge–Kutta and general linear methods. Wiley-Interscience. ISBN 978-0-471-91046-6. http://dl.acm.org/citation.cfm?id=22730. 
  6. Jackiewicz, Zdzislaw (2009). General Linear Methods for Ordinary Differential Equations. Wiley. ISBN 978-0-470-40855-1. http://www.wiley.com/WileyCDA/WileyTitle/productCd-0470408553.html. 
  7. Butcher 1996, p. 107

References

  • Butcher, John C. (January 1965). "A Modified Multistep Method for the Numerical Integration of Ordinary Differential Equations". Journal of the ACM 12 (1): 124–135. doi:10.1145/321250.321261. 
  • Gear, C.W. (1965). "Hybrid Methods for Initial Value Problems in Ordinary Differential Equations". Journal of the Society for Industrial and Applied Mathematics, Series B: Numerical Analysis 2 (1): 69–86. doi:10.1137/0702006. Bibcode1965SJNA....2...69G. 
  • Gragg, William B.; Hans J. Stetter (April 1964). "Generalized Multistep Predictor-Corrector Methods". Journal of the ACM 11 (2): 188–209. doi:10.1145/321217.321223. 
  • Hairer, Ernst; Wanner, Wanner (1973), "Multistep-multistage-multiderivative methods for ordinary differential equations", Computing 11 (3): 287–303, doi:10.1007/BF02252917 .

External links