Numerical Method Numericals
Numerical Method Numericals
[CS-GATE-2003]
(a) O (h2)
(b) O (h3)
(c) O (h4)
(d) O (h5)
Q.5- In above question, For a = 7 and starting with x0 = 0.2, the first two iterations
will be- [CE, GATE-2005]
(a) x1 = 0.5
(b) x1 = 1.406
(c) x1 = 1.5
(b) x1 = 2
Q.7- Starting from x0 = 1, one step of Newton-Raphson method in solving the
equation x3 + 3x – 7 = 0 gives the next value (x1) as-
[CE, GATE-2005]
(a) x1 = 0.5
(b) x1 = 1.406
(c) x1 = 1.5
(d) x1 = 2
Q.8- Match List-I with List-II and select the correct answer using the codes
given below the lists: [GATE-2005]
List-I List-II
A. Newton-Raphson method
B. Runge-Kutta method equations
C. Simpson's Rule equations
D. Gauss elimination
List-II
1. Solving nonlinear equations
2. Solving simultaneous linear equations
3. Solving ordinary differential
4. Numerical integration
5. Interpolation
6. Calculation of Eigen values
Codes:
A B C D
(a) 6 1 5 3
(b) 1 6 4 3
(c) 1 3 4 2
(d) 5 3 4 1
Q.9- A 2nd degree polynomial, f(x) has values of 1, 4 and 15 at x = 0, 1 and 2,
2
respectively. The integral ∫ 0𝑓(𝑥)𝑑𝑥 is to be estimated by applying the
trapezoidal rule to this data. What is the error (defined as "true value –
approximate value*) in the estimate?
(a) 1
(b) 𝜏/2
(c) 𝜏
(d) 2 𝜏
Q.11- Identify the Newton-Raphson iteration scheme for finding the square root
of 2.
2
(a) xn+1 = 1 (𝑥 + )
2 𝑛 𝑥𝑛
2
(b) xn+1 = 1 (𝑥 − )
2 𝑛 𝑥𝑛
2
(c) xn+1 = 1 ( )
2 𝑥𝑛
(d) xn+1 = √2 + 𝑥𝑛
Q.12- Match the following:
List-I
P: 2nd order differential equation
Q: Non-linear algebraic equation
R: Linear algebraic equation
S: Numerical Integration
List-II
1. Runge-Kutta Method
2. Newton-Raphson Method
3. Gauss Elimination
4. Simpson's rule
Codes:
P Q R S
(a) 3 2 4 1
(b) 2 4 3 1
(c) 1 2 3 4
(d) 1 3 2 4
Q.13- Equation ex – 1 = 0 is required to be solved using Newton's method with
an initial guess x0 = -1. Then, after one step of Newton's method, estimate
x1 of the solution will be given by-
(a) 0.71828
(b) 0.36787
(c) 0.20587
(d) 0.00000
Q.14- The bisection method is applied to compute a zero of the function f(x) =
x4 – x3 – x2 – 4 in the interval [1,9]. The method converges to a solution
after literations.
(a) 1
(b) 3
(c) 5
(d) 7
1.5 𝑑𝑥
Q.15- The estimated ∫ Obtained using Simpson's rule with three-point
0.5 𝑥
(a) 0.235
(b) 0.068
(c) 0.024
(d) 0.012
Q.16- When the Newton-Raphson method is applied to solve the equation f(x) =
x3 = 2x -1 = 0, the solution at the end of the first iteration with the initial
guess value as x0 = 1.2 is
(a) -0.82
(b) 0.49
(c) 0.705
(d) 1.69
4
∫ (𝑥4 + 10)𝑑𝑥
0
Q.18- Match the correct pairs
Scheme Polynomial
(a) 1.00
(b) 1.03
(c) 0.97
(d) 0.96
x 0 0.3 0.6 0.9 1.2 1.5 1.8 2.1 2.4 2.7 3.0
F(x) 0 0.09 0.36 0.81 1.44 2.25 3.24 4.4 5.76 7.29 9.00
3
The value of ∫0 𝑓(𝑥)𝑑𝑥 computed using the continuous at x = 3?
(a) 8.963
(b) 9.003
(c) 9.017
(d) 9.045
Application
(A) 0.95
(B) 1.00
(C) 1.22
(D) 1.29
4
Q.23- Evaluation of ∫2 𝑥3 𝑑𝑥 using 2-equal segment trapezoidal rule gives a
value of .[GATE-2019]
1
Q.24- The numerical value of the definite integral ∫ 0 𝑒−𝑥 𝑑𝑥 using trapezoidal
rule with function evaluations at points x = 0, 0.5 and 1 is
(round off to 3 decimal places) [GATE 2019]
Q.25- [GATE-2019] the function f(x) is given at n distinct values of x and its
value is to be interpolated at the point x*, using all the n points. The
estimate is obtained first by the Lagrange polynomial, denoted by IL and
then by the Newton polynomial, denoted by I N. Which one of the
following statements is correct?
solved by using the forward Euler method with a step size. Δt = 2. The
absolute error in the solution in the end of the first time step is .
Q.29-The following table lists an nth order polynomial f(x)= an-1xn-1+ ……a1x+a0
and the forward difference evaluated at equally spaced values of x. The
order of the polynomial is- [GATE-2017]
x F(x) Δf Δ2f Δ3f
-0.4 1.7648 -0.2965 0.089 -0.03
-0.3 1.4683 -0.2075 0.059 -0.0228
-0.2 1.2608 -0.1485 0.0362 -0.0156
-0.1 1.1123 -0.1123 0.0206 -0.0084
0 1 -0.0917 0.0122 -0.0012
0.1 0.9083 -0.0795 0.011 0.006
0.2 0.8288 -0.0685 0.017 0.0132
(a) 1
(b) 2
(c) 3
(d) 4
Q.30- Using Simpson's 1/3 rule for numerical integration, the consecutive points
are joined by a
(a) line
(b) parabola
(c) polynomial with power 3
(d) polynomial with power 1/3
Q.31 Runge-Kutta fourth order method is used to solve differential equation
𝑑𝑦
= 𝑦 − 𝑥. If the initial value y(0) = 2 and step size is 0.1, then value of
𝑑𝑥
Using a time step of 0.1. With the initial condition y(0)= 1, the value of y(1)
computed by this method is (correct to two decimal places).
Q.34- Consider p(s) = s3 + a2s2 + a1s +a0 with all real coefficients. It is known
that its derivative p'(s) has no real roots. The number of real roots of p(s)
is- [GATE 2018]
(a) 0
(b) 1
(c) 2
(d) 3
Q.35- What is the cube root of 1468 to 3 decimal places?
(a) 11.340
(b) 11.353
(c) 11.365
(d) 11.382
Q.36- What is the value of (1525)0.2 to 2 decimal places?
(a) 4.33
(b) 4.36
(c) 4.38
(d) 4.30
Q.37-The velocity v (in kilometer/minute) of a motorbike which starts from
rest, is given at fixed intervals of time t (in minutes) as follows:
t 2 4 6 8 10 12 14 16 18 20
v 10 18 25 29 32 20 11 5 2 0
up to second decimal, is .
Q.41- The root of the function f(x) = x3 + x –1 obtained on application of
Newton Raphson scheme using an initial guess of x0 = 1 is
(a) 0.682
(b) 0.686
(c) 0.750
(d) 1.000
Q.42- Newton-Raphson method is to be used to find foot of equation 3x – x +
sinx = 0. If the initial trail value of the roots is taken as 0.333, the next
approximation for the root would be .
Q.43- Numerical integration using trapezoidal rule gives the best result for a
single variable function,which is
(a) Linear
(b) Parabolic
(c) Logarithmic
(d) Hyperbolic
𝜋
Q.44-The error in numerically computing the integral ∫ (𝑠𝑖𝑛𝑥
0
+ 𝑐𝑜𝑠𝑥) dx
using the trapezoidal rule with three intervals of equal length between 0
and is .
Q.45-The ordinary differential equation- 𝑑𝑥 = -3x + 2, with x(0) = 1 is to be
𝑑𝑡
solved using the forward Euler method. The largest time step that can be
used to solve the equation without making the numerical solution unstable
is .
Q.46- Consider the first order initial value problem y' = y + 2x – x2, y (0) = 1, (0
≤ x < ∞ with exact solution y (x) = x2 + ex, For x = 0.1, the percentage
difference between the exact solution and the solution obtained using a
single iteration of the second order Runge-Kutta method with step-size h
= 0. 1 is .
Q.47-To solve the equation 2 sin x = x, by Newton Raphson method, the initial
guess value is chosen to be x = 2. Consider x in radians only. The value of
x (in radians) obtained after one iteration will be closest to:
(a) -8.101
(b) 1.901
(c) 2.099
(d) 12.101
Q48.- P(0,3), Q(0.5, 4) and R(1,5) are three points on the curve defined by f(x).
Numerical integration is carried out using both Trapezoidal rule and Simpson's
rule within limits x = 0 and x = 1 for the curve. The difference between the two
results will be-
(a) 0
(b) 0.25
(c) 0.5
(d) 1
Q.49-The following table lists an nth order polynomial f(x)= an-1xn-1+ ……a1x+a0
and the forward difference evaluated at equally spaced values of x. The
order of the polynomial is- [GATE-2017]
x F(x) Δf Δ2f Δ3f
-0.4 1.7648 -0.2965 0.089 -0.03
-0.3 1.4683 -0.2075 0.059 -0.0228
-0.2 1.2608 -0.1485 0.0362 -0.0156
-0.1 1.1123 -0.1123 0.0206 -0.0084
0 1 -0.0917 0.0122 -0.0012
0.1 0.9083 -0.0795 0.011 0.006
0.2 0.8288 -0.0685 0.017 0.0132
(a) 1
(b) 2
(c) 3
(d) 4