I am trying to get an intuitive understanding of the third-order Runge method. That method defines
$y_{k+1} = y_{k} + \left( \frac h 6 k_1 + \frac {4h} 6 k_2 + \frac h 6 k_3 \right)$
where
$k_1 = f(x_k,y_k)$
$k_2 = f( x_k + \frac h 2, y_k + \frac h 2 k_1 )$
$k_3 = f( x_k + h, y_k - h k_1 + 2h k_2 )$
The first three of those four equations make intuitively sense to me:
- The definition of $y_{k+1}$ is from Simpson's rule (Newton-Cotes degree $2$)
- The definition of $k_1$ is clear
- $k_2$ uses Euler with half the step size
However, I don't understand the definition of $k_3$. This does not look like it's taken from a quadrature formula. It seems like it is trying to approximate $y(x_k+h)$
$y_{k} - h y'(x_k) + 2h y'(x_k+h/2)$.
What is the reason for that choice?