Numerical Analysis/Computing the order of numerical methods for ODE's
Numerical methods for ordinary differential equations order computation
[edit | edit source]Introduction
[edit | edit source]The subject of this analysis is the order of accuracy of numerical methods for solving ordinary differential equations. When we mention "order of accuracy" for a particular numerical method, we usually mean the order of the global truncation error. The global error is the cumulative error in the numerical solution that is produced on an interval that we need the ODE to solve on. A local truncation error is the error in the numerical solution (the round off errors produced by computing are excluded) generated at a particular step, when the previous step solution is considered exact (although it is not exact, unless the previous step is the boundary or initial condition). The local truncation error is usually denoted as , where n is the order of accuracy on the entire interval of the differential equation and h is the step size (for fixed step size discretization). The importance of the order of a numerical method is reflected in the fact that we need fewer steps to numerically solve an ODE with a prescribed error tolerance, if we use a higher order numerical method. This issue becomes very important when we try to solve an ODE that describes a relatively fast changing physical proccess, such as an internal combustion in the IC machines, vibrations in structures, etc.
The following two examples show how to determine the order of a numerical method. The first example is about a set of Runge Kutta methods of the second order. It shows how we can derive the conditions on the parameters that we introduce in the general form of the method and the possible choices for the parameters. The second example can be used as an exercise, since some steps are hidden and can be seen by selecting the marked button to show the missing steps that complete the derivation. The example shows how the conditions are derived for a Runge Kutta type general form with slope evaluations at three different locations within the current step. The main discussion is about the comparison of the Taylor series expansion and the corresponding numerical method recurrence equation. Based on this comparison, term by term, we conclude on the order of the local truncation error, which is then used to make a statement about the order of the method. The examples are followed by a concept quiz, which is convenient for a user to review the theoretical details that are used in the examples. Finally, we end up the analysis with a conclusion.
Example 1. Determination of the parameters to establish a second order Runge Kutta method
[edit | edit source]Let a single step numerical method for solving ODE of the type
-
(
)
be given by the following [2,4] recurrence formula
with
Using Taylor series expansion about tn, the following can be obtained
-
(
)
Assuming that the previous point in (1.2) is exact (which we may because we are analyzing the local truncation error, i.e. the error generated at the last step), we will denote . Therefore, both and are considered exact values of at and , respectively.
Then,
-
(
)
Using the differential equation (1.1) and replacing the derivatives of y, (1.3) becomes
-
(
)
where
-
(
)
or in the compact form (1.5) is
and
-
(
)
or in the compact form (1.6) is
After substituting the expressions for f′ and f″ into the Taylor series expansion (1.4), the following is obtained
-
(
)
Now, our objective is to adjust the method's recurrence equation (1.2), such that it can be compared, term by term, with the equation obtained using the Taylor series expansion (1.7). This step requires the Taylor series expansion of the term about the point, as follows.
-
(
)
or in the compact symbolic form (1.8) is:
-
(
)
By substituting (1.9) into (1.7), the following is obtained
-
(
)
Finally, the method's equation (1.10) and the exact one step solution (1.7) can be compared. By substracting (1.10) from (10.7), the following error expression is obtained.
-
(
)
where
-
(
)
It can be noticed that the multiplier expression of in (1.12) does not cancel out in (1.11) for any combination of the parameters, since there are terms that appear only once without any parameter. This means that the dominant term in the error expression cannot be of higher order than . In order to achieve the local truncation error of the third order, all terms in the error expression containing must be eliminated, by adjusting the 4 parameters. By satisfying the equations (1.13-1.15), the local error is of , and, consequently, the global error is of order. Therefore, the resulting method is a second order method.
The equation set that must satisfied is the following
-
(
)
-
(
)
-
(
)
There are three equations (1.13,1.14,1.15) but with four unknown parameters. This means that one parameter must be chosen. Now, it is tempting to ask whether the extra parameter (additional degree of freedom) could be used to cancel next term in the error expression. However, we have already seen that it is not possible in this case, due to the additional term that are not associated (multiplied) with a parameter.
Since one parameter can be chosen, then there is non-unique form of a second order method.
- (case 1) Choose , then
The method equation (1.2) for these parameter becomes
with
or in a compact form
- (case 2) If is chosen (notice that cannot be selected, because of the last two equations), then
or in a compact form
Example/Exercise 2. A single step ODE numerical method order computing with three slope evaluations (Runge Kutta 3-rd order)
[edit | edit source]Let the recurrence equation of a method be given by the following of Runge Kutta type with three slope evaluations at each step
-
(
)
with
Taylor series expansion of about is the same as in Example 1. Therefore, we will just use the final expression (1.7), since the procedure of the derivation is the same. For convenience, the final expression is repeated, which is going to be a reference equation for the comparison with the method's recurrence equation. Since the formulas for the given form of recurrence equation will get complicated, we will use the compact symbolic notation for the derivatives, which is shown in Example 1.
-
(
)
The Taylor expansion of the terms in (2.2) is shown up to , rather then up to , as we should in order to check that eventually next higher order terms cancel out, but we will assume that the method cannot achieve better local accuracy then fourth order, or equivalently, the global error of the third order. This will save us getting into the third level expansion of the two variable function f, which has 18 terms and would not be appropriate due to its length (even if the compact symbolic notation is used).
After we prepared the Taylor series expansion, we need to adjust the method's recurrence equation such that it can be compared with the Taylor series (2.2).
The Taylor expansion (equation 2.3)
Now, we need to group the terms in the similar way they are grouped in the Taylor series (2.2), such that we can establish the conditions on the parameters that will yield the same terms as in the Taylor expansion up to the terms containing .
-
(
)
By comparing the two expressions (2,4) and (2,2), the following system of equations is obtained.
-
(
)
-
(
)
-
(
)
-
(
)
-
(
)
-
(
)
-
(
)
-
(
)
At the first glance, the system is closed, the number of equations is (2.5 through 2.12) which matches the number of undetermined parameters. However, only 6 equations are independent, the rest of them can be obtained from those 6 equations. By dividing (2.10) with (2.12), we can obtain that . Similarly, by substracting (2.11) from (2.9) equation, we see that . When we replace these two results into the rest of the equations, it is evident that the (2.6) and the (2.7) are the same, and (2.8) and the (2.9) equations are the same. Therefore, two equations can be obtained from other six, and we have to choose two variables in order to obtain a solution for the parameters.
For example, we can choose that , then we obtain the following recurrence equation.
-
(
)
where
The recurrence equation (2.13) is known Runge Kutta third order method [1,3] (List of Runge–Kutta methods), which indicates that our approach was correct.
Quiz - Method order computations, local and global truncation error
[edit | edit source]
Conclusion
[edit | edit source]The main reason that we need to consider the order of a numerical method for solving ODE's is that it directly determines the step size i.e. the number of steps that we need to calculate the recurrence equation for. This directly influences the amount of computational work to obtain the prescribed accuracy.
The main approach for computing the order of a numerical method is that we first use Taylor series expansion for the exact differential equation to obtain the next value, namely using the previous value and the right hand side function evaluated at . We cannot say in advance up to which order we need to expand those terms in the Taylor series, since we are solving for the order of the method. The general rule is to expand the terms one order higher that we expect the method order is.
The second part of the method order computing is to write all terms in the given method recurrence equation in terms of the functions f and y evaluated at . Hence, the function f appearing in the recurrence equation as an evaluation at time different than , need to be replaced with a truncated Taylor series expansion about .
The third part is to compare those two expressions obtained in the two forementioned ways. The order with respect to the powers of h, up to which the terms from the adjusted recurrence equation match the terms in the Taylor series expansion, represent the order of local truncation error. After we computed the order of the local truncation error, the global truncation error is one order less than the local error order.
Since the order of a numerical method for ODE is, by the definition, equal to the global error order, we only need to compute the local truncation error order and substract one from it.
There are some methods that do not have preciselly determined order. It is usually the case with the predictor corrector methods, like the Runge-Kutta method 45.
References
[edit | edit source][1] A list of the Runge - Kutta methods at Wikipedia List of Runge–Kutta methods, on November 5, 2010
[2] Ian Jacques and Colin Judd, "Numerical Analysis," Chapman and Hall, New York, 1987
[3] Topic Runge Kutta methods on Wikipedia Runge Kutta methods, on November 5, 2010
[4] John H. Mathews and Kurtis K. Fink, "Numerical Methods Using Matlab," 4th Edition, Prentice-Hall Inc., 2004