SlideShare a Scribd company logo
1 of 15
Roots Of Equations
Class : TD1
Branch : Information Technology
Group Member : Jay Mehta (91600104040)
Helly Mehta (91600104030)
Pranav Patel (91600104026)
Tanmay Patel (91600104033)
Akash Ladani (91600104058)
History
 In the Sulba Sutras in ancient India circa 8th
century BC quadratic equations of the form ax2 =
c and ax2 + bx = c were explored using
geometric methods. Babylonian mathematicians
from circa 400 BC and Chinese mathematicians
from circa 200 BC used the method of
completing the square to solve quadratic
equations with positive roots, but did not have a
general formula.
 Euclid, the Greek mathematician, produced a more abstract geometrical
method around 300 BC.
 Pythagoras and Euclid used a strictly geometric approach, and found a general
procedure to solve the quadratic equation.
 In his work Arithmetica, the Greek mathematician Diophantus solved the
quadratic equation, but giving only one root, even when both roots were
positive.
 In 628 AD, Brahmagupta, an Indian mathematician, gave the first explicit
(although still not completely general) solution of the quadratic equation
History of Roots of Equation
 Root, in mathematics, a solution to an equation, usually expressed as
a number or an algebraic formula.
 In the 9th century, Arab writers usually called one of the equal
factors of a number jadhr (“root”), and their medieval European
translators used the Latin word radix (from which derives the
adjective radical).
Method To Find Roots
• In this topic we are examining equations with one independent variable.
• These equations may be linear or non-linear
• Non-linear equations may be polynomials or generally non-linear equations
• A root of the equation is simply a value of the independent variable that
satisfies the equation
• Linear: independent variable appears to the first power only, either alone or
multiplied by a constant
• Nonlinear:
– Polynomial: independent variable appears raised to powers of positive
integers only
– General non-linear: all other equations
Three methods to find Roots
1. Bisection Method
2. Regula-Falsi Method
3. Newton’s Rapshon method
Intermediate Value property
• If 𝑓 𝑥 is continuous in [a,b] and 𝑓 𝑎 and 𝑓 𝑏 have different signs then the
equations 𝑓 𝑎 = 0 has at least one root between x=a and x=b.
1. Bisection Method
• The bisection method in mathematics is a
root finding method which repeatedly bisects
an interval and then selects a subinterval in
which a root must lie for further processing.
• It is a very simple and robust method, but it
is also relatively slow. Because of this, it is
often used to obtain a rough approximation
to a solution which is then used as a starting
point for more rapidly converging methods
.The method is also called the binary search
method or the dichotomy method
Fig 1.1 Graphical representation of
Bisection method
Flowchart of Bisection method to implement C Program
2. Regula Falsi Method
Most numerical equation-solving methods usually converge faster than Bisection.
The price for that is that some of them (e.g. Newton’s method and Secant) can fail
to converge at all, and all of them can sometimes converge much slower than
Bisection—sometimes prohibitively slowly. None can guarantee Bisection’s
reliable and steady guaranteed convergence rate. Regula Falsi, like Bisection,
always converges, usually considerably faster than Bisection—but sometimes
much slower than Bisection.
When numerically solving an equation manually, by calculator, or when a
computer program run has to solve equations so many times that the speed of
convergence becomes important, then it could be preferable to first try a usually-
faster method, going to Bisection only if the faster method fails to converge, or
fails to converge at a useful rate.
It is also known as false position method.
It is same as bisection method.
In bisection method
𝑐 =
𝑎 + 𝑏
2
But in regula falsi method
𝑐 =
𝑎𝑓 𝑏 − 𝑏𝑓 𝑎
𝑓 𝑏 − 𝑓 𝑎
The method starts with a function f defined over the real numbers x, the
function's derivative f ′, and an initial guess x0 for a root of the function f. If the
function satisfies the assumptions made in the derivation of the formula and the
initial guess is close.
Geometrically, (x1, 0) is the intersection of the x-axis and the tangent of
the graph of f at (x0, f (x0)).
The process is repeated as
𝑥 𝑛+1 = 𝑥 𝑛 −
𝑓 𝑥 𝑛
𝑓′ 𝑥 𝑛
until a sufficiently accurate value is reached.
3. Newton’s Rapshon Method
Application
Bisection Method -1
Shot Detection in Video Content for Digital Video Library - The study presented the usage of
bisection method for shot detection in video content for the Digital Video Library (DVL).
DVL is a networked Internet application allowing for storage, searching, cataloguing, browsing,
retrieval, searching and unicasting video sequences.
The browsing functionality can be significantly facilitated by a fast shot detection process.
Experiments show that usage of the bisection method, allows for accelerating shot detection about
3÷150 times (related to the shot density).
At the end of the paper two possible networked applications are presented: a medical DVL
developed for eLearning purposes and a hypothetical networked news application.
Bisection Method -2
Locating and computing periodic orbits in molecular systems - The
Characteristic Bisection Method for finding the roots of non-linear
algebraic and/or transcendental equations is applied to LiNC/LiCN
molecular system to locate periodic orbits and to construct the
continuation/bifurcation diagram of the bend mode family. The
algorithm is based on the Characteristic Polyhedra which define a
domain in phase space where the topological degree is not zero. The
results are compared with previous calculations obtained by the Newton
Multiple Shooting algorithm. The Characteristic Bisection Method not
only reproduces the old results, but also, locates new symmetric and
asymmetric families of periodic orbits of high multiplicity.
REGULA FALSI METHOD
The Regula Falsi method is applied to prediction of trace quantities of
air pollutants produced by combustion reactions such as those found in
industrial point sources.
Equilibrium quantities of uncombusted fuel generally are quite small,
due to the exothermic nature of combustion reactions.
Accordingly, calculating the maximum theoretical efficiency which may
be achieved in a combustion process is difficult since the equations
describing the equilibrium state are stiff.
SNM

More Related Content

What's hot

2 lesson 1 the factoring method
2 lesson 1 the factoring method2 lesson 1 the factoring method
2 lesson 1 the factoring methodMelchor Cachuela
 
4 ESO Academics - UNIT 08 - VECTORS AND LINES.
4 ESO Academics - UNIT 08 - VECTORS AND LINES.4 ESO Academics - UNIT 08 - VECTORS AND LINES.
4 ESO Academics - UNIT 08 - VECTORS AND LINES.Gogely The Great
 
Abstract algebra & its applications (1)
Abstract algebra & its applications (1)Abstract algebra & its applications (1)
Abstract algebra & its applications (1)drselvarani
 
PROLOG: Matching And Proof Search In Prolog
PROLOG: Matching And Proof Search In PrologPROLOG: Matching And Proof Search In Prolog
PROLOG: Matching And Proof Search In PrologDataminingTools Inc
 
Alg II Unit 4-9 Solving Quadratic Systems
Alg II Unit 4-9 Solving Quadratic SystemsAlg II Unit 4-9 Solving Quadratic Systems
Alg II Unit 4-9 Solving Quadratic Systemsjtentinger
 
Triangularization method
Triangularization methodTriangularization method
Triangularization methodKamran Ansari
 
Ma121 revised format for course handout
Ma121 revised format for course handoutMa121 revised format for course handout
Ma121 revised format for course handoutTamal Pramanick
 
Binary search python
Binary search pythonBinary search python
Binary search pythonMaryamAnwar10
 
Second or fourth-order finite difference operators, which one is most effective?
Second or fourth-order finite difference operators, which one is most effective?Second or fourth-order finite difference operators, which one is most effective?
Second or fourth-order finite difference operators, which one is most effective?Premier Publishers
 
Gaussian presentation
Gaussian presentationGaussian presentation
Gaussian presentationmojdeh y
 
Math, applied math, and math in physics
Math, applied math, and math in physicsMath, applied math, and math in physics
Math, applied math, and math in physicsJoe Redish
 

What's hot (19)

2 lesson 1 the factoring method
2 lesson 1 the factoring method2 lesson 1 the factoring method
2 lesson 1 the factoring method
 
Third lecture
Third lectureThird lecture
Third lecture
 
Binary search
Binary searchBinary search
Binary search
 
Geometry.10
Geometry.10Geometry.10
Geometry.10
 
Determinants3
Determinants3Determinants3
Determinants3
 
4 ESO Academics - UNIT 08 - VECTORS AND LINES.
4 ESO Academics - UNIT 08 - VECTORS AND LINES.4 ESO Academics - UNIT 08 - VECTORS AND LINES.
4 ESO Academics - UNIT 08 - VECTORS AND LINES.
 
Bachelor's Thesis
Bachelor's ThesisBachelor's Thesis
Bachelor's Thesis
 
Abstract algebra & its applications (1)
Abstract algebra & its applications (1)Abstract algebra & its applications (1)
Abstract algebra & its applications (1)
 
Lecture 6.1 6.2 bt
Lecture 6.1 6.2 btLecture 6.1 6.2 bt
Lecture 6.1 6.2 bt
 
PROLOG: Matching And Proof Search In Prolog
PROLOG: Matching And Proof Search In PrologPROLOG: Matching And Proof Search In Prolog
PROLOG: Matching And Proof Search In Prolog
 
Alg II Unit 4-9 Solving Quadratic Systems
Alg II Unit 4-9 Solving Quadratic SystemsAlg II Unit 4-9 Solving Quadratic Systems
Alg II Unit 4-9 Solving Quadratic Systems
 
Triangularization method
Triangularization methodTriangularization method
Triangularization method
 
Ma121 revised format for course handout
Ma121 revised format for course handoutMa121 revised format for course handout
Ma121 revised format for course handout
 
Binary search python
Binary search pythonBinary search python
Binary search python
 
Second or fourth-order finite difference operators, which one is most effective?
Second or fourth-order finite difference operators, which one is most effective?Second or fourth-order finite difference operators, which one is most effective?
Second or fourth-order finite difference operators, which one is most effective?
 
Lu decomposition
Lu decompositionLu decomposition
Lu decomposition
 
Numerical methods ppt
Numerical methods pptNumerical methods ppt
Numerical methods ppt
 
Gaussian presentation
Gaussian presentationGaussian presentation
Gaussian presentation
 
Math, applied math, and math in physics
Math, applied math, and math in physicsMath, applied math, and math in physics
Math, applied math, and math in physics
 

Similar to SNM

ROOT OF NON-LINEAR EQUATIONS
ROOT OF NON-LINEAR EQUATIONSROOT OF NON-LINEAR EQUATIONS
ROOT OF NON-LINEAR EQUATIONSfenil patel
 
Numerical Study of Some Iterative Methods for Solving Nonlinear Equations
Numerical Study of Some Iterative Methods for Solving Nonlinear EquationsNumerical Study of Some Iterative Methods for Solving Nonlinear Equations
Numerical Study of Some Iterative Methods for Solving Nonlinear Equationsinventionjournals
 
The general idea is to find a root of the polynomial and then apply .pdf
The general idea is to find a root of the polynomial and then apply .pdfThe general idea is to find a root of the polynomial and then apply .pdf
The general idea is to find a root of the polynomial and then apply .pdfanubhavnigam2608
 
CME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkck
CME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkckCME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkck
CME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkckMdNahidHasan71
 
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...Stephen Faucher
 
Roots of equations
Roots of equations Roots of equations
Roots of equations shopnohinami
 
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...mathsjournal
 
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...mathsjournal
 
Newton paper.docx
Newton  paper.docxNewton  paper.docx
Newton paper.docxnitmor1
 
Systems of equations lesson 5
Systems of equations lesson 5Systems of equations lesson 5
Systems of equations lesson 5KathManarang
 
Bioinformatics_Sequence Analysis
Bioinformatics_Sequence AnalysisBioinformatics_Sequence Analysis
Bioinformatics_Sequence AnalysisSangeeta Das
 
83662164 case-study-1
83662164 case-study-183662164 case-study-1
83662164 case-study-1homeworkping3
 
Bisection method
Bisection methodBisection method
Bisection methodniksingle
 
Numerical Analysis and Computer Applications
Numerical Analysis and Computer ApplicationsNumerical Analysis and Computer Applications
Numerical Analysis and Computer ApplicationsMujeeb UR Rahman
 
Introduction to finite element method
Introduction to finite element methodIntroduction to finite element method
Introduction to finite element methodshahzaib601980
 
Mst209 block4 e1i1_n9780749252847 (2)
Mst209 block4 e1i1_n9780749252847 (2)Mst209 block4 e1i1_n9780749252847 (2)
Mst209 block4 e1i1_n9780749252847 (2)Fred Stanworth
 

Similar to SNM (20)

ROOT OF NON-LINEAR EQUATIONS
ROOT OF NON-LINEAR EQUATIONSROOT OF NON-LINEAR EQUATIONS
ROOT OF NON-LINEAR EQUATIONS
 
Numerical Study of Some Iterative Methods for Solving Nonlinear Equations
Numerical Study of Some Iterative Methods for Solving Nonlinear EquationsNumerical Study of Some Iterative Methods for Solving Nonlinear Equations
Numerical Study of Some Iterative Methods for Solving Nonlinear Equations
 
The general idea is to find a root of the polynomial and then apply .pdf
The general idea is to find a root of the polynomial and then apply .pdfThe general idea is to find a root of the polynomial and then apply .pdf
The general idea is to find a root of the polynomial and then apply .pdf
 
CME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkck
CME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkckCME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkck
CME NOTE.pdfhbbbbjjjbhjhgjhgkhghghjfhcfkck
 
A04410107
A04410107A04410107
A04410107
 
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
A Comparison Of Iterative Methods For The Solution Of Non-Linear Systems Of E...
 
Roots of equations
Roots of equations Roots of equations
Roots of equations
 
Mah
MahMah
Mah
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
 
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
Fractional pseudo-Newton method and its use in the solution of a nonlinear sy...
 
Newton paper.docx
Newton  paper.docxNewton  paper.docx
Newton paper.docx
 
Systems of equations lesson 5
Systems of equations lesson 5Systems of equations lesson 5
Systems of equations lesson 5
 
Bioinformatics_Sequence Analysis
Bioinformatics_Sequence AnalysisBioinformatics_Sequence Analysis
Bioinformatics_Sequence Analysis
 
83662164 case-study-1
83662164 case-study-183662164 case-study-1
83662164 case-study-1
 
Bisection method
Bisection methodBisection method
Bisection method
 
Numerical Analysis and Computer Applications
Numerical Analysis and Computer ApplicationsNumerical Analysis and Computer Applications
Numerical Analysis and Computer Applications
 
Introduction to finite element method
Introduction to finite element methodIntroduction to finite element method
Introduction to finite element method
 
Chapter two
Chapter twoChapter two
Chapter two
 
Mst209 block4 e1i1_n9780749252847 (2)
Mst209 block4 e1i1_n9780749252847 (2)Mst209 block4 e1i1_n9780749252847 (2)
Mst209 block4 e1i1_n9780749252847 (2)
 

Recently uploaded

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024Elizabeth Walsh
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxPooja Bhuva
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfPoh-Sun Goh
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the ClassroomPooky Knightsmith
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSCeline George
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...Nguyen Thanh Tu Collection
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxRamakrishna Reddy Bijjam
 

Recently uploaded (20)

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 

SNM

  • 1. Roots Of Equations Class : TD1 Branch : Information Technology Group Member : Jay Mehta (91600104040) Helly Mehta (91600104030) Pranav Patel (91600104026) Tanmay Patel (91600104033) Akash Ladani (91600104058)
  • 2. History  In the Sulba Sutras in ancient India circa 8th century BC quadratic equations of the form ax2 = c and ax2 + bx = c were explored using geometric methods. Babylonian mathematicians from circa 400 BC and Chinese mathematicians from circa 200 BC used the method of completing the square to solve quadratic equations with positive roots, but did not have a general formula.
  • 3.  Euclid, the Greek mathematician, produced a more abstract geometrical method around 300 BC.  Pythagoras and Euclid used a strictly geometric approach, and found a general procedure to solve the quadratic equation.  In his work Arithmetica, the Greek mathematician Diophantus solved the quadratic equation, but giving only one root, even when both roots were positive.  In 628 AD, Brahmagupta, an Indian mathematician, gave the first explicit (although still not completely general) solution of the quadratic equation
  • 4. History of Roots of Equation  Root, in mathematics, a solution to an equation, usually expressed as a number or an algebraic formula.  In the 9th century, Arab writers usually called one of the equal factors of a number jadhr (“root”), and their medieval European translators used the Latin word radix (from which derives the adjective radical).
  • 5. Method To Find Roots • In this topic we are examining equations with one independent variable. • These equations may be linear or non-linear • Non-linear equations may be polynomials or generally non-linear equations • A root of the equation is simply a value of the independent variable that satisfies the equation • Linear: independent variable appears to the first power only, either alone or multiplied by a constant • Nonlinear: – Polynomial: independent variable appears raised to powers of positive integers only – General non-linear: all other equations
  • 6. Three methods to find Roots 1. Bisection Method 2. Regula-Falsi Method 3. Newton’s Rapshon method Intermediate Value property • If 𝑓 𝑥 is continuous in [a,b] and 𝑓 𝑎 and 𝑓 𝑏 have different signs then the equations 𝑓 𝑎 = 0 has at least one root between x=a and x=b.
  • 7. 1. Bisection Method • The bisection method in mathematics is a root finding method which repeatedly bisects an interval and then selects a subinterval in which a root must lie for further processing. • It is a very simple and robust method, but it is also relatively slow. Because of this, it is often used to obtain a rough approximation to a solution which is then used as a starting point for more rapidly converging methods .The method is also called the binary search method or the dichotomy method Fig 1.1 Graphical representation of Bisection method
  • 8. Flowchart of Bisection method to implement C Program
  • 9. 2. Regula Falsi Method Most numerical equation-solving methods usually converge faster than Bisection. The price for that is that some of them (e.g. Newton’s method and Secant) can fail to converge at all, and all of them can sometimes converge much slower than Bisection—sometimes prohibitively slowly. None can guarantee Bisection’s reliable and steady guaranteed convergence rate. Regula Falsi, like Bisection, always converges, usually considerably faster than Bisection—but sometimes much slower than Bisection. When numerically solving an equation manually, by calculator, or when a computer program run has to solve equations so many times that the speed of convergence becomes important, then it could be preferable to first try a usually- faster method, going to Bisection only if the faster method fails to converge, or fails to converge at a useful rate.
  • 10. It is also known as false position method. It is same as bisection method. In bisection method 𝑐 = 𝑎 + 𝑏 2 But in regula falsi method 𝑐 = 𝑎𝑓 𝑏 − 𝑏𝑓 𝑎 𝑓 𝑏 − 𝑓 𝑎
  • 11. The method starts with a function f defined over the real numbers x, the function's derivative f ′, and an initial guess x0 for a root of the function f. If the function satisfies the assumptions made in the derivation of the formula and the initial guess is close. Geometrically, (x1, 0) is the intersection of the x-axis and the tangent of the graph of f at (x0, f (x0)). The process is repeated as 𝑥 𝑛+1 = 𝑥 𝑛 − 𝑓 𝑥 𝑛 𝑓′ 𝑥 𝑛 until a sufficiently accurate value is reached. 3. Newton’s Rapshon Method
  • 12. Application Bisection Method -1 Shot Detection in Video Content for Digital Video Library - The study presented the usage of bisection method for shot detection in video content for the Digital Video Library (DVL). DVL is a networked Internet application allowing for storage, searching, cataloguing, browsing, retrieval, searching and unicasting video sequences. The browsing functionality can be significantly facilitated by a fast shot detection process. Experiments show that usage of the bisection method, allows for accelerating shot detection about 3÷150 times (related to the shot density). At the end of the paper two possible networked applications are presented: a medical DVL developed for eLearning purposes and a hypothetical networked news application.
  • 13. Bisection Method -2 Locating and computing periodic orbits in molecular systems - The Characteristic Bisection Method for finding the roots of non-linear algebraic and/or transcendental equations is applied to LiNC/LiCN molecular system to locate periodic orbits and to construct the continuation/bifurcation diagram of the bend mode family. The algorithm is based on the Characteristic Polyhedra which define a domain in phase space where the topological degree is not zero. The results are compared with previous calculations obtained by the Newton Multiple Shooting algorithm. The Characteristic Bisection Method not only reproduces the old results, but also, locates new symmetric and asymmetric families of periodic orbits of high multiplicity.
  • 14. REGULA FALSI METHOD The Regula Falsi method is applied to prediction of trace quantities of air pollutants produced by combustion reactions such as those found in industrial point sources. Equilibrium quantities of uncombusted fuel generally are quite small, due to the exothermic nature of combustion reactions. Accordingly, calculating the maximum theoretical efficiency which may be achieved in a combustion process is difficult since the equations describing the equilibrium state are stiff.