Numerical Methods Unit IV
Numerical Methods Unit IV
2
Differential equations play a fundamental role in
change.
• When a function involves one dependent variable, the
solution
Euler’s Method and Modified Euler’s Method
Given
y[0.0] = 1.0
y[0.20] = 1.0
Modified Euler iterations:
+ (-2 × x × y × y)(1)
y[0.20] = 1.0 y[0.20] = 0.95999
y[0.20] = 0.96291
Euler Solution:
+ (-2 × x × y × y)(2)
y[0.40] = 0.88873 y[0.40] = 0.86263
y[0.40] = 0.86629 y[0.40] = 0.86578
y[0.40] = 0.86585
Euler Solution:
+ (-2 × x × y × y)(3)
y[0.60] = 0.74589 y[0.60] = 0.73910
y[0.60] = 0.74031 y[0.60] = 0.74010
y[0.60] = 0.74014
Euler Solution:
+ (-2 × x × y × y)(4)
y[0.80] = 0.60866 y[0.80] = 0.61512
y[0.80] = 0.61385 y[0.80] = 0.61410
y[0.80] = 0.61405
Euler Solution:
+ (-2 × x × y × y)(5)
y[1.00] = 0.49340
y[1.00] = 0.50504
y[1.00] = 0.50272
y[1.00] = 0.50318
y[1.00] = 0.50309
y[1.00] = 0.50311
Runge -Kutta method
Solution:
Step 1:
h = 0.2, f(x,y) =1 + y + x 2 , x0 =0, y0 =0.5
k1 = f ( x0 , y0 ) = ( 1 + y0 + x0 ) = 1.5
2
1 1
k 2 = f ( x0 + h , y0 + k1h )
2 2
= 1 + ( y0 + 0.15) + ( x0 + 0.1) = 1.64
2
1 1
k 3 = f ( x0 + h , y 0 + k 2 h )
2 2
= 1 + ( y0 + 0.164 ) + ( x0 + 0.1) = 1.654
2
k 4 = f ( x0 + h , y 0 + k 3 h )
= 1+ (y + 0.16545) + ( x + 0.2 ) = 1.7908
2
0 0
h
y1 = y0 + (k1 + 2k 2 + 2k 3 + k 4 ) = 0.8293
6
Step 2:
k1 = f ( x1 , y1 ) = 1.7893
1 1
k 2 = f ( x1 + h , y1 + k1 h ) = 1.9182
2 2
1 1
k 3 = f ( x1 + h , y1 + k 2 h ) = 1.9311
2 2
k 4 = f ( x1 + h , y1 + k 3 h ) = 2.0555
0.2
y 2 = y1 + (k1 + 2k 2 + 2k3 + k4 ) = 1.2141
6
Summary of the solution :
xi yi
0.0 0.5
0.2 0.8293
0.4 1.2141
Predictor-Corrector Method
In numerical analysis, a predictor–corrector method is an
algorithm that proceeds in two steps. First, the prediction
step calculates a rough approximation of the desired
quantity. Second, the corrector step refines the initial
approximation using another means.
There are two such methods namely Milne’s method and
Adam’s method
Milne’s Method :
4h
Pr edictor : yn +1 = yn −3 + (2 yn′ − 2 − yn′ −1 + 2 yn′ )
3
h
Corrector : yn +1 = yn −1 + ( yn′ −1 + 4 yn′ + yn′ +1 )
3
Example 4:
Tabulate the solution of
dy
=
t + y, y (0) =
1
dt
in the interval [0, 0.4] with h = 0.1, using Milne’s
Predictor-Corrector method.
Solution :
Milne’s P – C method.
Thus, taking t0 = 0, t1 = 0.1, t2 = 0.2, t3 = 0.3
we get the corresponding y values using R–K method
of 4th order; that is y0 = 1, y1 = 1.1103, y2 = 1.2428
and y3 = 1.3997
h
y *
n +1
= y n + ( 55 y ′n − 59 y ′n −1 + 37′n −2 − 9 y ′n −3 ) ,
24
Solution:
With h = 0.2, y(0.8) will be approximated by y4. To get
started, we use the RK4 method with x0 = 0, y0 = 1, h =
0.2 to obtain
y1 = 1.02140000, y2 = 1.09181796,
y3 = 1.22210646
Now with x0 = 0, x1 = 0.2, x3 = 0.4, x4 = 0.6, and
f (x, y) = x + y – 1, we find
y0′ = f ( x0 , y0 ) = ( 0 ) + ( 1 ) − 1 = 0
y1′ = f ( x1 , y1 ) = ( 0.2 ) + ( 1.02140000 ) − 1 = 0.22140000
y′2 = f ( x2 , y 2 ) = ( 0.4 ) + ( 1.09181796 ) − 1 = 0.49181796
y3′ = f ( x3 , y3 ) = ( 0.6 ) + ( 1.22210646 ) − 1 = 0.82210646
′
y4 = f ( x4 , y4 ) = 0.8 + 1.42535975 − 1 = 1.22535975
*
0.2
y 4 = y3 + (9 y4′ + 19 y3′ − 5 y2′ + y1′ ) = 1.42552788
24
Applications