This document introduces the Runge-Kutta method, an Ordinary Differential Equation (ODE) solver. The commonly used fourth-order Runge-Kutta method, RK4, is a type of explicit Runge-Kutta method. This document explains the implicit Runge-Kutta method.
Consider the given ordinary differential equation as above. y is a function of t, and ′ represents the derivative with respect to t. When denoted as yn=y(tn), an explicit Runge-Kutta method approximates yn+1 for a given yn as follows:
According to the formulas above, each ξj can be calculated if ξj−1 is known, and in explicit methods, it is set up so that ξ1 is a known value because ξ1=yn. That is to say, it is set up to enable sequential calculation from ξ2 to ξν, which is an attribute of explicit methods.
In implicit methods, all ξi are required to calculate each ξj. In other words, we need to solve a system of equations for ξj to calculate yn+1.
Definition
The implicit Runge-Kutta method approximates yn+1 for a given yn as follows:
yn+1=yn+hj=1∑νbjf(tn+cjh,ξj),n=0,1,2,…
Where,
ξj=yn+hi=1∑νaj,if(tn+cih,ξi),j=1,…,ν
Here, the matrix A=[aj,i] is called the RK matrix. Also, b and c are referred to as RK weights and RK nodes, respectively.
b=b1b2⋮bνandc=c1c2⋮cν
Where,
cj=i=1∑νaj,i,j=1,2,…,ν
Moreover, equation (1) is said to have ν stages, and such methods are called ν stage (or order) Runge-Kutta methods.
Explanation
Unlike in explicit methods where matrix A=[aj,i] was a lower triangular matrix, in implicit methods, A can be any matrix.
In RK methods, coefficients aj,i, bj, cj are not to be found but selected for use. Coefficients are denoted as cAbt, which is called an RK tableaux.
Compared with explicit methods, it naturally takes much more time to solve. However, the advantage of implicit methods is not in speed but in the stability of the solution. The disadvantage of explicit methods is the instability of the solution, for which implicit methods are used as an alternative.