For one-step methods such as Runge–Kutta, Theorem 6.2.1 guarantees that the method converges and that the global error is of the same order as the local truncation error. For multistep methods, however, a new wrinkle is introduced.
The source of the exponential growth in Demo 6.8.1 is not hard to identify. Recall that we can rewrite (6.8.1) as ρ(Z)ui−1=hσ(Z)ui−1 using the forward shift operator Z:
Therefore, as h→0, the two roots of z2+4z+5 will each correspond to an approximate solution in the form (6.8.4) of the LIAF method. These roots are z=1 and z=−5, and the growth curve at the end of Demo 6.8.1 is approximately ∣(−5)i∣.
It turns out that lacking zero-stability is the only thing that can go wrong for a consistent multistep method.
The Dahlquist equivalence theorem is one of the most important and celebrated in the history of numerical analysis. It can be proved more precisely that a zero-stable, consistent method is convergent in the same sense as Theorem 6.2.1, with the error between numerical and exact solutions being of the same order as the local truncation error, for a wide class of problems.
You may have noticed that the Adams and BD formulas use only about half of the available data from the past k steps, i.e., they have many possible coefficients set to zero. For instance, a k-step AB method uses only the fj-values and has order k. The order could be made higher by also using uj-values, like the LIAF method does for k=2. Also like the LIAF method, however, such attempts are doomed by instability.
The lesson of Theorem 6.8.3 is that accuracy is not the only important feature, and trying to optimize for it leads to failure. New lessons on the same theme appear in section-diffusion-absstab.
✍ Show that the LIAF method (6.8.1) has order of accuracy equal to 3.
✍ / ⌨ Verify that the order of accuracy of the given multistep method is at least 1. Then apply Theorem 6.8.1 to determine whether it is zero-stable.
(a) BD2
(b) BD3
(c)ui+1=ui−1+2hfi
(d)ui+1=−ui+ui−1+ui−2+32h(4fi+fi−1+fi−2)
(e)ui+1=ui−3+34h(2fi−fi−1+2fi−2)
(f)ui+1=−2ui+3ui−1+h(fi+1+2fi+fi−1)
✍ A Fibonacci sequence is defined by ui+1=ui+ui−1, where u0 and u1 are seed values. Using the proof of Theorem 6.8.1, find r1 and r2 such that ui=c1(r1)i+c2(r2)i for all i.
✍ (a) Suppose that ρ(r)=ρ′(r)=0. Show that ui=iri is a solution of the difference equation ρ(Z)ui=0.
(b) Explain why the result of part (a) implies that a non-simple root r with ∣r∣=1 makes it impossible for a multistep method to be zero-stable.