0% found this document useful (0 votes)
13 views3 pages

Raman Exp3 Removed

The document outlines an experiment in Numerical Methods focused on the Regula–Falsi (False Position) Method for estimating roots of nonlinear equations using Python. It includes the aim, objectives, software requirements, and algorithm details for implementing the method. Additionally, it highlights the learning outcomes related to understanding the method's principles and its implementation in Python.

Uploaded by

Aditya 18--
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views3 pages

Raman Exp3 Removed

The document outlines an experiment in Numerical Methods focused on the Regula–Falsi (False Position) Method for estimating roots of nonlinear equations using Python. It includes the aim, objectives, software requirements, and algorithm details for implementing the method. Additionally, it highlights the learning outcomes related to understanding the method's principles and its implementation in Python.

Uploaded by

Aditya 18--
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

DEPARTMENT OF

COMPUTER SCIENCE &


ENGINEERING
Experiment No. 3
Student Name: Raman singh UID: 23BET10133
Branch: BE-IT Section/Group: 602-‘B’
Semester: 6th Date of Performance: 23th Jan,2026
Subject Name: Numerical Methods Subject Code: 23SMH-341

1. Aim: To apply and implement the Regula–Falsi (False Position) Method to estimate
roots of nonlinear equations using Python
2. Objective:
❖ To understand the concept of root-finding in nonlinear equations.

❖ To implement the Regula–Falsi (False Position) method

❖ To estimate the root of a given nonlinear equation with desired accuracy.

3. Software Requirements:
⮚ Python (3.14.0)

⮚ Google Colab.

4. Algorithm:
⮚ Regula falsi Method

Regula–Falsi Method (False Position Method) is a numerical root-finding technique used to


estimate the root of a nonlinear equation f(x)=0f(x)=0f(x)=0.

It works by:

❖ Choosing two initial points aaa and bbb such that f(a)f(a)f(a) and f(b)f(b)f(b) have
opposite signs (ensuring a root lies between them).

❖ Drawing a straight line (secant) between (a,f(a))(a,f(a))(a,f(a)) and (b,f(b))(b,f(b))(b,f(b)).

❖ Finding the point where this line crosses the x-axis. This point is the new approximation
of the root.
DEPARTMENT OF
COMPUTER SCIENCE &
ENGINEERING
5) OUTPUT
DEPARTMENT OF
COMPUTER SCIENCE &
ENGINEERING

6) Learning Outcomes:
⮚ Understand the working principle of the Regula–Falsi method.

⮚ Identify suitable intervals where roots exist using sign changes.

⮚ Implement the Regula–Falsi algorithm in Python.

⮚ Analyze convergence behavior and accuracy of the method.

You might also like