HamiIT
Sign inGet started
Home
ADD CONTENT

Sign in Required

Please sign in to add content

Sign In
ProgramsBCASemester 4Numerical MethodsUnit 3: Numerical Differentiation and Integration (5Hrs.)
Chapter Study

BCA Semester 4 – Numerical Methods – Unit 3: Numerical Differentiation and Integration (5Hrs.)

Comprehensive questions and detailed answers for Unit 3: Numerical Differentiation and Integration (5Hrs.). Perfect for exam preparation and concept clarity.

7
Questions
35
Marks
Back to All Chapters
1

Write an algorithm to compute integration using Simpson's 1/3 rule. Evaluate integration of

∫03(3x2+2x−5)dx\quad \quad \quad \quad ∫^3_0(3x2+2x−5)dx∫03​(3x2+2x−5)dx

using Simpson's 1/3 rule.

MediumTHEORY5 marks2021(TU FOHSS Final)
2

Using the trapezium rule, evaluate the integral

I=∫10dxx2+6x+10I=∫^0_1\frac{dx}{x2+6x+10}I=∫10​x2+6x+10dx​

with 2 and 4 sub intervals. Compare with the exact solution. Comment on the magnitudes of the errors obtained.

MediumTHEORY5 marks2022(TU FOHSS Final)
3

For solving a linear system, compare Gauss elimination method and Gauss Jordan method. Why Gauss Seidel method is better than Jacobi's iterative method?

MediumTHEORY5 marks2022(TU FOHSS Final)
4

Using Euler's method find y(0.2)y(0.2)y(0.2) from

dydx=x+y,y(0)=1\frac{dy}{dx}=x+y,\quad y(0)=1dxdy​=x+y,y(0)=1

with h = 0.

MediumTHEORY5 marks2022(TU FOHSS Final)
5

Write an algorithm and program to calculate integration using Trapezoidal rule.

MediumTHEORY5 marks2023(TU FOHSS Final)
6

Use the Romberg method to get an improved estimate of the integral from x = 1.8 to x = 3.4 from the data in the table with h = 0.4.

X: 1.61.82.02.22.42.62.83.03.23.43.63.8
Y: 4.956.057.389.0211.0213.4616.440.0524.5329.9636.5944.70
:39534563481
MediumTHEORY5 marks2024(TU FOHSS Final)
7

Write a program to compute integral ∫0π/2∫₀^{π/2} ∫0π/2​ √sinx dx√sinx \space dx√sinx dx Simpson's 1/31/31/3 rule.

MediumTHEORY5 marks2024(TU FOHSS Final)
Showing 7 questions

Exam Years

Past question papers

2024
TU FOHSS Final•2 questions
2023
TU FOHSS Final•1 questions
2022
TU FOHSS Final•3 questions
2021
TU FOHSS Final•1 questions

Questions in Unit 3: Numerical Differentiation and Integration (5Hrs.)

Write an algorithm to compute integration using Simpson's 1/3 rule. Evaluate integration of \[ \quad \quad \quad \quad ∫^30(3x2+2x−5)dx \] using Simpson's 1/3 rule.

Marks: 5

Year: 2021 Final TU FOHSS

(A) Algorithm: Simpson’s 1/3 Rule Step 1: Read the limits of integration \(a, b\) and the number of subintervals \(n\) (Note: \(n\) must be even) Step 2: Compute step size \[ h = \frac{b-a}{n} \

Using the trapezium rule, evaluate the integral \[ I=∫^01\frac{dx}{x2+6x+10} \] with 2 and 4 sub intervals. Compare with the exact solution. Comment on the magnitudes of the errors obtained.

Marks: 5

Year: 2022 Final TU FOHSS

Given: \[ I = \int0^1 \frac{dx}{x^2 + 6x + 10} \] --- Step 1: Exact Solution The integrand can be rewritten: \[ x^2 + 6x + 10 = (x+3)^2 + 1 \] \[ I = \int0^1 \frac{dx}{(x+3)^2 + 1} = \left. \arctan(x

For solving a linear system, compare Gauss elimination method and Gauss Jordan method. Why Gauss Seidel method is better than Jacobi's iterative method?

Marks: 5

Year: 2022 Final TU FOHSS

Given: \[ I = \int0^1 \frac{dx}{x^2 + 6x + 10} \] --- Step 1: Exact Solution The integrand can be rewritten: \[ x^2 + 6x + 10 = (x+3)^2 + 1 \] \[ I = \int0^1 \frac{dx}{(x+3)^2 + 1} = \left. \arctan(x

Using Euler's method find \(y(0.2)\) from \[ \frac{dy}{dx}=x+y,\quad y(0)=1\] with h = 0.

Marks: 5

Year: 2022 Final TU FOHSS

Given: \[ I = \int0^1 \frac{dx}{x^2 + 6x + 10} \] --- Step 1: Exact Solution The integrand can be rewritten: \[ x^2 + 6x + 10 = (x+3)^2 + 1 \] \[ I = \int0^1 \frac{dx}{(x+3)^2 + 1} = \left. \arctan(x

Write an algorithm and program to calculate integration using Trapezoidal rule.

Marks: 5

Year: 2023 Final TU FOHSS

1. Algorithm (Trapezoidal Rule) Goal: Approximate \(\inta^b f(x) dx\) using \(n\) subintervals. Steps: 1. Input: Function \(f(x)\), limits \(a\) and \(b\), number of subintervals \(n\). 2. Compute s

Use the Romberg method to get an improved estimate of the integral from x = 1.8 to x = 3.4 from the data in the table with h = 0.4. X: 1.6 | 1.8 |2.0|2.2|2.4|2.6|2.8|3.0|3.2|3.4|3.6|3.8| -|-|-|-|-|-|-

Marks: 5

Year: 2024 Final TU FOHSS

1. Problem Statement Estimate the integral \[ I = \int{1.8}^{3.4} f(x)\,dx \] using Romberg method with step size \(h = 0.4\), based on the table of values: | X | 1.6 | 1.8 | 2.0 | 2.2 | 2.4 | 2.6

Write a program to compute integral \(∫₀^{π/2} \) \(√sinx \space dx\) Simpson's \(1/3\) rule.

Marks: 5

Year: 2024 Final TU FOHSS

1. Problem Statement Compute the integral: \[ I = \int{0}^{\pi/2} \sqrt{\sin x} \, dx \] using Simpson's 1/3 Rule. --- 2. Simpson's 1/3 Rule For \(n\) intervals (even), step size \(h = \frac{b-a}{n}\

About Unit 3: Numerical Differentiation and Integration (5Hrs.) Questions

This page contains comprehensive questions from the Unit 3: Numerical Differentiation and Integration (5Hrs.) chapter of Numerical Methods, part of the BCA Semester 4 curriculum. All questions include detailed model answers from past TU exam papers.

Study Tips

  • Review concepts before attempting questions
  • Practice writing complete answers
  • Compare your answers with model solutions
  • Focus on questions from recent years
  • Use direct links (#question-ID) to bookmark and share specific questions

Related Resources

← Back to Numerical Methods Chapters

Unit 3: Numerical Differentiation and Integration (5Hrs.) chapter questions with answers for Numerical Methods (BCA Semester 4). Prepare for TU exams with our comprehensive question bank and model answers.

H
Hami IT

Empowering IT students with quality education resources and comprehensive exam preparation materials.

Programs

  • Flutter
  • Java
  • DevOps

Company

  • About Us
  • Contact

Contact

  • 📧hamiit.dev@gmail.com
  • 📞+977 9813706443
  • 📍Kathmandu, Nepal

© 2026 Hami IT. All rights reserved.