Numerical Method
Community
Numerical Method
2077 Boards
Section A
Answer any two questions.
1
Derive the formula for Newton Raphson Method. Solve the equation (x^2 + 4x – 9 = 0) using Newton Raphson method. Assume error precision is 0.01. Discuss drawbacks of the Newton Raphson method.
10
Connect with us on Discord to become a contributor.
2
How interpolation differs from regression? Write down algorithm and program for Lagrange interpolation.
10
Connect with us on Discord to become a contributor.
3
Why partial pivoting is used with Naive Gauss Elimination method? Solve the following system of equations using Gauss Elimination method with partial pivoting? How Gauss Jordan method differs from Gauss elimination method?
2x + 2y – z = 6
4x + 2y + 3z = 4
x + y + z = 0
10
Connect with us on Discord to become a contributor.
Section B
Answer any eight questions.
4
Define the terms true error and relative error? Use Horner’ method to evaluate polynomial (2x^3 – 3x^2 + 5x – 2) at x = 3 and write down its algorithm.
5
Connect with us on Discord to become a contributor.
5
Construct Newton’s forward difference table for the given data points and approximate the value of f(x) at x = 15.
| x | F(x) |
|---|---|
| 10 | 0.173 |
| 20 | 0.342 |
| 30 | 0.500 |
| 40 | 0.643 |
| 50 | 0.766 |
5
Connect with us on Discord to become a contributor.
6
Fit the curve
through the following data points.
| x | y |
|---|---|
| 1 | 1.65 |
| 2 | 2.70 |
| 3 | 4.50 |
| 4 | 7.35 |
5
Connect with us on Discord to become a contributor.
7
Discuss the Doolittle LU decomposition method for matrix factorization.
5
Connect with us on Discord to become a contributor.
8
Write down algorithm and program for the differentiating continuous function using three point formula.
5
Connect with us on Discord to become a contributor.
9
How Simpson’s 1/3 rule differs from Trapezoidal rule? Drive the formula for Simson’s 1/3 rule.
5
Connect with us on Discord to become a contributor.
10
Appropriate the solution of y’ = 2x + y , y(0) = 1 using Euler’s method with step size 0.1. Approximate the value of y(0.4).
5
Connect with us on Discord to become a contributor.
11
A plate of dimension 18cm x 18cm is subjected to temperatures as follows: left side at (100 deg C), right side at (200 deg C). Upper part at (50 deg C), and lower at (150 deg C). If square grid length of 6cm x 6cm is assumed, what will be the temperature at the interior nodes?
5
Connect with us on Discord to become a contributor.
12
How boundary value problems differs from initial value problems? Discuss shooting method for solving boundary value problem.
5
Connect with us on Discord to become a contributor.