4. Formula-2 & Example-1
Formula
2. Second order R-K method
Method-1 :
`k_1=f(x_0,y_0)`
`k_2=f(x_0+h,y_0+hk_1)`
`y_1=y_0+h/2(k_1+k_2)`
Method-2 :
`k_1=f(x_0,y_0)`
`k_2=f(x_0+h/2,y_0+(hk_1)/2)`
`y_1=y_0+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 (1st order derivative)
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 R-K method `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.04625=0.95375`
`:.y(0.1)=0.95375`
Again taking `(x_1,y_1)` in place of `(x_0,y_0)` and repeat the process
`k_1=f(x_1,y_1)=f(0.1,0.95375)=-0.42688`
`k_2=f(x_1+h,y_1+hk_1)=f(0.2,0.91106)=-0.35553`
`y_2=y_1+h/2(k_1+k_2)=0.95375-0.03912=0.91463`
`:.y(0.2)=0.91463`
`:.y(0.2)=0.91463`
Method-2 : Using formula `k_2=f(x_0+h/2,y_0+(hk_1)/2)`
Second order R-K method `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.04625=0.95375`
`:.y(0.1)=0.95375`
Again taking `(x_1,y_1)` in place of `(x_0,y_0)` and repeat the process
`k_1=f(x_1,y_1)=f(0.1,0.95375)=-0.42688`
`k_2=f(x_1+h/2,y_1+(hk_1)/2)=f(0.15,0.93241)=-0.3912`
`y_2=y_1+hk_2=0.95375-0.03912=0.91463`
`:.y(0.2)=0.91463`
`:.y(0.2)=0.91463`
This material is intended as a summary. Use your textbook for detail explanation. Any bug, improvement, feedback then
|