My professor (Dutch) asked us to determine, among other things, the truncation error of the central Euler method. First of all, this is probably not the correct term, since there are very few results for "Central Euler", so that made looking things up a hassle.
To determine the truncation error, I thought I had to first know how to derive this central Euler method, given by: $$ u_{k+1}=u_{k-1} + 2h\cdot f(u_k) $$
(It also states $u_0$ and $u_1$ are given/known)
In which $f(x)$ gives the slope at point $x$ (I think).
I tried to derive this using Taylor expansions, but I didn't get close.
I also thought I had to get an intuitive notion of what this means, and I figured out it's this: We add two times the slope (times the step size) at $x=u_k$ to the the y-coordinate at $u_{k-1}$ to get the y coordinate at $x=u_{k+1}$. The two times is because the length between $k-1$ and $k+1$ is equal to $2h$.
So my question is: How do I derive this method, what's it called, and is the derivation a good step in figuring out the truncation error?
Note: It was given that the truncation error is of order $h^3$.

It's a two-step Nyström method. Using the ODE $u' = f(u)$ and $x_k := x_0 + k h$ you write \begin{equation} u(x_{k+1}) - u(x_{k-1}) = \int \limits_{x_{k-1}}^{x_{k+1}} u'(x) \, \mathrm{d}x = \int \limits_{x_{k-1}}^{x_{k+1}} f(u(x)) \, \mathrm{d}x. \end{equation} Now you use a quadrature formula for the integral, in this case the midpoint rule: $\displaystyle \int \limits_{x_{k-1}}^{x_{k+1}} f(u(x)) \, \mathrm{d}x \simeq 2h f(u(x_k))$.
For the local truncation error at $x_2$ we assume that both previous values $u_0 = u(x_0)$ and $u_1 = u(x_1)$ are exact. The local truncation error is then given by \begin{equation} \tau_2 = u(x_2) - u(x_0) - 2 h f(u(x_1)) = u(x_2) - u(x_0) - 2 h u'(x_1) \end{equation} (using again the ODE in the last step). Now comes Taylor: \begin{eqnarray} u(x_0) = u(x_1 - h) &=& u(x_1) - h u'(x_1) + \frac{1}{2} h^2 u''(x_1) - \frac{1}{6} h^3 u'''(x_1) + \frac{1}{24} h^4 u''''(x_1) + O(h^5),\\ u(x_2) = u(x_1 + h) &=& u(x_1) + h u'(x_1) + \frac{1}{2} h^2 u''(x_1) + \frac{1}{6} h^3 u'''(x_1) + \frac{1}{24} h^4 u''''(x_1) + O(h^5), \end{eqnarray} for $h \rightarrow 0$, so that \begin{equation} \tau_2 = \frac{1}{3} h^3 u^{\prime\prime\prime}(x_1) + O(h^5), \quad h \rightarrow 0. \end{equation}