CSIT 3rd Semester
Numerical Method Board Question Paper 2080


CSC 212-2080 ✡
Tribhuvan University
Institute of Science and Technology
2080
Bachelor Level/Second Year/Third Semester/Science
Computer Science Information Technology (CSC 212)
(Numerical Method)
(New Course)
Full Marks:60 Pass Marks:24 Time:3 hours

Candidates are required to give their answers in their own words as for as practicable.
The figures in the margin indicate full marks

Section A
Long Answer Questions
Attempt any Two question.
[2x10=20]
1.

How secant methods differs from Newton Raphson method? Derive the formula for Secant Method. Solve the equation cos x + 2 sin x − x² = 0 using Secant method. Assume error precision as 0.01. Discuss drawbacks of the Newton Raphson method.

2.

Define the terms interpolation and extrapolation. Write down algorithm and program for Newton's divided difference interpolation.

3.

How Gauss Jordan method differs from Gauss Elimination method? Solve the following system of equations using Gauss Jordan method. How can we use Gauss Jordan method to find inverse of a matrix? Discuss.
2x − y + 4z = 15
2x + 3y − 2z = 4
3x + 2y − 4z = −4

Section B

Attempt any Eight questions

[8x5=40]
4.

Define the terms approximate error and relative approximate error? Discuss the working of Half Interval method for finding roots of non-linear equation.

5.

Construct Newton's backward difference table for the given data points and approximate the value of f(x) at x=45.

x1020304050
f(x)0.9850.9340.8660.7660.643

6.

Fit the quadratic curve through the following data points and estimate the value of f(x) at x=2.

x13456
y27875

7.

Factorize the following matrix using Cholesky method.
⎡2 1 1⎤
⎢3 2 3⎥
⎣1 4 9⎦

8.

How can we calculate derivatives of discrete (tabulated) functions? Write down its algorithm.

9.

Find following integral using composite trapezoidal rule for using 2 segments (k=2) and 4 segments (k=4).
∫₁⁸ (x³ + 2)dx

10.

Approximate the solution of y' = 3x², y(1) = 1 using Taylor's Series method using first four terms. Approximate the value of y(2).

11.

Solve the Poisson's equation ∇²f = xy with and f = 2 on boundary by assuming square domain 0 ≤ x ≤ 3 and 0 ≤ y ≤ 3 and h = 1.

12.

Write down program for solving ordinary differential equation using Heun's method.