0% found this document useful (0 votes)
141 views4 pages

DX Dy: Order To Estimate y (0.1) and y (0.2) When y (X)

The document contains problems related to numerical methods including: 1) Computing an integral using the trapezoidal rule with 5 ordinates and correct to 6 decimals. 2) Finding the inverse of a number using the Newton-Raphson method correct to 5 significant figures. 3) Deriving the general form of the trapezoidal rule. 4) Solving a transcendental equation using the Regula-Falsi method correct to 3 decimals.

Uploaded by

Paridhi Babel
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
141 views4 pages

DX Dy: Order To Estimate y (0.1) and y (0.2) When y (X)

The document contains problems related to numerical methods including: 1) Computing an integral using the trapezoidal rule with 5 ordinates and correct to 6 decimals. 2) Finding the inverse of a number using the Newton-Raphson method correct to 5 significant figures. 3) Deriving the general form of the trapezoidal rule. 4) Solving a transcendental equation using the Regula-Falsi method correct to 3 decimals.

Uploaded by

Paridhi Babel
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 4

1. Compute using Trapezoidal rule ∫ e to the power x -2 d x from x= 0 to x= 1.

taking 5
Ordinates, correct to 6 decimals.

2. Compute using Newton-Rapshon Method of the following Expression of


1/2
( 7 ) Correct up to 5 significant figures.

3. Deduce the Trapezoidal rule using general notations.


4.
Solve the Transcendental Equation using Regula-Falsi Method
Given x ex - 2 = 0 correct to 3 decimal. Why it is different from other Methods

0
5. Evaluate the integral ∫ sin µ dµ from µ= 0 to µ= ∏/2 taking h = 9
by a) Simpson’s 1/3 Rule b) Trapezoidal Rule and compare which is more exact .

6. Solve by using Euler’s Method the following Differential Equation for x=1 by taking
dy
h= 0.2. , = x y, y=1 when x=0;
dx

1 1
7. Given the following table of function F(x) = find using the suitable
x 2.72
Interpolation formulae. Find an estimate of the error.

X 2.7 2.8 2.9


F(x) 0.3704 0.3571 0.3448

8. Solve the Systems of linear equations by Gauss-Elimination method.

x - 2 y + 9z = 8

3x+ y - z=3

2 x - 8 y + z = -5

9. Use the R-K method of 4th Order to estimate y(0.1) and y(0.2)when y/ ( x ) =
2
x y + y and y( 0 ) = 1;

10. Solve the equation by L-U factorization method

2x+y+z=3
x + 3 y + z = -2
x + y + 4 z = -6

11. Construct Lagrange’s Interpolation polynomial by using the following data:


x 41 46 51 56
f(x) 15.22 13.99 12.62 11.13

12. Use the following table to find log 10 2. 6 9

x 2.0 2.2 2.4 2.6 2.8 3.0


f(x) 0.30103 0.34242 0.38021 0.41497 0.44716 0.47721

13. Matrix B = 1 3 3 is given. Find the B-1 using Gauss –Jordan method.
143
134

14. Solve the following differential equations for x= 1 by taking h = 0.2 using

dy
Taylor’s series method, = x3+y4 y(0) = 1; Correct the four decimal places.
dx

15. Check that whether the following set of equations are diagonally dominant if not
rearrange them and solve the system of equations by Gauss-Seidel method

-2 x + 3 y + 10 z = 22

x + 10 y - z = -22

10 x + 2 y + z = 9

16. ** Every error expression and calculation is necessary for semester

17. Choose the correct alternatives of the following

2
i) (  - ) X (the notation possesses usual meanings)

a) h 2 2
b) -2 h

2
c) 2 h d) None of these

ii) Error in the 4th order Runge –Kutta method is of

a) O (h 3 ) b) O (h 2)
4 5
c) O(h ) d) O ( h )

iii) The condition of convergence of Newton-Rapshon method when applied to


function G(x) = 0 in the specified interval is

a) G/ (x) ≠ 0 b) Mod (G / (x))<1

b) {G/ (x)}2 >Mod (G/ (x) . G/ /(x)) d) {G/ /(x)}2> Mod (G(x) . G/ (x))

iv) If 5/3 is approximated to 1.6667, then absolute error is

a) 0.000033 b) 0.000043

c) 0.000045 d) 0.000051

v) The number of significant figure in 0. 0340980

a) 5 b) 6

c) 7 d) 3

vi) The truncation error in composite Simpson’s 1/3 rule is of order

a) h2 b) h 3

c) h4 d) h 5

vii)  3( Y 0) may be expressed as the following terms

a) ( Y 3 - 3 Y 2 + 3 Y1 - Y0 ) b) (Y2 - 2 Y1 + Y0 )

c) ( Y 3 - 3 Y 2 + 3 Y1 + Y0 ) d) Both (a) and (c)

viii) The disadvantage of the Weddle’s Rule is due to

a) Number of subintervals is less b) More subdivisions of multiple of six

c) More complex calculation d) Time consuming

ix) If G(x) be a polynomial of degree n, the nth order difference is a constant


a) True b) False

x) Lagrange interpolation formula deals with

a) Equispaced arguments only b) Uneuispaced arguments only

c) Both (a) and (b) d) None of these

xi) Relative Error is measured by the following expression

AbsoluteError AbsoluteError
a) Mod [ Approximate Error ] b) Mod [ ]
ExactError

c) Mod (Exact value – Approximate value) d) None of These

xii) The number of significant figure in 0. 0340980

a) 5 b) 6

c) 7 d) 3

xiii) The degree of precision of Simpson’s 1/3 rule is

a) 0 b) 2

c) 1 d) 3

Algorithm and Programming for semester: i) N-R, Trapezoidal,!/3 Simpson’s, R-K-4,


Euler, Gauss-elimination, Inverse of matrix using Gauss-Jordan etc and general chapter of
c.

*** General C programming.

You might also like