SlideShare a Scribd company logo

 Introduction
 Various numerical methods
 Examples
 Real life use
 references
Index

 Equations that can be cast in the form of a
polynomial are referred to as algebraic equations.
Equations involving more complicated terms, such
as trigonometric, hyperbolic, exponential, or
logarithmic functions are referred to as
transcendental equations. The methods presented in
this section are numerical methods that can be
applied to the solution of such equations, to which
we will refer, in general, as non-linear equations. In
general, we will we searching for one, or more,
solutions to the equation, f(x) = 0.
3
Introduction

 Bisection method
 Newton – Raph son method
 Secant method
 False position method, etc
4
Various numerical
methods find the roots

The History of the Bisection Method
 Although there is little concrete knowledge of the
development the bisection method, we can infer that
it was developed a short while after the Intermediate
Value Theorem was first proven by Bernard Bolzano
in 1817 (Edwards 1979). It appears that it was used
as a proof of an intermediate theorem to the general
proof Bolzano was developing for the Intermediate
Value Theorem
5
Bisection method
6

 If a function f(x) is continuous and there is a point a
that is negative and a point b that is positive then
there is a point c between (a,b) that equal zero. An
interval is always chosen in [a,b] which includes the
root somewhere within. That interval [a,b] is then cut
in half, and the half that contains the root is then
chosen. That new interval is then cut in half once
again, and the half that contains the root is chosen
once again. The bisection method repeats these steps
numerous times until the approximation is within a
certain degree
7
procedure
8
Example 1
Consider finding the root of f(x) = x2 - 3. Let εstep = 0.01, εabs = 0.01 and start with the
interval [1, 2].
Table 1. Bisection method applied to f(x) = x2 - 3.
a b f(a) f(b)
c = (a +
b)/2
f(c) Update
new b −
a
1.0 2.0 -2.0 1.0 1.5 -0.75 a = c 0.5
1.5 2.0 -0.75 1.0 1.75 0.062 b = c 0.25
1.5 1.75 -0.75 0.0625 1.625 -0.359 a = c 0.125
1.625 1.75 -0.3594 0.0625 1.6875 -0.1523 a = c 0.0625
1.6875 1.75 -0.1523 0.0625 1.7188 -0.0457 a = c 0.0313
1.7188 1.75 -0.0457 0.0625 1.7344 0.0081 b = c 0.0156
1.71988
/td>
1.7344 -0.0457 0.0081 1.7266 -0.0189 a = c 0.0078
9
2.
2. Find the root of x4-x-10 = 0
The graph of this equation is given in the figure.
Let a = 1.5 and b = 2
Iteration
No.
a b c f(a) * f(c)
1 1.5 2 1.75 15.264 (+ve)
2 1.75 2 1.875 -1.149 (-ve)
3 1.75 1.875 1.812 2.419 (+ve)
4 1.812 1.875 1.844 0.303 (-ve)
5 1.844 1.875 1.86 -0.027 (-ve)
So one of the roots of x4-x-10 = 0 is approximately 1.86

 One of the biggest advantages to the bisection
method is that it never diverges. Error also
decreases with each iteration. Therefore, as the
interval keeps splitting, the approximation gets closer
and closer to the desired root
10
advantages

 The biggest disadvantage of the bisection method is that
it converges slower than other methods and it cannot
depict multiple roots. Furthermore, if two roots lie close to
each other then the bisection method makes it difficult to
find both roots simultaneously. In the specific case of
f(x)=x2, the bisection method fails to converge on the root
(0,0). If a point a is chosen to the left of the zero and the
same point is taken to the right of the zero then the root
will not be found.
11
Disadvantages

 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 uni-
casting 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
12
Real-Life Applications
13
 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 Li NC/Li CN 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 Poly
hidra 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.
 Bisection method for determining an adequate
population size
14

 The name "Newton's method" is derived from Isaac Newton's
description of a special case of the method in De analysi per
aequationes numero terminorum infinitas (written in 1669,
published in 1711 by William Jones) and in De metodis
fluxionum et serierum infinitarum (written in 1671, translated
and published as Method of Fluxions in 1736 by John Colson).
However, his method differs substantially from the modern
method given above: Newton applies the method only to
polynomials.
15
History
16
• He does not compute the successive approximations x_n, but computes a
sequence of polynomials, and only at the end arrives at an approximation for
the root x. Finally, Newton views the method as purely algebraic and makes
no mention of the connection with calculus. Newton may have derived his
method from a similar but less precise method by Vieta. The essence of
Vieta's method can be found in the work of the Persian mathematician
Sharaf al-Din al-Tusi, while his successor Jamshīd al-Kāshī used a form of
Newton's method to solve x^P - N = 0 to find roots of N (Ypma 1995).
• Newton's method was first published in 1685 in A Treatise of Algebra both
Historical and Practical by John Wallis. In 1690, Joseph Raphson published a
simplified description in Analysis aequationum universalis. Raphson again
viewed Newton's method purely as an algebraic method and restricted its
use to polynomials, but he describes the method in terms of the successive
approximations xn instead of the more complicated sequence of
polynomials used by Newton. Finally, in 1740, Thomas Simpson described
Newton's method as an iterative method for solving general nonlinear
equations using calculus, essentially giving the description above. In the
same publication, Simpson also gives the generalization to systems of two
equations and notes that Newton's method can be used for solving
optimization problems by setting the gradient to zero.
17
Unlike the earlier methods, this method requires only one
appropriate starting point as an initial assumption of the root of
the function At a tangent to is drawn.
Equation of this tangent is given by
• The point of intersection, say , of this tangent with x-axis (y = 0)
is taken to be the next approximation to the root of f(x) = 0. So on
substituting y = 0 in the tangent equation we get
)( 00 xfy  and
10
0
0
xx
y
x
dx
dy

atWe have and we need to find .
1x
Then,
10
0
0
/ )(
)(
xx
xf
xf


Rearranging:
)(
)(
0
/
0
10
xf
xf
xx 
)(
)(
0
/
0
01
xf
xf
xx 
Using and in the formula isn’t very
convenient, so, since we have)(xfy 
0at x
dx
dy
0y
)( 0
/
10
0
0 xf
xx
y
x
dx
dy


at
)(
)(
0
/
0
01
xf
xf
xx So,
We just need to alter the subscripts to find : 2x
)(
)(
1
/
1
12
xf
xf
xx 
Generalising gives
)(
)(
/1
n
n
nn
xf
xf
xx 
We don’t need a diagram to use this formula but we
must know how to differentiate . )(xf
Convergence is often very fast.
20
21
We will use the Newton-Raphson method to find the positive root of the equation sinx = x2,
correct to 3D.
It will be convenient to use the method of false position to obtain an initial approximation.
Tabulating, one finds
With numbers displayed to 4D, we see that there is a root in the interval 0.75 < x < 1
at approximately
Example: 1
22
Next, we will use the Newton-Raphson method; we have
and
yielding
Consequently, a better approximation is
Repeating this step, we obtain
so that
Since f(x2) = 0.0000, we conclude that the root is 0.877 to 3D.

 The method is very expensive - It needs the function
evaluation and then the derivative evaluation.
 If the tangent is parallel or nearly parallel to the x-axis,
then the method does not converge.
 Usually Newton method is expected to converge only
near the solution.
 The advantage of the method is its order of convergence
is quadratic.
 Convergence rate is one of the fastest when it does
converge.
23
Advantages and
Disadvantages

 Applying NR to the system of equations we find that at
iteration k+1:
 all the coefficients of KCL, KVL and of BCE of the linear
elements remain unchanged with respect to iteration k
 Nonlinear elements are represented by a linearization of
BCE around iteration k
 This system of equations can be interpreted as the STA of
a linear circuit (companion network) whose elements are
specified by the linearized BCE.
 APPLICATION OF NEWTON RAPHSON METHOD TO
A FINITE BARRIER QUANTUM WELL (FBQW)
SYSTEM
Real life uses

25
References
• http://www2.lv.psu.edu/ojj/courses/cmpsc-
201/numerical/bisection.html
• http://en.wikipedia.org/wiki/Bisection_method#Pseudo-
code
• Bisection Method, Autar Kaw and Jai
Paul, http://numericalmethods.eng.usf.edu
• http://newtons.wikia.com/wiki/NewtonRaphson_Wiki
26

More Related Content

What's hot

Bisection method
Bisection methodBisection method
Bisection method
Isaac Yowetu
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
Diler4
 
Applications of numerical methods
Applications of numerical methodsApplications of numerical methods
Applications of numerical methods
Tarun Gehlot
 
Numerical Analysis (Solution of Non-Linear Equations) part 2
Numerical Analysis (Solution of Non-Linear Equations) part 2Numerical Analysis (Solution of Non-Linear Equations) part 2
Numerical Analysis (Solution of Non-Linear Equations) part 2
Asad Ali
 
Introduction to Numerical Analysis
Introduction to Numerical AnalysisIntroduction to Numerical Analysis
Introduction to Numerical Analysis
Mohammad Tawfik
 
Initial Value Problems
Initial Value ProblemsInitial Value Problems
Initial Value Problems
Mohammad Tawfik
 
Newton Raphson
Newton RaphsonNewton Raphson
Newton Raphson
Nasima Akhtar
 
BISECTION METHOD
BISECTION METHODBISECTION METHOD
Solution of non-linear equations
Solution of non-linear equationsSolution of non-linear equations
Solution of non-linear equationsZunAib Ali
 
Module 3 lp-simplex
Module 3 lp-simplexModule 3 lp-simplex
Module 3 lp-simplex
raajeeradha
 
Interpolation In Numerical Methods.
 Interpolation In Numerical Methods. Interpolation In Numerical Methods.
Interpolation In Numerical Methods.
Abu Kaisar
 
Euler and runge kutta method
Euler and runge kutta methodEuler and runge kutta method
Euler and runge kutta method
ch macharaverriyya naidu
 
Application of integral calculus
Application of integral calculusApplication of integral calculus
Application of integral calculus
Habibur Rahman
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolation
VISHAL DONGA
 
Interpolation
InterpolationInterpolation
Interpolation
Bhavik A Shah
 
Partial Differential Equation - Notes
Partial Differential Equation - NotesPartial Differential Equation - Notes
Partial Differential Equation - Notes
Dr. Nirav Vyas
 
Roots of equations
Roots of equations Roots of equations
Roots of equations
shopnohinami
 

What's hot (20)

Bisection method
Bisection methodBisection method
Bisection method
 
System of linear equations
System of linear equationsSystem of linear equations
System of linear equations
 
Applications of numerical methods
Applications of numerical methodsApplications of numerical methods
Applications of numerical methods
 
Es272 ch3a
Es272 ch3aEs272 ch3a
Es272 ch3a
 
L20 Simplex Method
L20 Simplex MethodL20 Simplex Method
L20 Simplex Method
 
Numerical Analysis (Solution of Non-Linear Equations) part 2
Numerical Analysis (Solution of Non-Linear Equations) part 2Numerical Analysis (Solution of Non-Linear Equations) part 2
Numerical Analysis (Solution of Non-Linear Equations) part 2
 
Introduction to Numerical Analysis
Introduction to Numerical AnalysisIntroduction to Numerical Analysis
Introduction to Numerical Analysis
 
Initial Value Problems
Initial Value ProblemsInitial Value Problems
Initial Value Problems
 
Newton Raphson
Newton RaphsonNewton Raphson
Newton Raphson
 
BISECTION METHOD
BISECTION METHODBISECTION METHOD
BISECTION METHOD
 
Solution of non-linear equations
Solution of non-linear equationsSolution of non-linear equations
Solution of non-linear equations
 
Module 3 lp-simplex
Module 3 lp-simplexModule 3 lp-simplex
Module 3 lp-simplex
 
Unit vi
Unit viUnit vi
Unit vi
 
Interpolation In Numerical Methods.
 Interpolation In Numerical Methods. Interpolation In Numerical Methods.
Interpolation In Numerical Methods.
 
Euler and runge kutta method
Euler and runge kutta methodEuler and runge kutta method
Euler and runge kutta method
 
Application of integral calculus
Application of integral calculusApplication of integral calculus
Application of integral calculus
 
Newton divided difference interpolation
Newton divided difference interpolationNewton divided difference interpolation
Newton divided difference interpolation
 
Interpolation
InterpolationInterpolation
Interpolation
 
Partial Differential Equation - Notes
Partial Differential Equation - NotesPartial Differential Equation - Notes
Partial Differential Equation - Notes
 
Roots of equations
Roots of equations Roots of equations
Roots of equations
 

Viewers also liked

Presentation on Solution to non linear equations
Presentation on Solution to non linear equationsPresentation on Solution to non linear equations
Presentation on Solution to non linear equations
Rifat Rahamatullah
 
Roots of Nonlinear Equations - Open Methods
Roots of Nonlinear Equations - Open MethodsRoots of Nonlinear Equations - Open Methods
Roots of Nonlinear Equations - Open Methods
Mohammad Tawfik
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Minhas Kamal
 
Numerical Analysis (Solution of Non-Linear Equations)
Numerical Analysis (Solution of Non-Linear Equations)Numerical Analysis (Solution of Non-Linear Equations)
Numerical Analysis (Solution of Non-Linear Equations)
Asad Ali
 
Lecture 12 andrew fitzgibbon - 3 d vision in a changing world
Lecture 12   andrew fitzgibbon - 3 d vision in a changing worldLecture 12   andrew fitzgibbon - 3 d vision in a changing world
Lecture 12 andrew fitzgibbon - 3 d vision in a changing world
mustafa sarac
 
Qualifier
QualifierQualifier
Qualifier
Alex Chuck
 
Qualifier presentation
Qualifier presentationQualifier presentation
Qualifier presentationJoe Krall
 
Translational and Rotational system
Translational and Rotational systemTranslational and Rotational system
Translational and Rotational system
Vipin Maurya
 
Notes 6-1
Notes 6-1Notes 6-1
Notes 6-1
Jimbo Lamb
 
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
Valentin Besse
 
Roots of equations
Roots of equationsRoots of equations
Roots of equationsRobinson
 
Linear and non linear equation
Linear and non linear equationLinear and non linear equation
Linear and non linear equation
Harshana Madusanka Jayamaha
 
EOP Planner Semester II 2016/2017
EOP Planner Semester II 2016/2017EOP Planner Semester II 2016/2017
EOP Planner Semester II 2016/2017
Wan Nurhafeza Wan Salam
 
NUMERICAL METHODS
NUMERICAL METHODSNUMERICAL METHODS
NUMERICAL METHODS
PRABHAHARAN429
 

Viewers also liked (20)

Presentation on Solution to non linear equations
Presentation on Solution to non linear equationsPresentation on Solution to non linear equations
Presentation on Solution to non linear equations
 
bisection method
bisection methodbisection method
bisection method
 
Roots of Nonlinear Equations - Open Methods
Roots of Nonlinear Equations - Open MethodsRoots of Nonlinear Equations - Open Methods
Roots of Nonlinear Equations - Open Methods
 
Numerical method
Numerical methodNumerical method
Numerical method
 
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
Numerical Method Analysis: Algebraic and Transcendental Equations (Non-Linear)
 
Numerical Analysis (Solution of Non-Linear Equations)
Numerical Analysis (Solution of Non-Linear Equations)Numerical Analysis (Solution of Non-Linear Equations)
Numerical Analysis (Solution of Non-Linear Equations)
 
Numerical methods
Numerical methodsNumerical methods
Numerical methods
 
Slideshare ppt
Slideshare pptSlideshare ppt
Slideshare ppt
 
Lecture 12 andrew fitzgibbon - 3 d vision in a changing world
Lecture 12   andrew fitzgibbon - 3 d vision in a changing worldLecture 12   andrew fitzgibbon - 3 d vision in a changing world
Lecture 12 andrew fitzgibbon - 3 d vision in a changing world
 
Qualifier
QualifierQualifier
Qualifier
 
Qualifier presentation
Qualifier presentationQualifier presentation
Qualifier presentation
 
Translational and Rotational system
Translational and Rotational systemTranslational and Rotational system
Translational and Rotational system
 
Notes 6-1
Notes 6-1Notes 6-1
Notes 6-1
 
Chapter 3 roots of equations
Chapter 3 roots of equationsChapter 3 roots of equations
Chapter 3 roots of equations
 
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
ICTON 2014 - Third-and Fifth-order Optical Nonlinearities Characterization Us...
 
Systems of equations
Systems of equationsSystems of equations
Systems of equations
 
Roots of equations
Roots of equationsRoots of equations
Roots of equations
 
Linear and non linear equation
Linear and non linear equationLinear and non linear equation
Linear and non linear equation
 
EOP Planner Semester II 2016/2017
EOP Planner Semester II 2016/2017EOP Planner Semester II 2016/2017
EOP Planner Semester II 2016/2017
 
NUMERICAL METHODS
NUMERICAL METHODSNUMERICAL METHODS
NUMERICAL METHODS
 

Similar to ROOT OF NON-LINEAR EQUATIONS

Newton paper.docx
Newton  paper.docxNewton  paper.docx
Newton paper.docx
nitmor1
 
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
 
Secant method
Secant methodSecant method
Secant method
Zahra Saman
 
Mah
MahMah
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
inventionjournals
 
SNM
SNMSNM
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson method
Jayesh Ranjan
 
A04410107
A04410107A04410107
A04410107
IOSR-JEN
 
GROUP-4 PRESENTATION ON NR-METHOD.pptx
GROUP-4   PRESENTATION ON NR-METHOD.pptxGROUP-4   PRESENTATION ON NR-METHOD.pptx
GROUP-4 PRESENTATION ON NR-METHOD.pptx
nirnaybanik3384
 
Numerical differentation with c
Numerical differentation with cNumerical differentation with c
Numerical differentation with c
Yagya Dev Bhardwaj
 
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
mathsjournal
 
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
mathsjournal
 
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
mathsjournal
 
Root Equations Methods
Root Equations MethodsRoot Equations Methods
Root Equations MethodsUIS
 
The International Journal of Engineering and Science (The IJES)
 The International Journal of Engineering and Science (The IJES) The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
theijes
 
B02110105012
B02110105012B02110105012
B02110105012theijes
 
Roots of equations
Roots of equationsRoots of equations
Roots of equationsMileacre
 
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
 

Similar to ROOT OF NON-LINEAR EQUATIONS (20)

Newton paper.docx
Newton  paper.docxNewton  paper.docx
Newton paper.docx
 
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...
 
Secant method
Secant methodSecant method
Secant method
 
Mah
MahMah
Mah
 
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
 
SNM
SNMSNM
SNM
 
Calc 3.8
Calc 3.8Calc 3.8
Calc 3.8
 
Newton raphson method
Newton raphson methodNewton raphson method
Newton raphson method
 
A04410107
A04410107A04410107
A04410107
 
GROUP-4 PRESENTATION ON NR-METHOD.pptx
GROUP-4   PRESENTATION ON NR-METHOD.pptxGROUP-4   PRESENTATION ON NR-METHOD.pptx
GROUP-4 PRESENTATION ON NR-METHOD.pptx
 
Numerical differentation with c
Numerical differentation with cNumerical differentation with c
Numerical differentation with c
 
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
 
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
 
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
A NEW STUDY TO FIND OUT THE BEST COMPUTATIONAL METHOD FOR SOLVING THE NONLINE...
 
Root Equations Methods
Root Equations MethodsRoot Equations Methods
Root Equations Methods
 
The International Journal of Engineering and Science (The IJES)
 The International Journal of Engineering and Science (The IJES) The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
B02110105012
B02110105012B02110105012
B02110105012
 
Chapter 3
Chapter 3Chapter 3
Chapter 3
 
Roots of equations
Roots of equationsRoots of equations
Roots of equations
 
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...
 

Recently uploaded

Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
Vijay Dialani, PhD
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
ongomchris
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
WENKENLI1
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
BrazilAccount1
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
zwunae
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
Robbie Edward Sayers
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
MLILAB
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
Pratik Pawar
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
SupreethSP4
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
AhmedHussein950959
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 

Recently uploaded (20)

Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
ML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptxML for identifying fraud using open blockchain data.pptx
ML for identifying fraud using open blockchain data.pptx
 
space technology lecture notes on satellite
space technology lecture notes on satellitespace technology lecture notes on satellite
space technology lecture notes on satellite
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
AP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specificAP LAB PPT.pdf ap lab ppt no title specific
AP LAB PPT.pdf ap lab ppt no title specific
 
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
一比一原版(IIT毕业证)伊利诺伊理工大学毕业证成绩单专业办理
 
HYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generationHYDROPOWER - Hydroelectric power generation
HYDROPOWER - Hydroelectric power generation
 
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
H.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdfH.Seo,  ICLR 2024, MLILAB,  KAIST AI.pdf
H.Seo, ICLR 2024, MLILAB, KAIST AI.pdf
 
weather web application report.pdf
weather web application report.pdfweather web application report.pdf
weather web application report.pdf
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
Runway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptxRunway Orientation Based on the Wind Rose Diagram.pptx
Runway Orientation Based on the Wind Rose Diagram.pptx
 
ASME IX(9) 2007 Full Version .pdf
ASME IX(9)  2007 Full Version       .pdfASME IX(9)  2007 Full Version       .pdf
ASME IX(9) 2007 Full Version .pdf
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 

ROOT OF NON-LINEAR EQUATIONS

  • 1.
  • 2.   Introduction  Various numerical methods  Examples  Real life use  references Index
  • 3.   Equations that can be cast in the form of a polynomial are referred to as algebraic equations. Equations involving more complicated terms, such as trigonometric, hyperbolic, exponential, or logarithmic functions are referred to as transcendental equations. The methods presented in this section are numerical methods that can be applied to the solution of such equations, to which we will refer, in general, as non-linear equations. In general, we will we searching for one, or more, solutions to the equation, f(x) = 0. 3 Introduction
  • 4.   Bisection method  Newton – Raph son method  Secant method  False position method, etc 4 Various numerical methods find the roots
  • 5.  The History of the Bisection Method  Although there is little concrete knowledge of the development the bisection method, we can infer that it was developed a short while after the Intermediate Value Theorem was first proven by Bernard Bolzano in 1817 (Edwards 1979). It appears that it was used as a proof of an intermediate theorem to the general proof Bolzano was developing for the Intermediate Value Theorem 5 Bisection method
  • 6. 6
  • 7.   If a function f(x) is continuous and there is a point a that is negative and a point b that is positive then there is a point c between (a,b) that equal zero. An interval is always chosen in [a,b] which includes the root somewhere within. That interval [a,b] is then cut in half, and the half that contains the root is then chosen. That new interval is then cut in half once again, and the half that contains the root is chosen once again. The bisection method repeats these steps numerous times until the approximation is within a certain degree 7 procedure
  • 8. 8 Example 1 Consider finding the root of f(x) = x2 - 3. Let εstep = 0.01, εabs = 0.01 and start with the interval [1, 2]. Table 1. Bisection method applied to f(x) = x2 - 3. a b f(a) f(b) c = (a + b)/2 f(c) Update new b − a 1.0 2.0 -2.0 1.0 1.5 -0.75 a = c 0.5 1.5 2.0 -0.75 1.0 1.75 0.062 b = c 0.25 1.5 1.75 -0.75 0.0625 1.625 -0.359 a = c 0.125 1.625 1.75 -0.3594 0.0625 1.6875 -0.1523 a = c 0.0625 1.6875 1.75 -0.1523 0.0625 1.7188 -0.0457 a = c 0.0313 1.7188 1.75 -0.0457 0.0625 1.7344 0.0081 b = c 0.0156 1.71988 /td> 1.7344 -0.0457 0.0081 1.7266 -0.0189 a = c 0.0078
  • 9. 9 2. 2. Find the root of x4-x-10 = 0 The graph of this equation is given in the figure. Let a = 1.5 and b = 2 Iteration No. a b c f(a) * f(c) 1 1.5 2 1.75 15.264 (+ve) 2 1.75 2 1.875 -1.149 (-ve) 3 1.75 1.875 1.812 2.419 (+ve) 4 1.812 1.875 1.844 0.303 (-ve) 5 1.844 1.875 1.86 -0.027 (-ve) So one of the roots of x4-x-10 = 0 is approximately 1.86
  • 10.   One of the biggest advantages to the bisection method is that it never diverges. Error also decreases with each iteration. Therefore, as the interval keeps splitting, the approximation gets closer and closer to the desired root 10 advantages
  • 11.   The biggest disadvantage of the bisection method is that it converges slower than other methods and it cannot depict multiple roots. Furthermore, if two roots lie close to each other then the bisection method makes it difficult to find both roots simultaneously. In the specific case of f(x)=x2, the bisection method fails to converge on the root (0,0). If a point a is chosen to the left of the zero and the same point is taken to the right of the zero then the root will not be found. 11 Disadvantages
  • 12.   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 uni- casting 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 12 Real-Life Applications
  • 13. 13  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 Li NC/Li CN 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 Poly hidra 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.  Bisection method for determining an adequate population size
  • 14. 14
  • 15.   The name "Newton's method" is derived from Isaac Newton's description of a special case of the method in De analysi per aequationes numero terminorum infinitas (written in 1669, published in 1711 by William Jones) and in De metodis fluxionum et serierum infinitarum (written in 1671, translated and published as Method of Fluxions in 1736 by John Colson). However, his method differs substantially from the modern method given above: Newton applies the method only to polynomials. 15 History
  • 16. 16 • He does not compute the successive approximations x_n, but computes a sequence of polynomials, and only at the end arrives at an approximation for the root x. Finally, Newton views the method as purely algebraic and makes no mention of the connection with calculus. Newton may have derived his method from a similar but less precise method by Vieta. The essence of Vieta's method can be found in the work of the Persian mathematician Sharaf al-Din al-Tusi, while his successor Jamshīd al-Kāshī used a form of Newton's method to solve x^P - N = 0 to find roots of N (Ypma 1995). • Newton's method was first published in 1685 in A Treatise of Algebra both Historical and Practical by John Wallis. In 1690, Joseph Raphson published a simplified description in Analysis aequationum universalis. Raphson again viewed Newton's method purely as an algebraic method and restricted its use to polynomials, but he describes the method in terms of the successive approximations xn instead of the more complicated sequence of polynomials used by Newton. Finally, in 1740, Thomas Simpson described Newton's method as an iterative method for solving general nonlinear equations using calculus, essentially giving the description above. In the same publication, Simpson also gives the generalization to systems of two equations and notes that Newton's method can be used for solving optimization problems by setting the gradient to zero.
  • 17. 17 Unlike the earlier methods, this method requires only one appropriate starting point as an initial assumption of the root of the function At a tangent to is drawn. Equation of this tangent is given by • The point of intersection, say , of this tangent with x-axis (y = 0) is taken to be the next approximation to the root of f(x) = 0. So on substituting y = 0 in the tangent equation we get
  • 18. )( 00 xfy  and 10 0 0 xx y x dx dy  atWe have and we need to find . 1x Then, 10 0 0 / )( )( xx xf xf   Rearranging: )( )( 0 / 0 10 xf xf xx  )( )( 0 / 0 01 xf xf xx  Using and in the formula isn’t very convenient, so, since we have)(xfy  0at x dx dy 0y )( 0 / 10 0 0 xf xx y x dx dy   at
  • 19. )( )( 0 / 0 01 xf xf xx So, We just need to alter the subscripts to find : 2x )( )( 1 / 1 12 xf xf xx  Generalising gives )( )( /1 n n nn xf xf xx  We don’t need a diagram to use this formula but we must know how to differentiate . )(xf Convergence is often very fast.
  • 20. 20
  • 21. 21 We will use the Newton-Raphson method to find the positive root of the equation sinx = x2, correct to 3D. It will be convenient to use the method of false position to obtain an initial approximation. Tabulating, one finds With numbers displayed to 4D, we see that there is a root in the interval 0.75 < x < 1 at approximately Example: 1
  • 22. 22 Next, we will use the Newton-Raphson method; we have and yielding Consequently, a better approximation is Repeating this step, we obtain so that Since f(x2) = 0.0000, we conclude that the root is 0.877 to 3D.
  • 23.   The method is very expensive - It needs the function evaluation and then the derivative evaluation.  If the tangent is parallel or nearly parallel to the x-axis, then the method does not converge.  Usually Newton method is expected to converge only near the solution.  The advantage of the method is its order of convergence is quadratic.  Convergence rate is one of the fastest when it does converge. 23 Advantages and Disadvantages
  • 24.   Applying NR to the system of equations we find that at iteration k+1:  all the coefficients of KCL, KVL and of BCE of the linear elements remain unchanged with respect to iteration k  Nonlinear elements are represented by a linearization of BCE around iteration k  This system of equations can be interpreted as the STA of a linear circuit (companion network) whose elements are specified by the linearized BCE.  APPLICATION OF NEWTON RAPHSON METHOD TO A FINITE BARRIER QUANTUM WELL (FBQW) SYSTEM Real life uses
  • 25.  25 References • http://www2.lv.psu.edu/ojj/courses/cmpsc- 201/numerical/bisection.html • http://en.wikipedia.org/wiki/Bisection_method#Pseudo- code • Bisection Method, Autar Kaw and Jai Paul, http://numericalmethods.eng.usf.edu • http://newtons.wikia.com/wiki/NewtonRaphson_Wiki
  • 26. 26