Predictor–corrector method
In numerical analysis, a predictor–corrector method is an algorithm that proceeds in two steps. First, the prediction step calculates a rough approximation of the desired quantity. Second, the corrector step refines the initial approximation using another means.
Predictor–corrector methods for solving ODEs
When considering the numerical solution of ordinary differential equations (ODEs), a predictor–corrector method typically uses an explicit method for the predictor step and an implicit method for the corrector step.
Example: Euler method with the trapezoidal rule
A simple predictor–corrector method (known as Heun's method) can be constructed from the Euler method (an explicit method) and the trapezoidal rule (an implicit method).
Consider the differential equation
and denote the step size by .
First, the predictor step: starting from the current value , calculate an initial guess value via the Euler method,
Next, the corrector step: improve the initial guess using trapezoidal rule,
That value is used as the next step.
PEC mode and PECE mode
There are different variants of a predictor–corrector method, depending on how often the corrector method is applied. The Predict–Evaluate–Correct–Evaluate (PECE) mode refers to the variant in the above example:
It is also possible to evaluate the function f only once per step by using the method in Predict–Evaluate–Correct (PEC) mode:
Additionally, the corrector step can be repeated in the hope that this achieves an even better approximation to the true solution. If the corrector method is run twice, this yields the PECECE mode:
The PECEC mode has one fewer function evaluation. More generally, if the corrector is run k times, the method is in P(EC)k or P(EC)kE mode. If the corrector method is iterated until it converges, this could be called PE(CE)∞.[1]
See also
- Backward differentiation formula
- Beeman's algorithm
- Heun's method
- Mehrotra predictor–corrector method
- Numerical continuation
Notes
- ↑ Butcher 2003, p. 104
References
- Butcher, John C. (2003), Numerical Methods for Ordinary Differential Equations, New York: John Wiley & Sons, ISBN 978-0-471-96758-3.
- Press, WH; Teukolsky, SA; Vetterling, WT; Flannery, BP (2007). "Section 17.6. Multistep, Multivalue, and Predictor-Corrector Methods". Numerical Recipes: The Art of Scientific Computing (3rd ed.). New York: Cambridge University Press. ISBN 978-0-521-88068-8.
External links
- Weisstein, Eric W., Methods.html "Predictor-Corrector Methods", MathWorld.
- Predictor–corrector methods for differential equations