Content deleted Content added
m →Definitions: The form of the linear multistep method is wrong. I fixed it. |
|||
Line 13:
Multistep methods use information from the previous <math> s </math> steps to calculate the next value. In particular, a ''linear'' multistep method uses a linear combination of <math> y_i </math> and <math> f(t_i,y_i) </math> to calculate the value of <math> y </math> for the desired current step. Thus, a linear multistep method is a method of the form
: <math> \begin{align}
& y_{n+s}
& \qquad {}
\end{align} </math>
The coefficients <math> a_0, \dotsc, a_{s-1} </math> and <math> b_0, \dotsc, b_s </math> determine the method. The designer of the method chooses the coefficients, balancing the need to get a good approximation to the true solution against the desire to get a method that is easy to apply. Often, many coefficients are zero to simplify the method.
|