This is admittedly a homework problem, so I've also attached my best attempt at a solution.
Question (abbreviated, from Numerical Analysis, Burden and Faires):
Given the multistep method $w_{i+1} = -\frac{3}{2}w_{i} + 3w_{i-1} - \frac{1}{2}w_{i-2} + 3hf(t_{i}, w_{i})$, find the local truncation error.
My attempt so far:
I expanded the true solution $y(t)$ in a 3rd order Taylor series centered at $t_{i}$ (here I'm using the shorthand $y_{i} = y(t_{i})$) $$y(t) = y_{i} + y'_{i}(t-t_{i}) + \frac{1}{2}y''_{i}(t-t_{i})^2 + \frac{1}{6}y'''_{i}(t-t_{i})^3 + \frac{1}{24}y^{(4)}(\xi(t))(t-t_{i})^4$$ for some $\xi(t) \in (t_{i}, t)$. In addition, we have $$f(t_{i}, y_{i}) = y'_{i}.$$ By the definition of local truncation error, $\tau_{i+1}(h)$, we have $$h\tau_{i+1}(h) = y_{i+1} + \frac{3}{2}y_{i} - 3w_{i-1} + \frac{1}{2}y_{i-2} - 3hf(t_{i}, w_{i}).$$ By plugging in the Taylor expansion of $y$ for $y_{i+1}, y_{i-1}, y_{i-2}$ in the equation above, I arrived at the new equality $$h\tau_{i+1}(h) = \frac{1}{24}y^{(4)}(\xi(t_{i+1}))h^4 - \frac{1}{8}y^{(4)}(\xi(t_{i-1}))h^4 + \frac{1}{3}y^{(4)}(\xi(t_{i-2}))h^4,$$ where the $\xi(t)$ values are not necessarily equal.
The solution at the back of the book has $h\tau_{i+1}(h) = \frac{1}{4}y^{(4)}(\xi(t))h^4$. Coincidentally, $\frac{1}{24} - \frac{1}{8} + \frac{1}{3} = \frac{1}{4}$, so I seem to be close, but I don't think I'm aware of a result beyond simple IVT to combine these error terms. Could anyone help me finish this problem?
As an aside, I stumbled onto an alternate solution here that uses interpolating polynomials, but I don't understand how this solution works either.
Any help would be much appreciated!