We have been asked to prove the following Runge-Kutta method is of order 3
$y_{i+1} = y_i + \frac{K_1}{4} + \frac{3K_3}{4}$
with
$K_1 = h \times f(x_i,y_i)$
$K_2 = h \times f(x_i + \tfrac{h}{3}, y_i + \tfrac{K1}{3})$
$K_3 = h \times f(x_i + \tfrac{2h}{3}, y_i + \tfrac{2K_2}{3})$
We have ideas from this answer -Determining Runge-Kutta Order - but are struggling to apply our system to this method.
Thanks