t5 and 6 1
t5 and 6 1
t5 and 6 1
2. Employ Taylor's Series method to obtain approximate value of 'y' at x=0.2 for
y'=2y+3ex , given that y(0)=0. Assume that h=0.1.
3. Find the value of 'y' for x=0.1 and 0.3 by Picard's Method given that y'=(y-x)/(y+x);
y(0)=1
a) y'(x)=x2+y2 ;y(0)=0
b) y'(x)=xey ; y(0)=0
5. Using Euler's Method, find an approximate value of 'y' corresponding to x=1 given
that dy/dx=x+y and y=1 when x=0.
a) Euler's Method
Assume h=0.05
7. Apply Runge Kutta fourth order method to solve y'= (y 2-x2)/ (y2+x2) with y (0) =1 at
x=0.2, 0.4.
a)Euler's method
b)Heun's Method
c)Runge's Method
9. Solve the differential equations y'=1+xz,z'=-xy for x=0.3 given that x=0,y=0,z=1 as
initial values and h=0.1 using
a)Euler's method
b)Heun's Method
c)Runge's Method
d)RK4-Method
10. Solve y"-xy2 +y2 =0 given that y(0)=1,y'(0)=0 to obtain y(0.1) and y(0.2) using
a) Euler's Method
b) RK2 Method
c) RK4 Method
a) RK2 Method
b) RK4 Method
12. The angular displacement 'θ' of a simple pendulum is given by the equation d 2θ/dt2+
(g/l) sin θ=0 where l=98 cm, g=980cm/sec2. If θ=0 and dθ/dt=4.472 at t=0, using RK 2
and RK4 method to find θ and d θ/dt when t=0.2 sec.
13. In a RLC circuit, the voltage v(t) across the capacitor is given by the equation
LCd2v/dt2 +RC dv/dt +v=0 subject to initial conditions t=0,v=v 0 ,dv/dt=0.Taking
h=0.02sec, use Runge Kutta Method to calculate V and dv/dt when t=0.02 for the
data v0=10v,C=0.1F,L=0.5 H,R=10Ω.
14. Use finite difference method to find y(0.25),y(0.5),y(0.75) satisfying the differential
equation y"+y=x, subject to the boundary conditions y(0)=0,y(1)=2.
15. Determine values of 'y' at the pivotal points of the interval (0, 1) if 'y' satisfies the
boundary value problem yiv+81y=81x2, y (0) =y (1) =y"(0) =y"(1) =0 using finite
difference method (Take n=3).
17. Write a pseudocode and a program in high level language to solve a first order
differential equation using
a) Euler's Method
b) RK2 Method
c) RK4 Method
18. Write a program in any high level language to solve a second order differential
equation using
a) Euler's Method
b) RK2 Method
c) RK4 Method
Tutorial 6
2. Solve Poisson's equation uxx+uyy=729x2y2 over the square domain 0≤x≤1,0≤y≤1 with
step size h=1/3and u=0 on the boundary.