Numerical Analysis MCQ Quiz in मल्याळम - Objective Question with Answer for Numerical Analysis - സൗജന്യ PDF ഡൗൺലോഡ് ചെയ്യുക
Last updated on Mar 23, 2025
Latest Numerical Analysis MCQ Objective Questions
Top Numerical Analysis MCQ Objective Questions
Numerical Analysis Question 1:
The first derivative of a function f ∈ C∞(−3, 3) is approximated by an interpolating polynomial of degree 2, using the data
(−1, f(−1)), (0, f(0)) and (2, f(2)).
It is found that
f′(0) ≈ −
Then, the value of
Answer (Detailed Solution Below)
Numerical Analysis Question 1 Detailed Solution
Explanation:
Given data is (−1, f(−1)), (0, f(0)) and (2, f(2)).
f is an interpolating polynomial of degree 2
Let f(x) = ax2 + bx + c
⇒ f'(x) = 2ax + b ⇒ f'(0) = b which is the coefficient of x
Now, using Lagrange's interpolation formula
f(x) =
So, f'(0) is the coefficient of x
i.e., f'(0) = −
Comparing with f′(0) ≈ −
α =
So,
Option (4) is true
Numerical Analysis Question 2:
Consider the linear system 𝑀𝑥 = 𝑏, where 𝑀 =
Suppose 𝑀 = 𝐿𝑈, where 𝐿 and U are lower triangular and upper triangular square matrices, respectively. Consider the following statements:
𝑃: If each element of the main diagonal of 𝐿 is 1, then 𝑡𝑟𝑎𝑐𝑒(𝑈) = 3.
𝑄: For any choice of the initial vector 𝑥(0) , the Jacobi iterates 𝑥(𝑘) , 𝑘 = 1,2,3 … converge to the unique solution of the linear system 𝑀𝑥 = 𝑏.
Then
Answer (Detailed Solution Below)
Numerical Analysis Question 2 Detailed Solution
Concept:
A square matrix (aij) is called a diagonally dominant matrix if |aii| ≥
Explanation:
For P,
M =
Let M = LU, where 𝐿 and U are lower triangular and upper triangular square matrices
Each element of the main diagonal of 𝐿 is 1
Let L =
Then
⇒
Comparing both sides
b = 2, c = -1, ab = -4 and ac + d = 3
Substituting b = 2 in ab = -4 we get a = -2
Again substituting a = -2 and c = -1 in ac + d = 3 we get
(-2)(-1) + d = 3 ⇒ 2 + d = 3 ⇒ d = 1
So U =
Hence trace(U) = 1 + 2 = 3
P is TRUE
For Q,
M =
M is not a diagonally dominant matrix as 3
Then HJacobi = D-1(L + U) where
D is diagonal matric ie..e,
So, D-1 =
So HJacobi =
Hence eigenvalues re given by
λ2 - 0λ - 2/3 = 0
⇒ λ =
Since |λ|
Hence for any choice of the initial vector 𝑥(0) , the Jacobi iterates 𝑥(𝑘) , 𝑘 = 1,2,3 … converge to the unique solution of the linear system 𝑀𝑥 = 𝑏.
Q is TRUE
both 𝑃 and 𝑄 are TRUE
(1) is correct
Numerical Analysis Question 3:
In the table below, the values of y are consecutive terms of a series of which 52.8 is the 8th term
x | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
y | 4.8 | 8.4 | 14.5 | 23.6 | 36.2 | 52.8 | 73.9 |
Then the first term is
Answer (Detailed Solution Below)
Numerical Analysis Question 3 Detailed Solution
Concept:
Newton's Forward Difference formula:
y(x) = y0 + pΔy0 +
where p =
Explanation:
From the given data we can write the difference table as
x | y | Δy | Δ2y | Δ3y | Δ4y |
3 | 4.8 | ||||
3.6 | |||||
4 | 8.4 | 2.5 | |||
6.1 | 0.5 | ||||
5 | 14.5 | 3.0 | 0 | ||
9.1 | 0.5 | ||||
6 | 23.6 | 3.5 | 0 | ||
12.6 | 0.5 | ||||
7 | 36.2 | 4.0 | 0 | ||
16.6 | 0.5 | ||||
8 | 52.8 | 4.5 | |||
21.1 | |||||
9 | 73.9 |
Here x0 = 3, x = 1, h = 4 - 3 = 1 and so p = (1 - 3)/1 = - 2
Then using Newton's Forward Difference formula,
y(1) = 4.8+ (-2) × 3 +
(3) is correct
Numerical Analysis Question 4:
The sufficient condition for the convergence of Newton-Raphson iteration scheme is
Answer (Detailed Solution Below)
Numerical Analysis Question 4 Detailed Solution
Explanation:
Newton Raphson's method: Let x0 be the initial guess of f(x) then the nth iteration to finding the root of f(x) is is given by
The order of convergence of Newton Raphson method is 2 or the convergence is quadratic.
It converges if |f(x).f’’(x)| 2. Also, this method fails if f’(x) = 0.
(3) is correct
Numerical Analysis Question 5:
Let I =
Answer (Detailed Solution Below)
Numerical Analysis Question 5 Detailed Solution
Concept:
Trapezoidal rule:
where
Explanation:
Here f(x) = ||x + 1| + |x - 1||, a = -2, b = 2, n = 4 as there are five points so intervals = 4
Dividing [-2, 2] into 4 subintervals we get endpoints as
a = -2, -1, 0, 1, 2 = b
f(x0) = f(-2) = 4, f(x1) = f(-1) = 2
f(x2) = f(0) = 2, f(x3) = f(1) = 2, f(x4) = f(2) = 4
Then using the Trapezoidal rule
I =
(2) is correct
Numerical Analysis Question 6:
The magnitude of the truncation error for the scheme f'(x) = Af(x) + Bf(x + h) +Cf(x + 2h) is equal to
Answer (Detailed Solution Below)
Numerical Analysis Question 6 Detailed Solution
Concept:
Taylor series expansion of f(x + h) is
f(x + h) = f(x) + h f'(x) +
Explanation:
f'(x) = Af(x) + Bf(x + h) +Cf(x + 2h)
f'(x) = Af(x) + B{f(x) + h f'(x) +
f'(x) = (A + B + C)f(x) + (Bh + 2Ch)f'(x) + (
In this expression, we can see that h2 is associated with f''(x)
So options (1) and (2) are false.
Now, the magnitude of the truncation error will be of the form f''(x) if
A + B + C = 0, Bh + 2Ch = 1
(3): A = -
A + B + C =
Bh + 2Ch =
Option (3) is false
(4): A =
A + B + C =
Option (4) is false
All options are wrong here
Numerical Analysis Question 7:
Let y(t) satisfy the differential equation y' = λy; y(0) = 1. Then the backward Euler method, for n ≥ 1 & h > 0
Answer (Detailed Solution Below)
Numerical Analysis Question 7 Detailed Solution
Explanation:
y' = λy; y(0) = 1
xn = x0 + nh = 0 +nh = nh
y' = λy
Integrating
y = c1eλx
so yn approaches to eλxn
yn approaches to eλnh
(1), (3) correct
Numerical Analysis Question 8:
The values of α, A, B, C for which the quadrature formula
Answer (Detailed Solution Below)
Numerical Analysis Question 8 Detailed Solution
Explanation:
for f(x) = 1 we get
A + B + C = 2...(i)
for f(x) = x we get
(A-C)α =
Option (1):
A + B + C =
and (A-C)α =
Hence it satisfies both equations (i) and (ii).
Option (1) is correct.
Option (2):
A + B + C =
and (A-C)α =
It is not satisfying (ii).
Option (2) is not correct.
Option (3):
A + B + C =
and (A-C)α =
It is not satisfying (ii).
Option (3) is not correct.
Option (4):
A + B + C =
and (A-C)α =
Hence it satisfies both equations (i) and (ii).
Option (4) is correct.
Numerical Analysis Question 9:
Consider the numerical integration formula
where α = (0.2)1/4. Which of the following statements are true?
Answer (Detailed Solution Below)
Numerical Analysis Question 9 Detailed Solution
Explanation:
Given
(a) ∵
= =a + b/2 - (-a + b/2) = 2a
while g(α) + g(-α) = (a + bα) + (a - bα) = 2a
⇒ for a + bx form, (i) gives exact value
⇒ Opt (1) True
(b) ∵
= a + b/2 + c/3 - (-a + b/2 - c/3)
= 2a + 2c/3
While g(α) + g(-α) = a + bα + cα2 + [a - bα + cα2]
= 2a + 2cα2 ≠ 2a + 2c/3
so, Not exact in this case.
Eg. Let a = 0, c = 1, b ∈
which is NOT equal ⇒ opt (2) False
Op(c). (Note: similar argument as (a) & (b)
While g(α) + g(-α) = a + bα + cα2 + dα3 + a - bα + cα2 - dα3
=2 (a + cα2)
Again, in this case, both are not equal.
so opt (3) False.
Op(d): ∵
= 2a + 2d/5
while g(α) + g(-α) = a + bα + cα3 + dα4 + (a - bα - cα3 + dα4)
= 2a + 2dα4 = 2a + 2d(0.2)4/4
= 2a + 2d(0.2) = 2a +
Numerical Analysis Question 10:
Consider the Euler method for integration of the system of differential equations
ẋ = - y
ẏ = x
Assume that (
Answer (Detailed Solution Below)
Numerical Analysis Question 10 Detailed Solution
Correct statements are
\(x = {-b \pm \sqrt{b^2-4ac} \over 2a}\)
Options (2), (3) (4) are correct