0% found this document useful (0 votes)
2 views

Important_Numerical_Questions_Computational_Methods

Computation Methods important questions

Uploaded by

anujdixitdseu
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Important_Numerical_Questions_Computational_Methods

Computation Methods important questions

Uploaded by

anujdixitdseu
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Important Numerical Questions for Computational Methods

UNIT I: Numerical Roots and Minimization Methods

- 1. Solve f(x) = x^3 - 5x + 3 = 0 using the Bisection Method for 4 iterations in the interval [1, 2].

- 2. Use the Newton-Raphson Method to approximate the root of f(x) = x^2 - 7 starting from x0 = 2.5.

Perform 3 iterations.

- 3. Apply the Secant Method to find the root of f(x) = e^x - 3x, starting with x0 = 0 and x1 = 1, for 3

iterations.

- 4. Minimize the function f(x) = x^2 + 4x + 5 using the Golden Section Search Method.

UNIT II: Interpolation and Numerical Integration

- 1. Using Newton's Forward Interpolation, find the value of y at x = 2.5 from the following data: x: 1,

2, 3, 4; y: 1, 8, 27, 64.

- 2. Apply Lagrange's Interpolation to find y at x = 7 for the points: x: 5, 6, 9; y: 12, 13, 16.

- 3. Solve the integral of (x^2 + 1) from 0 to 1 using the Trapezoidal Rule with 4 intervals.

- 4. Evaluate the integral of (x^3) from 1 to 2 using Simpson's 1/3 Rule with 2 intervals.

- 5. Solve the integral of sin(x) from 0 to pi/2 using Gaussian Quadrature with a 2-point formula.

UNIT III: Linear Algebraic Equations and Splines

- 1. Solve the system of equations using Gauss Elimination: x + y + z = 6, 2x + 3y + 3z = 14, y + 2z

= 8.

- 2. Perform LU Decomposition for the matrix: A = [[2, -1, 1], [3, 3, 9], [3, 3, 5]].

- 3. Find the largest eigenvalue of the matrix [[4, 1], [2, 3]] using the Power Method.

- 4. Compute the Natural Cubic Spline for the points (1, 2), (2, 3), and (3, 5).

UNIT IV: Ordinary and Partial Differential Equations

- 1. Solve the ODE dy/dx = x + y with y(0) = 1 using Euler's Method for x = 0.1, 0.2 (step size h =

0.1).
- 2. Apply the Runge-Kutta Method (4th order) to solve dy/dx = y - x^2 + 1 with y(0) = 0 at x = 0.2

(step size h = 0.2).

- 3. Solve the parabolic PDE u_t = 4u_xx using an explicit finite difference scheme.

- 4. Classify the PDE u_tt = c^2 * u_xx and explain its physical significance.

You might also like