Recently I received an exercise that I do not quite understand. It is as follows.
Let $$ y'' + 20y' + 19y = 0, \qquad y(0) = 1 \quad y'(0) = -10 \quad t \geq 0 $$
be the relevant IVP. Solve it using 3rd order Adams-Moulton method, i.e.
$$y_{j+2} - y_{j+1} = \frac{h}{12}(5f(t_{j+2},y_{j+2})+8f(t_{j+1}, y_{j+1})-f(t_j,y_j)).$$
Estimate the value $y_{j+2}$ via fixed-point iteration. What is the maximum size of $h$ s.t. the fixed-point iteration still converges?
First of all, how am I supposed to solve it? There is no specified range for approximations. Or should I consider taking the limit $h \to 0$ for the method above?
Second, how do I estimate $y_{j+2}$ via fixed-point iteration and determine the maximum step size? I know for example Banach's fixed-point theorem but I can't seem to figure out its application to multi step methods.