Title: Multistep methods
1- Multistep methods
- previous methods use information at xi to
predict yi1 - multistep methods use information from xi-1,
xi-2, etc. - leads to better results
2Simple 2nd order method to start Look at Heun
method Euler predictor - O(h2)
Trapezoid corrector - O(h3)
3To improve predictor, use third order Euler
along with same old corrector
iterated until converged
4Can make one more modification - a predictor
modifier Comes from error analysis of yi10
5- So sequence is
- predict
- adjust prediction
- correct
- convereged?
- if not, correct again
6Example of non-self starting Heun method Need two
initial conditions
7- Non-self starting Heun method is O(h3) accurate
in predictor and corrector - Uses
- midpoint method for predictor (open)
- trapezoid method for corrector (closed)
- Try higher order methods
8- We have a number of options
- Newton-Cotes formulas
- open
- closed
- Adams formulas
- open (Adams-Bashforth)
- closed (Adams-Moulton)
9Newton-Cotes approach - Open methods Given can
write
n is order of interpolating polynomial
10n1
(midpoint method)
n2
n3
11Newton-Cotes -- Closed methods General form
Integral evaluated using closed Newton-Cotes
formulas
12n1
(trapezoid rule)
n2
(Simpsons 1/3 rule)
13Adams formulas Open formulas - Adams
Bashforth Example How to get 2nd order
Adams-Bashforth
Taylor series
rewrite
14Use backwards difference for derivative
and substitute
15End up with second order Adams-Bashforth
with error term
Can do the same proceedure on other order Taylor
series, other finite differences Get higher order
Adams Bashforth
16General form for Adams-Bashforth
The bs are listed in your book Example 4th order