2. Runge-Kutta 2 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`
Other related methods
  1. Euler method (first order differential equation)
  2. Runge-Kutta 2 method (first order differential equation)
  3. Runge-Kutta 3 method (first order differential equation)
  4. Runge-Kutta 4 method (first order differential equation)
  5. Improved Euler method / Modified Euler method (first order differential equation)
  6. Midpoint Euler method (first order differential equation)
  7. Taylor Series method (first order differential equation)
  8. Euler method (second order differential equation)
  9. Runge-Kutta 2 method (second order differential equation)
  10. Runge-Kutta 3 method (second order differential equation)
  11. Runge-Kutta 4 method (second order differential equation)
  12. Improved Euler method / Modified Euler method (second order differential equation)
  13. Midpoint Euler method (second order differential equation)
  14. Taylor Series method (second order differential equation)

3. Example-3 : `y'=-y`
(Previous example)
5. Example-2 : `y'=-2x-y`
(Next example)

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





Formula
Second order R-K method
Method-1 :
`k_1=f(x_n,y_n)`
`k_2=f(x_n+h,y_n+hk_1)`
`y_(n+1)=y_n+h/2(k_1+k_2)`

Method-2 :
`k_1=f(x_n,y_n)`
`k_2=f(x_n+h/2,y_n+(hk_1)/2)`
`y_(n+1)=y_n+hk_2`

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

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

Method-1 : Using formula `k_2=f(x_0+h,y_0+hk_1)`

Second order Runge-Kutta (RK2) method formula
`k_1=f(x_n,y_n)`

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

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



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,y_0+hk_1)`

`=f(0.1,0.95)`

`=-0.425`

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

`=1-0.0463`

`=0.9538`

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



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

`k_1=f(x_1,y_1)`

`=f(0.1,0.9538)`

`=-0.4269`

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

`=f(0.2,0.9111)`

`=-0.3555`

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

`=0.9538-0.0391`

`=0.9146`

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

`:.y(0.2)=0.9146`

`n``x_n``y_n``k_1``k_2``x_(n+1)``y_(n+1)`
001-0.5-0.4250.10.9538
10.10.9538-0.4269-0.35550.20.9146




Method-2 : Using formula `k_2=f(x_0+h/2,y_0+(hk_1)/2)`

Second order Runge-Kutta (RK2) method formula
`k_1=f(x_n,y_n)`

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

`y_(n+1)=y_n+hk_2`



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`

`y_1=y_0+hk_2`

`=1-0.0462`

`=0.9538`

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



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

`k_1=f(x_1,y_1)`

`=f(0.1,0.9538)`

`=-0.4269`

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

`=f(0.15,0.9324)`

`=-0.3912`

`y_2=y_1+hk_2`

`=0.9538-0.0391`

`=0.9146`

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

`:.y(0.2)=0.9146`

`n``x_n``y_n``k_1``k_2``x_(n+1)``y_(n+1)`
001-0.5-0.46250.10.9538
10.10.9538-0.4269-0.39120.20.9146





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



3. Example-3 : `y'=-y`
(Previous example)
5. Example-2 : `y'=-2x-y`
(Next example)





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

.