0% found this document useful (0 votes)
253 views

Newton Raphson Method Questions

This document contains 12 numerical problems involving solving differential equations using various numerical methods like Euler's method, modified Euler's method, Runge-Kutta methods of orders 2, 4 and Taylor's method. The problems involve solving initial value problems (IVPs) for first order, second order and systems of differential equations over different intervals with varying step sizes to compute approximate solutions. The document asks to apply different numerical techniques to solve the given problems and compute solutions at various points.

Uploaded by

RishabhKhanna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
253 views

Newton Raphson Method Questions

This document contains 12 numerical problems involving solving differential equations using various numerical methods like Euler's method, modified Euler's method, Runge-Kutta methods of orders 2, 4 and Taylor's method. The problems involve solving initial value problems (IVPs) for first order, second order and systems of differential equations over different intervals with varying step sizes to compute approximate solutions. The document asks to apply different numerical techniques to solve the given problems and compute solutions at various points.

Uploaded by

RishabhKhanna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

School of Mathematics, Thapar University, Patiala

UMA032 : Numerical and Statistical Methods


Assignment 7
Numerical Differential Equations
1. Consider the IVP
y 0 = x(y + x) 2, y(0) = 2.
Use the Euler method with stepsize h = 0.2 to compute y(0.6) with four decimals.
2. Use modified Eulers method to find y(0.2) and y(0.4) with h = 0.2 for IVP
y 0 = y + ex , y(0) = 0.
3. Solve the initial value problem
y + x2 2
dy
=
, y(0) = 2
dx
x+1
by explicit Euler method with step size h = 0.2 for interval [0, 1].
4. Solve the following initial value problem with step size h = 0.1 and 0.2.
y 0 = tet y, y(0) = 1
by explicit Euler method in the interval [0, 1].
5. Solve the following differential equation by second-order Runge-Kutta method
y 0 = y + 2 cos t, y(0) = 1.
Compute y(0.2), y(0.4), and y(0.6).
6. Compute solutions to the following problems with a second-order Taylor method. Use step size h = 0.2.
(A)
2

y 0 = (cos y) , 0 x 1, y(0) = 0.
(B)
y0 =

20
, 0 x 1, y(0) = 1.
1 + 19ex/4

7. Using Runge-Kutta fourth-order method to solve the IVP at x = 0.8 for

dy
= x + y, y(0.4) = 0.41
dx
with step length h = 0.2.
8. Use the Runge-Kutta fourth-order method to solve the following IVP
y0

xz + 1, y(0) = 0,

xy, z(0) = 1

z
with h = 0.1 and 0 x 0.2.

9. Apply the Taylors method of order three to obtain approximate value of y at x = 0.2 for the differential
equation
y 0 = 2y + 3ex , y0 = 0.
Compare the numerical solution with the exact solution.

CONTINUED

10. Use Runge-Kutta method of order four to solve


2

y 00 = xy 0 y 2 , y(0) = 1, y 0 (0) = 0
for x = 0.2 with stepsize 0.2.
11. Consider the Lotka-Volterra system
du
dt
dv
dt

2u uv, u(0) = 1.5

9v + 3uv, v(0) = 1.5.

Use Eulers method with step size 0.5 to approximate the solution at t = 2.
12. The following system represent a much simplified model of nerve cells
dx
dt
dy
dt

= x + y x3 , x(0) = 0.5
x
= , y(0) = 0.1
2

where x(t) represents voltage across the boundary of nerve cell and y(t) is the permeability of the cell wall
at time t. Solve this system using Runge-Kutta fourth-order method to generate the profile up to t = 0.2
with step size 0.1.

You might also like