Runge-Kutta method with order 1 and stage 2

numerical methodsordinary differential equationsrunge-kutta-methods

I am looking for examples of Runge-Kutta method with order 1 and stage 2, Then if it is possible, can you exemplify order 1 and stage 3 RK?
I am really confused with the stage and order in runge kutta. It would be great to see examples only on Butcher tableau so that it makes it easier for me to understand. Thanks in advance.

Best Answer

As an example, any explicit two-stage Runge-Kutta (RK) method with Butcher table \begin{equation} \begin{array}{c|cc} 0 & 0 & 0\\ a & a & 0\\ \hline & b & 1-b \end{array} \quad a, b \in \mathbb{R}, \end{equation} is first-order consistent, and it is second-order consistent if and only if $b = 1 - \frac{1}{2a}$. This follows from the order conditions.

With $a = \frac{1}{2}$ and $b=1 - \frac{1}{2a} = 0$ we obtain the (explicit) midpoint method, which is second-order consistent, and there are of course other two-stage RK methods which are second-order consistent. However for, say, $a=1$ and $b=0\neq 1-\frac{1}{2a}$ you obtain a two-stage RK method which is only first-order consistent.

In general all order conditions for a given order $p$ must be satisfied by the entries of the Butcher table, and since the number of conditions grows with $p$, the number of entries in the Butcher table must also increase in order to satisfy all of the conditions. The only way to achieve this is to use additional stages. Therefore, higher-order methods require more stages.

On the other hand, it is rather easy to give examples of RK methods whose order is lower than the maximum, by choosing entries in the Butcher table which do not satisfy some of the order conditions.

The order conditions are tough to derive for $p \geq 5$, and their number grows rather quickly, but it has been done of course.