BSc CSIT (TU) Science Numerical Method (BSc CSIT, CSC207) Question Paper 2075 Nepal
This is the official BSc CSIT (TU) (Science stream) Numerical Method (BSc CSIT, CSC207) question paper for 2075, as set in the regular annual examination. It carries 60 full marks and a time allowance of 180 minutes, across 12 questions. On Kekkei you can attempt this Numerical Method (BSc CSIT, CSC207) past paper online with a timer, get instant AI feedback and step-by-step solutions, and track the topics where you lose marks — completely free. Whether you are revising for your BSc CSIT (TU) Numerical Method (BSc CSIT, CSC207) exam or solving previous years' question papers, this 2075 paper is a great way to practise under real exam conditions.
Section A: Long Answer Questions
Attempt any TWO questions.
Explain the Gauss elimination method with partial pivoting to solve a system of linear equations. Solve the system 2x + y + z = 10, 3x + 2y + 3z = 18, x + 4y + 9z = 16.
Gauss Elimination with Partial Pivoting
Idea. Convert the augmented matrix into an upper-triangular form by elementary row operations, then solve by back substitution.
Partial pivoting. Before eliminating column , search rows for the entry with the largest absolute value in that column and swap it into the pivot (diagonal) position. This avoids division by a small/zero pivot and controls round-off error, improving numerical stability.
Algorithm.
- Form augmented matrix .
- For each column : pick the row with and swap to row (partial pivot).
- Eliminate entries below the pivot using .
- After triangularization, back-substitute: , then .
Solving the System
Augmented matrix:
Step 1 — Pivot column 1. Largest is (row 2). Swap :
Eliminate: , :
Step 2 — Pivot column 2. , so swap :
Eliminate: :
Back substitution.
Solution: (verified in all three original equations).
Derive the Simpson's 1/3 rule for numerical integration. Evaluate the integral of 1/(1+x) from 0 to 6 using Simpson's 1/3 rule taking 6 subintervals.
Derivation of Simpson's 1/3 Rule
Approximate over two equal subintervals of width (so three points ) by fitting a second-degree (parabolic) polynomial through .
Using Newton's forward interpolation with :
Integrating from to (i.e. to ), with :
Substituting and :
Composite rule (for even subintervals): the pattern is :
Evaluation of ,
Here , with .
| 0 | 0 | 1.000000 |
| 1 | 1 | 0.500000 |
| 2 | 2 | 0.333333 |
| 3 | 3 | 0.250000 |
| 4 | 4 | 0.200000 |
| 5 | 5 | 0.166667 |
| 6 | 6 | 0.142857 |
Apply the rule:
Check. Exact value , so the approximation is accurate to about .
Explain the fourth-order Runge-Kutta method for solving ordinary differential equations. Solve dy/dx = x + y, y(0) = 1 to find y(0.2) taking h = 0.1.
Fourth-Order Runge-Kutta (RK4) Method
For the IVP , the RK4 method advances the solution by one step using a weighted average of four slope estimates:
The local truncation error is and the global error , giving high accuracy without computing derivatives of .
Solve , find ,
Here .
Step 1:
Step 2:
Result: . (Exact gives — excellent agreement.)
Section B: Short Answer Questions
Attempt any EIGHT questions.
State and explain Lagrange's interpolation formula with a suitable example.
Lagrange's Interpolation Formula
Given data points with distinct, not necessarily equally spaced , the unique interpolating polynomial of degree is:
Each Lagrange basis polynomial has the property if and otherwise, so at every node. Its main advantage is that it needs no divided-difference table and works for unequal spacing; its drawback is that adding a new point requires recomputing all basis polynomials.
Example
Given , estimate :
At : , , .
This matches .
Derive the trapezoidal rule for numerical integration and state its error term.
Derivation of the Trapezoidal Rule
To approximate over one subinterval of width , fit a straight line (first-degree polynomial) through and . Using Newton's forward formula with :
Integrating over , :
Composite trapezoidal rule over subintervals ():
Error Term
For a single strip, the error is
For the composite rule the total error is
Thus the trapezoidal rule is exact for linear functions and the error is proportional to the second derivative, so it is zero when .
Explain the Gauss-Seidel iterative method to solve a system of linear equations.
Gauss-Seidel Iterative Method
The Gauss-Seidel method solves iteratively. For a system
each equation is solved for its diagonal variable:
Key feature: unlike Jacobi's method, it uses the most recently updated values immediately within the same iteration, so it generally converges faster.
Convergence condition: the method is guaranteed to converge if the coefficient matrix is diagonally dominant, i.e. for each row (strict for at least one). Rearrange equations to make diagonally dominant before iterating.
Procedure.
- Rearrange for diagonal dominance; assume initial guess (e.g. all zeros).
- Compute in order, immediately reusing new values.
- Repeat until (tolerance).
Example. For (diagonally dominant), iterating from converges quickly to .
Explain numerical differentiation using forward and backward difference formulae.
Numerical Differentiation by Finite Differences
Given tabulated values at equally spaced points with step , the derivative of is approximated using a difference table built from an interpolating polynomial.
Forward Difference Formula (near the start of the table)
Using Newton's forward interpolation with and differentiating w.r.t. ():
Simplest two-point form: , error .
Backward Difference Formula (near the end of the table)
Using Newton's backward interpolation and differentiating at :
Simplest form: , error .
Usage. Use the forward formula to estimate derivatives near the beginning of the table and the backward formula near the end; both are first-order accurate (error ), while a central difference is second-order accurate. Second derivatives follow by differentiating the series twice.
Explain Euler's method to solve an ordinary differential equation with an example.
Euler's Method
Euler's method is the simplest single-step method for the IVP . It approximates the curve by its tangent line over each step :
Geometrically, starting at we move along the slope for a horizontal distance . It is a first-order method with local truncation error and global error , so small is needed for accuracy.
Example
Solve for with (here ):
Step 1 ():
Step 2 ():
So . (Exact value ; the gap reflects Euler's first-order error, reducible with smaller .)
Differentiate between the Gauss elimination and Gauss-Jordan methods.
Gauss Elimination vs. Gauss-Jordan
Both are direct methods for solving via elementary row operations on the augmented matrix, but they differ in how far the reduction is carried.
| Aspect | Gauss Elimination | Gauss-Jordan |
|---|---|---|
| Final form | Upper triangular matrix | Diagonal / reduced row-echelon (identity) form |
| Elimination | Only entries below each pivot are made zero | Entries both above and below each pivot are made zero |
| Final step | Requires back substitution to get the solution | Solution read directly; no back substitution |
| Pivots | Usually not normalized to 1 | Pivots normalized to 1 (rows divided by pivot) |
| Arithmetic operations | About — fewer | About — more (≈50% extra) |
| Efficiency | More efficient for a single system | Less efficient, but convenient for matrix inversion |
| Typical use | Solving one linear system | Finding or reduced row-echelon form |
Summary: Gauss elimination triangularizes then back-substitutes; Gauss-Jordan fully diagonalizes so the solution appears directly. Gauss-Jordan does more work but is the standard route for computing the inverse of a matrix.
Explain Newton's divided difference interpolation formula.
Newton's Divided Difference Interpolation
For points with distinct, possibly unequally spaced , the interpolating polynomial is
Divided differences are defined recursively:
Properties / advantages.
- Works for unequally spaced data (unlike Newton's forward/backward formulae).
- Symmetric in arguments — the result is independent of the order of points.
- A new data point can be added by appending one extra term without recomputing previous ones.
Example. Given : , , . Hence , which evaluates the function at any required .
Explain the power method for finding the largest eigenvalue of a matrix.
Power Method (Largest Eigenvalue)
The power method is an iterative scheme to find the dominant eigenvalue (largest in magnitude) and its eigenvector of a square matrix , provided one eigenvalue strictly dominates: .
Algorithm.
- Choose a non-zero initial vector (e.g. or all ones).
- Iterate: .
- The dominant eigenvalue estimate is the largest-magnitude component of :
- Normalize to control growth: .
- Repeat until and stabilize within tolerance.
At convergence, (largest eigenvalue) and corresponding eigenvector.
Why it works. Expressing in the eigenbasis, . Since , all terms except the dominant one vanish, leaving the direction of .
Note. Convergence speed depends on the ratio ; the inverse power method () gives the smallest eigenvalue.
Fit a second-degree parabola y = a + bx + cx^2 to a set of data using the least squares principle.
Fitting a Second-Degree Parabola by Least Squares
We fit to data points by minimizing the sum of squared residuals
Setting gives the three normal equations:
Procedure.
- Build a table computing for each point.
- Form the column sums .
- Substitute into the three normal equations.
- Solve the resulting linear system (e.g. by Gauss elimination) for .
Example. For , : . Substituting and solving the three normal equations yields the best-fit coefficients , giving the required parabola .
Frequently asked questions
- Where can I find the BSc CSIT (TU) Numerical Method (BSc CSIT, CSC207) question paper 2075?
- The full BSc CSIT (TU) Numerical Method (BSc CSIT, CSC207) 2075 (regular) question paper is available free on Kekkei. You can read every question online and attempt the paper under timed exam conditions.
- Does the Numerical Method (BSc CSIT, CSC207) 2075 paper come with solutions?
- Yes. Every question on this Numerical Method (BSc CSIT, CSC207) past paper includes a step-by-step solution, plus instant AI feedback when you attempt it on Kekkei.
- How many marks is the BSc CSIT (TU) Numerical Method (BSc CSIT, CSC207) 2075 paper?
- The BSc CSIT (TU) Numerical Method (BSc CSIT, CSC207) 2075 paper carries 60 full marks and is meant to be completed in 180 minutes, across 12 questions.
- Is practising this Numerical Method (BSc CSIT, CSC207) past paper free?
- Yes — reading and attempting this Numerical Method (BSc CSIT, CSC207) past paper on Kekkei is completely free.