Skip to main content

Runge-Kutta Method

Runge-Kutta Method: 
The objective of the Runge-Kutta method is that it is used to solve the ordinary differential equation. Small the size of h we get a more accurate solution of the ordinary differential equation.
In this article, we have discussed the Runge-Kutta method that is
  • First-order Runge-Kutta method
  • Second-order Runge-Kutta method
  • Third-order Runge-Kutta method
  • Fourth-order Runge-Kutta method
Lastly, we have discussed a few examples depending on the Runge-Kutta method also provides a few examples for practice.


Thus, we can conclude that the most commonly used method for solving the first-order initial value problems is the classical Runge-Kutta method of fourth-order because using two slopes in the method, we can obtain methods of second order, which are called as the second-order Runge-Kutta methods. The method has one arbitrary parameter, whose value is suitably chosen. 
The methods using four evaluations of slopes have two arbitrary parameters. All these methods are of fourth-order, that is the truncation error is of order O(h5). The values of these parameters are chosen such that the method becomes simple for computations. One such choice gives the classical Runge-
Kutta method of fourth-order. If we use five slopes, we do not get a fifth-order method, but only a fourth-order method. It is due to this reason, the classical fourth-order Runge-Kutta method is preferred for computations.


Comments

Popular posts from this blog

Newton‑Raphson Method | Root‑finding Tutorial with Examples (GATE / Engineering Math)

What is the Newton‑Raphson Method? Derivation of the Algorithm Step-by-Step Example Convergence and Limitations Application in GATE / Engineering Maths Download PDF Notes Newton-Raphson Method:     In this article, we discuss the formula of the Newton-Raphson method, its limitations, and its advantages. Also, we provide a few solved examples and a few unsolved questions for practice.       We discuss Newton iterative formula and then solve a few questions using these iterative formulae. For practice unsolved questions are also provided. This method is generally used to improve the results obtained by one of the previous methods. This method can be derived from Taylor's series.  The formula used as follows: $x_{n+1}= x_n - \frac{f(x_n)}{f'(x_n)}$  NOTE: (1)] This method is useful in cases of large values of $f'(x)$ that is , when the graph of $f(x)$ while crossing the x-axis is nearly vertical. (2)] If $f'(x)$ is zero or nearly zero, the me...

Interpolation With Unevenly Spaced Points

 Interpolation with unevenly spaced points will be discussed in this article. We have two methods to solve the interpolation with unevenly spaced points.  1. Lagrange's method 2. Newton's divided difference formula. We will discuss a few examples depending on these methods. Lastly, we will provide a few examples for practice.