Tutorial Sheet 3 (NA) MA102
Tutorial Sheet 3 (NA) MA102
Group A
1. State Newton’s forward and backward interpolation formula and use these to
calculate the value of ( ) from the given data:
1.7 1.8 1.9 2.0 2.1 2.2 2.3
( ) 5.474 6.050 6.686 7.389 8.166 9.025 9.974
2. Using Newton’s forward and backward formula, find the value of ( ) and ( ), if
0.1 0.2 0.3 0.4 0.5 0.6
( ) 2.68 3.04 3.38 3.68 3.96 4.21
4. Construct the Lagrange interpolation polynomial using data from the following table:
-1 0 2 5
10 7 7 22
5. Using Lagrange interpolation formula find ( ) from the data in the following table:
5 6 9 11
12 13 14 16
6. Find the real positive root of the equation by fixed point iteration
method correct to two decimal places, assuming the initial approximation is as .
7. Find a real root of correct to three decimal places using fixed point
iteration method.
9. Write the Newton-Raphson procedure for finding √ , where p is a real number. Use
it to find √ correct to two decimals, assuming 2.5 as the initial approximation.
10. Find a root of the following equations correct to three significant figures using
Newton's iterative method:
(a) , (b) ,
(c) , (d) , near to .
11. Solve the following system of linear equations by Gauss-Jacobi's and Gauss-Seidal's
method correct up to four decimal places:
(a) , , .
(b) , , .
(c) , , .
12. Perform three iterations of the Gauss-Jacobi's and Gauss-Seidal's iteration method for
solving the system of equations:
(a) , , .
(b) , , .
13. Employ Picard's method to obtain the solution for the differential equation, correct to
four places of decimal,
for , given that when .
14. Using Picard's approximation, obtain a solution up to the fifth approximation of the
equation
, ( ) .
15. Using Picard's approximation, obtain a solution up to the third approximation of the
equation
, ( ) .
17. Employ Taylor's series method to obtain approximate value of at for the
differential equation
, ( ) .
Compare the numerical solution with the exact solution.
18. Apply Runge-Kutta fourth order method, to find an approximate value of when
given that , ( ) .
dy
1. The fourth order Runge-Kutta (RK4) method to solve an ordinary differential equation dx
=
f (x, y) is given as:
1
y(x + h) = y(x) + (k1 + 2k2 + 2k3 + k4 )
6
h k1
k1 = hf (x, y), k2 = hf (x + , y + )
2 2
h k2
k3 = hf (x + , y + ), k4 = hf (x + h, y + k3 )
2 2
For a special case when the function f depends solely on x, the above RK4 method reduces to
(GATE 2023, CE)
(A) Simpson’s rule, rectangle rule as well as trapezoidal rule of estimation will give nonzero error.
3. Consider the following recursive iteration scheme for different values of variable P with the initial
guess x1 = 1:
1 p
xn+1 = xn + , n = 1, 2, 3, 4, 5
2 xn
8. Let f be a three times continuously differentiable real valued function on (0, 5) such that its third
1
derivative f 3 = 100 for all (0,5). If P (x) is a polynomial of degree ≤ 2 such that P (1)= f (1), P (2)
=f (2) and P (3) = f (3) then |f (4) − P (4)| equals (GATE 2018, XE)
10. The values of abscissa (x) and ordinates (y) of a curve are as follows:
By Simpson’s 1/3rd rule, the area under the curve (round off to two decimal places) is
(GATE 2021, CE)
R1
11. Find the value of 0 ex dx using the trapezodial rule with four equal subintervals. (GATE 2021,
CE)
y(tn+1 ) − y(tn )
= −πy(tn )
h
where h is the time step, tn = nh, and n = 0, 1, 2, .... This numerical scheme is stable for all
values of h in the interval (GATE 2021, ME)
2 π
(a) 0 < h < π
(c) 0 < h < 2
(b) 0 < h < 1 (d) for all h > 0
i 0 1 2
xi 1 2 3
f (xi ) 0 0.3010 0.4771
14. The second derivative of a function f is computed using the fourth-order Central Divided Differ-
ence method with a step length h. The correct expression for the second derivative is: (GATE
2024 CE2)
1 1
(a) 12h2
[−fi+2 + 16fi+1 − 30fi + 16fi−1 − fi−2 ] (c) 12h2
[−fi+2 − 16fi+1 + 30fi + 16fi−1 + fi−2 ]
1 1
(b) 12h2
[−fi+2 + 16fi+1 − 30fi + 16fi−1 + fi−2 ] (d) 12h2
[−fi+2 − 16fi+1 + 30fi − 16fi−1 − fi−2 ]
15. The Newton-Raphson method is used to solve f (x) = 0, where f (x) = ex − 5x. If the initial guess
x(0) = 1.0, then find the value of the next iterate x(1) ?, (rounded off to 2 decimal places). (GATE
2024 CH)
dy
16. In order to numerically solve the ordinary differential equation dt
= −y for t > 0, with an initial
condition y(0) = 1 , the following scheme is employed:
yn+1 − yn 1
= − (yn+1 + yn )
∆t 2
Here, ∆t is the time step and yn = y(n∆t) for n = 0, 1, 2, . . . . This numerical scheme will yield a
solution with non-physical oscillations for ∆t > h. The value of h is: (GATE 2024 ME)
1 3
(a) 2
(c) 2
(b) 1 (d) 2
by the trapezoidal rule with the step size 0.25 is _____ % (rounded off to 2 decimal places).
(GATE 2024 BT)
(a) The Simpson’s rule. (c) The composite Simpson’s rule by dividing
(b) The trapezoidal rule [−1, 2] into 4 equal subintervals.
(d) The composite trapezoidal rule by dividing
[−1, 2] into 3 equal subintervals.
Which one of the following choices of a, b, α, βfor the above recursion formula gives the Runge-
Kutta method of order 2? (GATE 2024 MA)
(a) a = 1.5, b = −1, α = 0.5, β = 0.5 (c) a = 0.25, b = 0.75, α = 2/3, β = 2/3
(b) a = 0.5, b = 0.5, α = 2, β = 2 (d) a = 0.5, b = 0.5, α = 1, β = 2