When given an nth-order ordinary differential equation, it is possible to make a simple algebraic manipulation to convert the differential equation into a first-order "autonomous" differential equation. Is there a similar transformation from a linear multistep method into a one-step method or is this in general not possible? For example, consider
$y_{n+1} = y_{n} + \frac{h}{2} \left( f(y_n) + f(y_{n+1}) \right)$.
We can "convert" this into an explicit method by
$y_{n+1} = y_{n} + \frac{h}{2} \left( f(y_n) + f(y_n + hf(y_n)) \right)$.
This makes the method go from two-step into one-step (and in fact, converts it from implicit to explicit). Can this be generalized?