The leapfrog method for the ODE $y' = f(t,y)$ is derived like the forward and backward Euler methods, except that centered differencing is used. This yields the formula $$\frac{y_{i+1}-y_{i-1}}{2h}=f(t_i,y_i)$$ Show that this is an explicit linear two-step method that is second order accurate and does not belong to the Adams or BDF families.
So we can get the relation that $y_i'=\frac{y_{i+1}-y_{i-1}}{2h}$. But I am not sure what game I should play with this to derive that it is explicit linear two-step. I.e. do I look for a interpolating polynomial or do I play around with Taylor series and plug this in to show it is second order accurate? Any help is appreciated. Thank you!