Home > Numerical methods > Numerical Differential Equation > Euler method example

4. Runge-Kutta 4 method (first order differential equation) example ( Enter your problem )
  1. Formula-1 & Example-1 : `y'=(x-y)/2`
  2. Example-2 : `y'=-2x-y`
  3. Example-3 : `y'=-y`
  4. Formula-2 & Example-1 : `y'=(x-y)/2`
  5. Example-2 : `y'=-2x-y`
  6. Example-3 : `y'=-y`

4. Formula-2 & Example-1 : `y'=(x-y)/2`





Formula
Forth order R-K method
`k_1=f(x_n,y_n)`
`k_2=f(x_n+h/2,y_n+(hk_1)/2)`
`k_3=f(x_n+h/2,y_n+(hk_2)/2)`
`k_4=f(x_n+h,y_n+hk_3)`
`y_(n+1)=y_n+h/6(k_1+2k_2+2k_3+k_4)`

Examples
Find y(0.2) for `y'=(x-y)/2`, `x_0=0, y_0=1`, with step length 0.1 using Runge-Kutta 4 method (first order differential equation)

Solution:
Given `y'=(x-y)/(2), y(0)=1, h=0.1, y(0.2)=?`

Fourth order Runge-Kutta (RK4) method formula
`k_1=f(x_n,y_n)`

`k_2=f(x_n+h/2,y_n+(hk_1)/2)`

`k_3=f(x_n+h/2,y_n+(hk_2)/2)`

`k_4=f(x_n+h,y_n+hk_3)`

`y_(n+1)=y_n+h/6(k_1+2k_2+2k_3+k_4)`



for `n=0,x_0=0,y_0=1`

`k_1=f(x_0,y_0)`

`=f(0,1)`

`=-0.5`

`k_2=f(x_0+h/2,y_0+(hk_1)/2)`

`=f(0.05,0.975)`

`=-0.4625`

`k_3=f(x_0+h/2,y_0+(hk_2)/2)`

`=f(0.05,0.9769)`

`=-0.4634`

`k_4=f(x_0+h,y_0+hk_3)`

`=f(0.1,0.9537)`

`=-0.4268`

`y_1=y_0+h/6(k_1+2k_2+2k_3+k_4)`

`=1+0.1/6[-0.5+2(-0.4625)+2(-0.4634)+(-0.4268)]`

`=0.9537`

`x_1=x_0+h=0+0.1=0.1`



for `n=1,x_1=0.1,y_1=0.9537`

`k_1=f(x_1,y_1)`

`=f(0.1,0.9537)`

`=-0.4268`

`k_2=f(x_1+h/2,y_1+(hk_1)/2)`

`=f(0.15,0.9323)`

`=-0.3912`

`k_3=f(x_1+h/2,y_1+(hk_2)/2)`

`=f(0.15,0.9341)`

`=-0.3921`

`k_4=f(x_1+h,y_1+hk_3)`

`=f(0.2,0.9145)`

`=-0.3572`

`y_2=y_1+h/6(k_1+2k_2+2k_3+k_4)`

`=0.9537+0.1/6[-0.4268+2(-0.3912)+2(-0.3921)+(-0.3572)]`

`=0.9145`

`x_2=x_1+h=0.1+0.1=0.2`

`:.y(0.2)=0.9145`

`n``x_n``y_n``k_1``k_2``k_3``k_4``x_(n+1)``y_(n+1)`
001-0.5-0.4625-0.4634-0.42680.10.9537
10.10.9537-0.4268-0.3912-0.3921-0.35720.20.9145





This material is intended as a summary. Use your textbook for detail explanation.
Any bug, improvement, feedback then Submit Here





Share this solution or page with your friends.
 
 
Copyright © 2026. All rights reserved. Terms, Privacy
 
 

.