2. Example-2
Find y(0.2) for `y''=xz^2-y^2`, `x_0=0, y_0=1, z_0=0`, with step length 0.2 using Runge-Kutta 2 method (2nd order derivative)
Solution: Given `y^('')=xz^2-y^2, y(0)=1, y'(0)=0, h=0.2, y(0.2)=?`
put `(dy)/(dx)=z` and differentiate w.r.t. x, we obtain `(d^2y)/(dx^2)=(dz)/(dx)`
We have system of equations `(dy)/(dx)=z=f(x,y,z)`
`(dz)/(dx)=xz^2-y^2=g(x,y,z)`
Method-1 : Using formula `k_2=hf(x_0+h,y_0+k_1,z_0+l_1)`
Second order R-K method for second order differential equation `k_1=hf(x_0,y_0,z_0)=(0.2)*f(0,1,0)=(0.2)*(0)=0`
`l_1=hg(x_0,y_0,z_0)=(0.2)*g(0,1,0)=(0.2)*(-1)=-0.2`
`k_2=hf(x_0+h,y_0+k_1,z_0+l_1)=(0.2)*f(0.2,1,-0.2)=(0.2)*(-0.2)=-0.04`
`l_2=hg(x_0+h,y_0+k_1,z_0+l_1)=(0.2)*g(0.2,1,-0.2)=(0.2)*(-0.992)=-0.1984`
`y_1=y_0+(k_1+k_2)/2=1-0.02=0.98`
`:.y(0.2)=0.98`
`:.y(0.2)=0.98`
Method-2 : Using formula `k_2=hf(x_0+h/2,y_0+k_1/2,z_0+l_1/2)`
Second order R-K method for second order differential equation `k_1=hf(x_0,y_0,z_0)=(0.2)*f(0,1,0)=(0.2)*(0)=0`
`l_1=hg(x_0,y_0,z_0)=(0.2)*g(0,1,0)=(0.2)*(-1)=-0.2`
`k_2=hf(x_0+h/2,y_0+k_1/2,z_0+l_1/2)=(0.2)*f(0.1,1,-0.1)=(0.2)*(-0.1)=-0.02`
`l_2=hg(x_0+h/2,y_0+k_1/2,z_0+l_1/2)=(0.2)*g(0.1,1,-0.1)=(0.2)*(-0.999)=-0.1998`
`y_1=y_0+k_2=1-0.02=0.98`
`:.y(0.2)=0.98`
`:.y(0.2)=0.98`
This material is intended as a summary. Use your textbook for detail explanation. Any bug, improvement, feedback then
|