CSIT 3rd Semester
Numerical Method Board Question Paper 2079


CSC 212-2079 ✡
Tribhuvan University
Institute of Science and Technology
2079
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 method can approximate the root of a non-linear equation? Explain with necessary derivation. Estimate a real root of following equation using secant method. Assume error precision of 0.01.
x³ + 2x − cos(x) = 4

2.

How spline interpolation differs with the Lagrange's interpolation? Estimate the value of f(0) and f(4) using cubic spline interpolation from the following data.

x-1135
f(x)-10-21486

3.

What is pivoting? Why is it necessary? Write an algorithm and program to solve the set of n linear equations using Gaussian elimination method.

Section B

Attempt any Eight questions

[8x5=40]
4.

Calculate a real root of the following function using bisection method corrrect up to 3 significant figures.
x² − e⁻ˣ = 3

5.

What is fixed point iteration method? How can it converge to the root of a non-linear equation? Also explain the diverging cases with suitable examples.

6.

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

7.

Fit the quadratic function for the data given below using least square method.

x1.01.52.02.53.03.54.0
f(x)2.745.88.311.21519

8.

Estimate the integral value of following function from x = 1.2 to x = 2.4 using Simpson's 1/3 rule.

x1.01.21.41.61.82.02.22.42.6
f(x)1.532.253.184.325.677.238.9810.9413.08

9.

What is Gaussian integration formula? Evaluate the following integration using Gaussian integration three ordinate formula.
∫₀¹ (sin x)/x dx

10.

Solve the following set of equations using Gauss Seidel method.
x + 2y + 3z = 4
6x + 4y + 5z = 16
5x + 2y + 3z = 12

11.

Solve the following differential equation for 0 ≤ x ≤ 1, taking h = 0.5 using Runge Kutta 4ᵗʰ order method.
y'(x) + y = 3x, with y(0) = 2

12.

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