Given $y'(t) = f(t,y(t))$ and the following algorithm:
$$y_{n+\frac{1}{2}} = y_n + \frac{h}{2}f(t_n,y_n)$$ $$y_{n+1} = y_n + hf(t_n+\frac{h}{2},y_{n+\frac{1}{2}})$$
We should show that this can be seen as an explicit runge kutta algorithm (how to exactly do this?) and determine the butcher tableu.
I somehow compared this to the usual form in which an runge kutte algorithm is given and think the tableu must be
$$\begin{array}{c|cc} 0 & 0 & 0 \\ \frac{1}{2} & \frac{1}{2} & 0 \\ \hline & 0 & 1 \\ \end{array}$$