Numerical Analysis Viva Preparation
Numerical Analysis Viva Preparation
(MT301 – 24SMH-654)
Part 1: Root Detection & Linear Systems
Q: What is the difference between algebraic and transcendental equations?
A: Algebraic equations involve only powers of x (e.g., x^2 - 4 = 0), while transcendental
equations involve non-algebraic functions like e^x, log(x), sin(x).
Q: Why is error analysis important in numerical methods?
A: It brackets the root and halves the interval repeatedly. Guaranteed convergence if
f(a)·f(b) < 0.
Q: Describe the Regula-Falsi method.
A: Also called the false position method; uses a secant line to estimate the root. More
accurate than bisection in some cases.
Q: Derive the formula for Newton-Raphson method.
A: Gauss Elimination gives upper triangular form, while Gauss-Jordan reduces to diagonal
(row-reduced) form.
Q: What is LU decomposition? When is it preferred?
A: It decomposes A = LU and is used for solving multiple systems with same matrix.
Q: Discuss the difference between Gauss-Jacobi and Gauss-Seidel methods.
A: Jacobi uses previous values, while Seidel uses updated values for faster convergence.
A: Estimation between known data points, used when only discrete data is available.
Q: Explain Gregory-Newton forward and backward interpolation formulas.
A: Forward: when values are increasing; Backward: when values are decreasing. Both use
finite differences.
Q: What is the Stirling formula?
A: Used for numerical integration. Trapezoidal uses straight lines, Simpson’s uses parabolic
arcs.
Q: What are the sources of error in numerical integration?
A: Many differential equations lack exact solutions; numerical methods approximate them.
Q: Describe Taylor Series method.
A: Predicts and refines values iteratively using Milne’s and Adams-Bashforth methods.
Q: How do you solve PDEs using finite differences?
A: Replace derivatives with finite differences and iterate with boundary conditions.