The following Runge-Kutta method is given by the Butcher tableau:
$$ \begin{array}{c|ccccc} \tau_1 =0 & a_{11}=0 & a_{12} = 0\\ \tau_2 =1 & a_{21} = \frac{1}{2} & a_{22} = \frac{1}{2}\\ \hline & b_1 = \frac{1}{2} & b_2 = \frac{1}{2} & \ \end{array} $$
and I want to show that its order of accuracy is $2$.
I have tried the following:
$$t^{n,1}=t^n \\ t^{n,2}=t^n+ \frac{h}{2} \\ \zeta^{n,1}=y(t^n) \\ \zeta^{n,2}=y(t^n)+ \frac{h}{2} f(t^n, y(t^n))$$
$$\delta^n=y(t^n+h f \left( t^n+ \frac{h}{2}, y(t^n)+ \frac{h}{2} f(t^n, y(t^n))\right))-y(t^n+h) \\ = -\frac{h}{2} f(t^n,y(t^n))+ \frac{h}{2} f(t^{n+1}, \zeta^{n,2})- \frac{h^2}{2} f_t(t^n,y(t^n))-\frac{h^2}{2} f_y(t^n, y(t^n)) f(t^n,y(t^n))+O(h^3)$$
$$f(t^{n+1}, \zeta^{n,2})=f \left( t^n+h, y(t^n)+ \frac{h}{2} (f(t^n,y(t^n))+f(t^{n+1}, \zeta^{n,2})) \right)=f(t^n,y(t^n))+hf_t(t^n,y(t^n))+ \frac{h}{2} (f(t^n,y(t^n))+ f(t^{n+1}, \zeta^{n,2})) f_y(t^n, y(t^n))+O(h^2)$$
So we have:
$\delta^n=\frac{h^2}{4} f(t^{n+1}, \zeta^{n,2}) f_y(t^n,y(t^n))- \frac{h^2}{4} f_y(t^n,y(t^n)) f(t^n, y(t^n))+O(h^3)$
Is it right so far or have I done something wrong?
If it is right then it should hold $f(t^{n+1}, \zeta^{n,2}) f_y(t^n,y(t^n))= f_y(t^n,y(t^n)) f(t^n, y(t^n))$ so that we get $\delta^n=O(h^3)$. But does this hold? If so, how could we show this?