Important_Numerical_Questions_Computational_Methods
Important_Numerical_Questions_Computational_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.
- 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.
= 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).
- 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
- 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.