Derivation: one-step Adams-Moulton (AM2)
Full construction of AM2: Lagrange interpolant including the new node, change of variable, computed 1/2-1/2 weights, connection with the trapezoidal rule and local error.
Step 1: integral form
Start from the IVP . Integrate both sides between and :
By the Fundamental Theorem of Calculus, the left-hand side is exact. The only part to approximate is the integral of :
In the numerical formula write and :
Step 2: interpolate f on the new interval
Unlike AB2, AM2 interpolates at and . Thus it uses and :
The Lagrange basis functions are:
Substitution gives the line that approximates the slope inside the subinterval:
Step 3: change of variable and integrals
To integrate, use the same change as in your notes: . Then , , and the limits are and .
With this change, the interpolant becomes:
Integrate the term:
Integrate the term:
Therefore the slope integral is approximated by the sum of those two weights:
Substituting into the integral form gives AM2:
Step 4: why it is implicit
The key detail is that has not been computed yet:
So the formula is really an equation for the unknown :
If solving with Newton, define a residual , keeping only for the ODE function:
Newton updates the approximation until is essentially zero:
In a predictor-corrector pair, one usually predicts with AB2 and inserts that prediction into AM2:
Step 5: error and link with the trapezoid
The formula obtained is exactly the trapezoidal rule applied to the slope integral . Since the trapezoid has local error proportional to the third derivative,
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.