8.9. Predictor-Corrector Methods — Coming Soon#
References:
Section 6.7 Multistep Methods in [Sauer, 2019].
Section 5.6 Multistep Methods in [Burden et al., 2016].
Introduction#
We have seen one predictor-corrector method already: the explicit trapezoid method, which uses Euler’s method to predict a first approximation of the solution, and then corrects this using an approximation of the implicit trapezoid method.
We will look at combining the
import numpy as np
from matplotlib import pyplot as plt
# Shortcuts for some favorite commands:
from matplotlib.pyplot import figure, plot, grid, title, xlabel, ylabel, legend