Numerical Methods Lesson Plan
Numerical Methods Lesson Plan
1. Find absolute, relative and percentage error if the number 752.6835 is truncated to four
significant digits.
2. Find absolute, relative and percentage error if the number 72.639 is truncated to three
significant digits.
1. Explain graphically how real root of nonlinear equation is obtained using Secant method.
2. Discuss the algorithms for Newton Raphson method.
3. Write a program in C to find real root of nonlinear equation using Bisection method.
1. Find real root of nonlinear equation: cos(x) – xex = 0 using Secant Method.
2. Find root of nonlinear equation x3 – 3x-11=0 using Newton Raphson method taking 0.9
as initial guess.
CHAPTER 3: SOLUTION OF SYSTEM OF LINEAR ALGEBRAIC EQUATIONS (6
HOURS) = (REQUIRED TIME: 45 MINUTES X 12 PERIODS)
1. Explain procedure for solving system of linear equation using Gauss Jordan method.
2. Write algorithms for solving system of linear equation using Gauss Elimination method.
3. Compare computational complexity of Gauss Elimination and Gauss Jordan method.
4. Explain procedure for Seidel iteration.
1. The table gives the distance in nautical miles of the visible horizon for the given heights
in feet above the earth’s surface:
x = height 100 150 200 250 300 350 400
y: 1 3 9 ? 81
1. Derive formula to find numerical first and second derivative using Newton’s forward
interpolation formula.
2. Derive Newton’s Cote general quadrature formula for numerical integration.
3. Write algorithms to integrate given function using Simpson’s 1/3 rule.
4. Write a program in C to find numerical integration of given function using Trapezoidal
method.
6 1
2. Find numerical integration of: ∫0 𝑑𝑥 taking 12 sub-intervals using:
1+𝑥 2
a. Trapezoidal Method
b. Simpson’s 1/3 Method
c. Simpson’s 3/8 Method
1. Solve the partial differential equation ∆2u = 0 under the conditions: h=1, u (0, y) =0, u (4,
y) =12+y for 0≤y≤4, u(x,0) = 3x and u(x,4) = x2 for 0≤x≤4.
2. Solve the partial differential equation ∆2u = -10(x2+y2+10) over the square with sides
x=0=y, x=3=y with u=0 on the boundary and mesh length = 1.