Implicit multistep methods that include the new node in the interpolation: full derivation of AM2 (implicit trapezoid), AM4, why they require solving a nonlinear equation and what they gain in exchange.
Implicit: using the new node
Adams-Moulton interpolates f including the new point (tk+1,yk+1), which we do not yet know. With the same nodes, the interpolation is one degree richer and the method gains one order over the corresponding Adams-Bashforth; in exchange, yk+1 appears inside f and an equation must be solved at every step.
Derivation of AM2
AM2 interpolates f at tk and at the new node tk+1. The area is trapezoidal, but fk+1=f(tk+1,yk+1) depends on the unknown.
The formula obtained is exactly the trapezoidal rule applied to the slope integral y′(t). Since the trapezoid has local error proportional to the third derivative,
ek+1=−121h3y′′′(ξ)=O(h3)
Local error of AM2; after accumulating steps, the global error is order 2.
Thus AM2 has the same global order as AB2, but a smaller error constant. The improvement is paid for by solving the implicit equation or using a corrector.
yk+1=yk+24h(9fk+1+19fk−5fk−1+fk−2)
AM4, order 4: cubic interpolation including the new node.
Solving the implicit equation
Since yk+1 appears on both sides, each step requires solving a nonlinear equation, often with the Newton-Raphson method: