BE Civil Engineering (IOE, TU) Numerical Methods (IOE, SH 553) Question Paper 2078 Nepal
This is the official BE Civil Engineering (IOE, TU) Numerical Methods (IOE, SH 553) question paper for 2078, as set in the regular annual examination. It carries 80 full marks and a time allowance of 180 minutes, across 11 questions. On Kekkei you can attempt this Numerical Methods (IOE, SH 553) 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 BE Civil Engineering (IOE, TU) Numerical Methods (IOE, SH 553) exam or solving previous years' question papers, this 2078 paper is a great way to practise under real exam conditions.
Section A: Long Answer Questions
Attempt all questions.
A reinforced-concrete design check reduces to locating the real root of
(a) Show that a root lies in the interval and perform six iterations of the Bisection method, tabulating , , the midpoint and at each step. State the approximate root and an error bound.
(b) Starting from , perform three iterations of the Newton-Raphson method on and comment on the convergence rate compared with bisection.
Definition. A root of is a value for which . Bracketing methods rely on the Intermediate Value Theorem: if is continuous and , a root lies in .
(a) Bisection method
Check the bracket:
Since , a root lies in .
Iteration rule: ; if keep , else keep .
| Iter | New interval | ||||
|---|---|---|---|---|---|
| 1 | 1.00000 | 2.00000 | 1.50000 | ||
| 2 | 1.50000 | 2.00000 | 1.75000 | ||
| 3 | 1.50000 | 1.75000 | 1.62500 | ||
| 4 | 1.50000 | 1.62500 | 1.56250 | ||
| 5 | 1.50000 | 1.56250 | 1.53125 | ||
| 6 | 1.50000 | 1.53125 | 1.51562 |
Approximate root after 6 iterations: .
Error bound:
(b) Newton-Raphson method
. Iteration:
- :
- :
- :
Converged root .
Comment. Newton-Raphson reaches ~5 significant figures in 3 steps (quadratic convergence: the number of correct digits roughly doubles each step), whereas bisection (linear convergence, error halved per step) needs many more iterations for the same accuracy. The trade-off is that Newton-Raphson requires and may diverge for a poor initial guess, while bisection always converges once a sign change is bracketed.
(a) A survey gives the following reduced levels (RL, in m) of bench marks at distances (in m):
| (m) | 5 | 6 | 9 | 11 |
|---|---|---|---|---|
| RL (m) | 12 | 13 | 14 | 16 |
Using Lagrange's interpolation polynomial, estimate the RL at m.
(b) The settlement (mm) of a footing measured at equal time intervals (months) is:
| 0 | 1 | 2 | 3 | |
|---|---|---|---|---|
| 1 | 2 | 9 | 28 |
Construct the forward difference table and use Newton's forward-difference interpolation to estimate the settlement at month.
(a) Lagrange interpolation
For nodes with values , the polynomial is
At :
(b) Newton's forward-difference interpolation
Forward difference table ():
| 0 | 1 | 1 | 6 | 6 |
| 1 | 2 | 7 | 12 | |
| 2 | 9 | 19 | ||
| 3 | 28 |
With , ,
(a) Evaluate taking sub-intervals using (i) the Trapezoidal rule and (ii) Simpson's 1/3 rule. Compare both with the exact value and compute the percentage error of each.
(b) In an earthwork computation the cross-sectional areas (m) of a road cutting at chainages 20 m apart are:
| Chainage (m) | 0 | 20 | 40 | 60 | 80 |
|---|---|---|---|---|---|
| Area (m) | 12 | 18 | 22 | 25 | 20 |
Estimate the volume of earthwork between chainage 0 and 80 m using Simpson's 1/3 rule.
(a) Numerical integration of
Step size . Nodes and values:
| 0 | 0.00 | 1.000000 |
| 1 | 0.25 | 1.284025 |
| 2 | 0.50 | 1.648721 |
| 3 | 0.75 | 2.117000 |
| 4 | 1.00 | 2.718282 |
(i) Trapezoidal rule
(ii) Simpson's 1/3 rule
Exact value: .
Percentage errors:
- Trapezoidal: .
- Simpson 1/3: .
Simpson's rule is far more accurate (error versus for trapezoidal).
(b) Volume of earthwork (Simpson's 1/3 rule)
With m and 5 ordinates (even number of intervals = 4, so the rule applies directly):
(a) Solve the following system arising from a truss-equilibrium analysis using Gauss elimination with partial pivoting:
(b) Solve the following diagonally-dominant system using the Gauss-Seidel iterative method. Start with and perform three iterations:
(a) Gauss elimination with partial pivoting
Augmented matrix:
Partial pivoting (column 1): largest magnitude in column 1 is (row 2). Swap R1 and R2:
Eliminate column 1: , :
Partial pivoting (column 2): , swap R2 and R3:
Eliminate column 2: :
Upper-triangular system:
Back-substitution:
Solution: .
(b) Gauss-Seidel iteration
Rearranged for the dominant diagonal:
Start , using latest available values:
| Iter | |||
|---|---|---|---|
| 1 | |||
| 2 | |||
| 3 |
After 3 iterations: , converging to the exact solution .
The deflection model of a structural element gives the initial-value problem
(a) Use Euler's method with step size to estimate (show all four steps in a table).
(b) Use the fourth-order Runge-Kutta (RK4) method with step size to estimate (show both steps and all values).
(c) The exact solution is . Compute exactly and tabulate the absolute error of each method.
Here .
(a) Euler's method (): .
| Step | ||||
|---|---|---|---|---|
| 1 | 0.0 | 1.000000 | 1.000000 | 1.100000 |
| 2 | 0.1 | 1.100000 | 1.200000 | 1.220000 |
| 3 | 0.2 | 1.220000 | 1.420000 | 1.362000 |
| 4 | 0.3 | 1.362000 | 1.662000 | 1.528200 |
Euler estimate: .
(b) RK4 method (). Per step:
Step 1 (, ):
- at .
Step 2 ():
- at .
RK4 estimate: .
(c) Exact and error comparison
.
| Method | Absolute error | |
|---|---|---|
| Euler () | 1.528200 | |
| RK4 () | 1.583636 | |
| Exact | 1.583649 | — |
Conclusion. RK4 is dramatically more accurate (local error , global ) than Euler (global error ), even using a larger step size.
Section B: Short Answer Questions
Attempt all questions.
Using the Secant method, perform three iterations to find a root of , taking initial guesses and . State the approximate root.
Secant iteration: , with .
Initial: , .
Iteration 1 ():
.
Iteration 2 ():
.
Iteration 3 ():
Approximate root (true value ).
Fit a straight line by the method of least squares to the following load-test data and estimate at :
| 1 | 2 | 3 | 4 | 5 | |
|---|---|---|---|---|---|
| 2.2 | 2.8 | 3.6 | 4.5 | 5.1 |
Normal equations for ():
Sums:
| 1 | 2.2 | 2.2 | 1 |
| 2 | 2.8 | 5.6 | 4 |
| 3 | 3.6 | 10.8 | 9 |
| 4 | 4.5 | 18.0 | 16 |
| 5 | 5.1 | 25.5 | 25 |
| 15 | 18.2 | 62.1 | 55 |
Fitted line: .
At :
Classify the second-order PDE
using the discriminant criterion. Then write the five-point finite-difference (standard) formula for the Laplace equation on a square mesh of spacing , and use it to estimate the interior temperature of a plate where the four neighbouring nodal values are , , and .
Classification. For , the discriminant is :
- : elliptic (e.g. Laplace/Poisson, steady-state problems);
- : parabolic (e.g. heat/diffusion equation);
- : hyperbolic (e.g. wave equation).
For Laplace's equation : , hence elliptic.
Five-point formula. Using central differences with mesh spacing ,
so
i.e. each interior value is the average of its four neighbours.
u_top = 100
|
u_left -- P -- u_right
80 | 60
u_bot = 40
Estimate.
Given the discharge (m/s) measured against gauge height (m):
| (m) | 1.0 | 1.5 | 2.0 | 2.5 |
|---|---|---|---|---|
| 2.0 | 4.5 | 8.0 | 12.5 |
Using Newton's forward-difference formula for derivatives, estimate at m.
Spacing . Forward difference table:
| 1.0 | 2.0 | 2.5 | 1.0 | 0.0 |
| 1.5 | 4.5 | 3.5 | 1.0 | |
| 2.0 | 8.0 | 4.5 | ||
| 2.5 | 12.5 |
At the leading node (), the derivative formula is
Substituting :
Define absolute, relative and percentage error. The true value of a quantity is . If a hand-calculation uses the approximation , compute the absolute, relative and percentage errors of this approximation.
Definitions. If is the true value and the approximation:
- Absolute error: .
- Relative error: .
- Percentage error: .
Computation. , .
- Absolute error: .
- Relative error: .
- Percentage error: .
Thus overestimates by about , accurate to roughly three significant figures.
A river cross-section is sounded at 5 m horizontal intervals, giving the following depths (m) below the water surface across the width:
| Distance (m) | 0 | 5 | 10 | 15 | 20 |
|---|---|---|---|---|---|
| Depth (m) | 0 | 2.5 | 4.0 | 3.0 | 0 |
Using the Trapezoidal rule, estimate the cross-sectional area of flow of the river.
The cross-sectional area is , approximated by the Trapezoidal rule with m.
Cross-sectional area of flow . (This area, multiplied by the mean velocity, gives the river discharge .)
Frequently asked questions
- Where can I find the BE Civil Engineering (IOE, TU) Numerical Methods (IOE, SH 553) question paper 2078?
- The full BE Civil Engineering (IOE, TU) Numerical Methods (IOE, SH 553) 2078 (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 Methods (IOE, SH 553) 2078 paper come with solutions?
- Yes. Every question on this Numerical Methods (IOE, SH 553) past paper includes a step-by-step solution, plus instant AI feedback when you attempt it on Kekkei.
- How many marks is the BE Civil Engineering (IOE, TU) Numerical Methods (IOE, SH 553) 2078 paper?
- The BE Civil Engineering (IOE, TU) Numerical Methods (IOE, SH 553) 2078 paper carries 80 full marks and is meant to be completed in 180 minutes, across 11 questions.
- Is practising this Numerical Methods (IOE, SH 553) past paper free?
- Yes — reading and attempting this Numerical Methods (IOE, SH 553) past paper on Kekkei is completely free.