SlideShare ist ein Scribd-Unternehmen logo
1 von 31
CHAPTER 3: Roots of Equations By Erika Villarreal
Roots of Equations ,[object Object],Page
CLOSED  METHODS ,[object Object],[object Object],[object Object],Page
CLOSED METHODS ,[object Object],Page  1. Graphical Methods
CLOSED METHODS ,[object Object],Page  1. Graphical Methods f ( x ) = sen 10 x  + cos 3 x
CLOSED METHODS ,[object Object],[object Object],[object Object],[object Object],Page  2. Bisection method
CLOSED METHODS ,[object Object],Page  2. Bisection method First iteration of the algorithm
CLOSED METHODS ,[object Object],Page  2. Bisection method First iteration of the algorithm
CLOSED METHODS ,[object Object],Page  2. Bisection method Bisection algorithm 1. p=a; i=1; eps=1; 2. mientras f(p)  0 y i   ni eps>tol   2.1. pa = p;   2.2. p = (a+b)/2   2.3. si f(p)*f(a)>0 entonces a=p;   2.4. sino   2.5.  si f(p)*f(b)>0 entonces b=p;   2.6. i = i + 1; eps = |p-pa|/p;
CLOSED METHODS Page  2. Bisection method double biseccion(double a, double b, double error, int ni){ double p,pa,eps; int i; p = a; i = 1; eps = 1; while(f(p) != 0 && i<ni && eps > error){ pa = p; p = (a+b)/2; if(f(p)*f(a)>0) a = p; else if(f(p)*f(b)>0) b = p; i++; eps = fabs(p-pa)/p; } return p; }
Methods closed Page  2. Bisection method
CLOSED METHODS Page  2. Error in the bisection method For the bisection method is known that the root is within the range, the result must be within     Dx / 2, where Dx = xb - xa. The solution in this case is equal to the midpoint of the interval xr = (xb + xa) / 2 Should be expressed by xr = (xb + xa) / 2    Dx / 2 Approximate Error replacing
CLOSED METHODS ,[object Object],[object Object],[object Object],Page  3. Method of false position
CLOSED METHODS ,[object Object],[object Object],Page  3. Method of false position
CLOSED METHODS Page  False position in C
OPEN METHODS ,[object Object],[object Object],[object Object],Page
OPEN METHODS ,[object Object],[object Object],[object Object],[object Object],Page  1. Fixed-Point Iteration
OPEN METHODS Page  1. Graph of fixed-point algorithm
OPEN METHODS Page  Consider the function: x3 + 4x2 -10 = 0 has a root in [1, 2] You can unwind in: a.  x  =  g 1 ( x ) =  x  –  x 3  – 4 x 2  +10 b.  x  =  g 2 ( x ) = ½(10 –  x 3 ) ½ c . x  =  g 3 ( x ) = (10/(4 +  x )) ½ d.  x  =  g 4 ( x ) =  x  – ( x 3  + 4 x 2  – 10)/(3 x 2  + 8 x )
OPEN METHODS Page  1.  Fixed point iterations
OPEN METHODS Page  1. Functions plotted in Mathlab
OPEN METHODS Page  1. Cases of non-convergence
OPEN METHODS ,[object Object],[object Object],[object Object],[object Object],Page  2.  Newton Method .
OPEN METHODS ,[object Object],[object Object],Page  2.  Newton Method .  p n+1  = p n  – (p n  – cos(p n ))/(1 + sen(p n )) Taking p 0  = 0, finding p n   f(p n ) f’(p n ) p n+1 0 -1 1 1 1 0.459698 1.8414 0.7503639 0.7503639 0.0189 1.6819 0.7391128 0.7391128 0.00005 1.6736  0.7390851  0.7390851 3E-10 1.6736 0.7390851
OPEN METHODS Page  3.  Alternative method to evaluate the derivative (secant method) .  The secant method starts at two points (no one like Newton's method) and estimates the tangent by an approach according to the expression: The expression of the secant method gives us the next iteration point:  
OPEN METHODS Page  3.  Alternative method to evaluate the derivative (secant method) .  :   In the next iteration, we use the points x1 and x2para estimate a new point closer to the root of Eq.  The figure represents geometric method.
OPEN METHODS Page  Multiple roots In the event that a polynomial has multiple roots, the function will have zero slope when crossing the x-axis Such cases can not be detected in the bisection method if the multiplicity is even. In Newton's method the derivative is zero at the root. Usually the function value tends to zero faster than the derivative and can be used Newton's method .  :  
OPEN METHODS Page  1 . Muller Method .  This method used to find roots of equations with multiple roots, and is to obtain the coefficients of the parabola passing through three selected points. These coefficients are substituted in the quadratic formula to get the value where the parabola intersects the X axis, the estimated result. The approach can be facilitated if we write the equation of the parabola in a convenient way. One of the biggest advantages of this method is that by working with the quadratic formula is therefore possible to locate real estate, and complex roots. Formula The three initial values are denoted as needed xk, xk-1 xk-2. The parabola passes through the points (xk, f (xk)) (xk-1, f (xk-1)) and (xk-2, f (xk-2)), if written in the form Newton, then: where f [xk, xk-1] f [xk, xk-1, xk-2] denote subtraction divided. This can be written as: where The next iteration is given by the root that gives the equation y = 0
OPEN METHODS Page  2 . Lin-Bairstow .  The Lin-Bairstow method finds all the roots (real and complex) of a polinomioP (x). Given initial values of r and s, made a synthetic divide P (x) by (x2 - rx - s). Use Newton's method to find r and s values that make the waste is zero, ie, find the roots of the system of equations. bn(r, s) = 0, (55) bn−1(r, s) = 0. (56) Using the recursive rule r ← r+ Δ r (57) s ← s+ Δ s Where Once you find a quadratic factor of P (x) is solved with the formula and work continues to take Q (x) as the new polynomial P (x).
Page  „ The best thing about the future is that it comes only one day at a time.“ Abraham Lincoln (1809-1865)
Page  Software and Tools for Microsoft PowerPoint. The website with innovative solutions. Save time and money by automating your presentations. www.presentationpoint. com ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],BIBLIOGRAPY

Weitere ähnliche Inhalte

Was ist angesagt?

Bracketing or closed methods
Bracketing or closed methodsBracketing or closed methods
Bracketing or closed methods
andrushow
 
Roots of equations
Roots of equationsRoots of equations
Roots of equations
Mileacre
 
Calculations of roots
Calculations of rootsCalculations of roots
Calculations of roots
oscar
 
Mws gen nle_ppt_bisection
Mws gen nle_ppt_bisectionMws gen nle_ppt_bisection
Mws gen nle_ppt_bisection
Alvin Setiawan
 

Was ist angesagt? (20)

Numerical solutions of algebraic equations
Numerical solutions of algebraic equationsNumerical solutions of algebraic equations
Numerical solutions of algebraic equations
 
Bracketing or closed methods
Bracketing or closed methodsBracketing or closed methods
Bracketing or closed methods
 
Bisection method
Bisection methodBisection method
Bisection method
 
Roots of equations
Roots of equations Roots of equations
Roots of equations
 
Roots of equations
Roots of equationsRoots of equations
Roots of equations
 
Calculations of roots
Calculations of rootsCalculations of roots
Calculations of roots
 
Bisection and fixed point method
Bisection and fixed point methodBisection and fixed point method
Bisection and fixed point method
 
Mws gen nle_ppt_bisection
Mws gen nle_ppt_bisectionMws gen nle_ppt_bisection
Mws gen nle_ppt_bisection
 
Regula Falsi (False position) Method
Regula Falsi (False position) MethodRegula Falsi (False position) Method
Regula Falsi (False position) 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
 
Chapter 3 roots of equations
Chapter 3 roots of equationsChapter 3 roots of equations
Chapter 3 roots of equations
 
Roots equation
Roots equationRoots equation
Roots equation
 
ROOT OF NON-LINEAR EQUATIONS
ROOT OF NON-LINEAR EQUATIONSROOT OF NON-LINEAR EQUATIONS
ROOT OF NON-LINEAR EQUATIONS
 
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)
 
Bisection method in maths 4
Bisection method in maths 4Bisection method in maths 4
Bisection method in maths 4
 
Presentation on application of numerical method in our life
Presentation on application of numerical method in our lifePresentation on application of numerical method in our life
Presentation on application of numerical method in our life
 
Bisection & Regual falsi methods
Bisection & Regual falsi methodsBisection & Regual falsi methods
Bisection & Regual falsi methods
 
Bisection method
Bisection methodBisection method
Bisection method
 
Bisection
BisectionBisection
Bisection
 
3.4 Polynomial Functions and Their Graphs
3.4 Polynomial Functions and Their Graphs3.4 Polynomial Functions and Their Graphs
3.4 Polynomial Functions and Their Graphs
 

Andere mochten auch

Roots of polynomials
Roots of polynomialsRoots of polynomials
Roots of polynomials
daferro
 
Roots of polynomials
Roots of polynomialsRoots of polynomials
Roots of polynomials
daferro
 
Bairstow's methods
Bairstow's methodsBairstow's methods
Bairstow's methods
Fredy
 
Complex roots of the characteristic equation
Complex roots of the characteristic equationComplex roots of the characteristic equation
Complex roots of the characteristic equation
Tarun Gehlot
 
X2 t01 02 complex equations (2012)
X2 t01 02 complex equations (2012)X2 t01 02 complex equations (2012)
X2 t01 02 complex equations (2012)
Nigel Simmons
 
5007 Expert Voices Jered Bright
5007 Expert Voices Jered Bright5007 Expert Voices Jered Bright
5007 Expert Voices Jered Bright
brigh042
 
A19-4 solve quadratic graphing
A19-4 solve quadratic graphingA19-4 solve quadratic graphing
A19-4 solve quadratic graphing
vhiggins1
 
Complex numbers
Complex numbersComplex numbers
Complex numbers
mstf mstf
 
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
jtentinger
 

Andere mochten auch (20)

NUMERICAL METHODS
NUMERICAL METHODSNUMERICAL METHODS
NUMERICAL METHODS
 
Roots of polynomials
Roots of polynomialsRoots of polynomials
Roots of polynomials
 
Roots of polynomials
Roots of polynomialsRoots of polynomials
Roots of polynomials
 
NUMERICAL METHODS
NUMERICAL METHODSNUMERICAL METHODS
NUMERICAL METHODS
 
Roots of polynomials
Roots of polynomialsRoots of polynomials
Roots of polynomials
 
Es272 ch3b
Es272 ch3bEs272 ch3b
Es272 ch3b
 
bisection method
bisection methodbisection method
bisection method
 
algebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant methodalgebric solutions by newton raphson method and secant method
algebric solutions by newton raphson method and secant method
 
Bairstow's methods
Bairstow's methodsBairstow's methods
Bairstow's methods
 
Complex roots of the characteristic equation
Complex roots of the characteristic equationComplex roots of the characteristic equation
Complex roots of the characteristic equation
 
X2 t01 02 complex equations (2012)
X2 t01 02 complex equations (2012)X2 t01 02 complex equations (2012)
X2 t01 02 complex equations (2012)
 
5007 Expert Voices Jered Bright
5007 Expert Voices Jered Bright5007 Expert Voices Jered Bright
5007 Expert Voices Jered Bright
 
A19-4 solve quadratic graphing
A19-4 solve quadratic graphingA19-4 solve quadratic graphing
A19-4 solve quadratic graphing
 
Complex numbers
Complex numbersComplex numbers
Complex numbers
 
Ch03 4
Ch03 4Ch03 4
Ch03 4
 
Mathematics 9 Lesson 1-D: System of Equations Involving Quadratic Equations
Mathematics 9 Lesson 1-D: System of Equations Involving Quadratic EquationsMathematics 9 Lesson 1-D: System of Equations Involving Quadratic Equations
Mathematics 9 Lesson 1-D: System of Equations Involving Quadratic Equations
 
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
 
Fixedpoint
FixedpointFixedpoint
Fixedpoint
 
Bisection method solved questions
Bisection method solved questionsBisection method solved questions
Bisection method solved questions
 
numerical method solutions
numerical method solutionsnumerical method solutions
numerical method solutions
 

Ähnlich wie Chapter 3

Roots of equations
Roots of equationsRoots of equations
Roots of equations
Mileacre
 
Equations root
Equations rootEquations root
Equations root
Mileacre
 
Modeling the dynamics of molecular concentration during the diffusion procedure
Modeling the dynamics of molecular concentration during the  diffusion procedureModeling the dynamics of molecular concentration during the  diffusion procedure
Modeling the dynamics of molecular concentration during the diffusion procedure
International Journal of Engineering Inventions www.ijeijournal.com
 
Roots of equations
Roots of equationsRoots of equations
Roots of equations
gilandio
 

Ähnlich wie Chapter 3 (20)

Chapter 3
Chapter 3Chapter 3
Chapter 3
 
Numerical differentation with c
Numerical differentation with cNumerical differentation with c
Numerical differentation with c
 
Lecture6
Lecture6Lecture6
Lecture6
 
Roots of equations
Roots of equationsRoots of equations
Roots of equations
 
Equations root
Equations rootEquations root
Equations root
 
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
 
An efficient improvement of the Newton method for solving nonconvex optimizat...
An efficient improvement of the Newton method for solving nonconvex optimizat...An efficient improvement of the Newton method for solving nonconvex optimizat...
An efficient improvement of the Newton method for solving nonconvex optimizat...
 
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
 
lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...
lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...
lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...
 
Quadrature
QuadratureQuadrature
Quadrature
 
OPERATIONS RESEARCH
OPERATIONS RESEARCHOPERATIONS RESEARCH
OPERATIONS RESEARCH
 
Overviewing the techniques of Numerical Integration.pdf
Overviewing the techniques of Numerical Integration.pdfOverviewing the techniques of Numerical Integration.pdf
Overviewing the techniques of Numerical Integration.pdf
 
Modeling the dynamics of molecular concentration during the diffusion procedure
Modeling the dynamics of molecular concentration during the  diffusion procedureModeling the dynamics of molecular concentration during the  diffusion procedure
Modeling the dynamics of molecular concentration during the diffusion procedure
 
Mit18 330 s12_chapter4
Mit18 330 s12_chapter4Mit18 330 s12_chapter4
Mit18 330 s12_chapter4
 
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
Fractional Newton-Raphson Method and Some Variants for the Solution of Nonlin...
 
Roots of equations
Roots of equationsRoots of equations
Roots of equations
 
Newton's Raphson method
Newton's Raphson methodNewton's Raphson method
Newton's Raphson method
 
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...
 

Mehr von universidad industrial de santander (11)

Chapter 2
Chapter 2Chapter 2
Chapter 2
 
Chapter 5
Chapter 5Chapter 5
Chapter 5
 
Chapter 2
Chapter 2Chapter 2
Chapter 2
 
Chapter 4
Chapter 4Chapter 4
Chapter 4
 
Capitulo 4
Capitulo 4Capitulo 4
Capitulo 4
 
Expocision
ExpocisionExpocision
Expocision
 
Expocision
ExpocisionExpocision
Expocision
 
Expocision
ExpocisionExpocision
Expocision
 
Expocision
ExpocisionExpocision
Expocision
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 

Chapter 3

  • 1. CHAPTER 3: Roots of Equations By Erika Villarreal
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10. CLOSED METHODS Page 2. Bisection method double biseccion(double a, double b, double error, int ni){ double p,pa,eps; int i; p = a; i = 1; eps = 1; while(f(p) != 0 && i<ni && eps > error){ pa = p; p = (a+b)/2; if(f(p)*f(a)>0) a = p; else if(f(p)*f(b)>0) b = p; i++; eps = fabs(p-pa)/p; } return p; }
  • 11. Methods closed Page 2. Bisection method
  • 12. CLOSED METHODS Page 2. Error in the bisection method For the bisection method is known that the root is within the range, the result must be within  Dx / 2, where Dx = xb - xa. The solution in this case is equal to the midpoint of the interval xr = (xb + xa) / 2 Should be expressed by xr = (xb + xa) / 2  Dx / 2 Approximate Error replacing
  • 13.
  • 14.
  • 15. CLOSED METHODS Page False position in C
  • 16.
  • 17.
  • 18. OPEN METHODS Page 1. Graph of fixed-point algorithm
  • 19. OPEN METHODS Page Consider the function: x3 + 4x2 -10 = 0 has a root in [1, 2] You can unwind in: a. x = g 1 ( x ) = x – x 3 – 4 x 2 +10 b. x = g 2 ( x ) = ½(10 – x 3 ) ½ c . x = g 3 ( x ) = (10/(4 + x )) ½ d. x = g 4 ( x ) = x – ( x 3 + 4 x 2 – 10)/(3 x 2 + 8 x )
  • 20. OPEN METHODS Page 1. Fixed point iterations
  • 21. OPEN METHODS Page 1. Functions plotted in Mathlab
  • 22. OPEN METHODS Page 1. Cases of non-convergence
  • 23.
  • 24.
  • 25. OPEN METHODS Page 3. Alternative method to evaluate the derivative (secant method) . The secant method starts at two points (no one like Newton's method) and estimates the tangent by an approach according to the expression: The expression of the secant method gives us the next iteration point:  
  • 26. OPEN METHODS Page 3. Alternative method to evaluate the derivative (secant method) . :   In the next iteration, we use the points x1 and x2para estimate a new point closer to the root of Eq. The figure represents geometric method.
  • 27. OPEN METHODS Page Multiple roots In the event that a polynomial has multiple roots, the function will have zero slope when crossing the x-axis Such cases can not be detected in the bisection method if the multiplicity is even. In Newton's method the derivative is zero at the root. Usually the function value tends to zero faster than the derivative and can be used Newton's method . :  
  • 28. OPEN METHODS Page 1 . Muller Method . This method used to find roots of equations with multiple roots, and is to obtain the coefficients of the parabola passing through three selected points. These coefficients are substituted in the quadratic formula to get the value where the parabola intersects the X axis, the estimated result. The approach can be facilitated if we write the equation of the parabola in a convenient way. One of the biggest advantages of this method is that by working with the quadratic formula is therefore possible to locate real estate, and complex roots. Formula The three initial values are denoted as needed xk, xk-1 xk-2. The parabola passes through the points (xk, f (xk)) (xk-1, f (xk-1)) and (xk-2, f (xk-2)), if written in the form Newton, then: where f [xk, xk-1] f [xk, xk-1, xk-2] denote subtraction divided. This can be written as: where The next iteration is given by the root that gives the equation y = 0
  • 29. OPEN METHODS Page 2 . Lin-Bairstow . The Lin-Bairstow method finds all the roots (real and complex) of a polinomioP (x). Given initial values of r and s, made a synthetic divide P (x) by (x2 - rx - s). Use Newton's method to find r and s values that make the waste is zero, ie, find the roots of the system of equations. bn(r, s) = 0, (55) bn−1(r, s) = 0. (56) Using the recursive rule r ← r+ Δ r (57) s ← s+ Δ s Where Once you find a quadratic factor of P (x) is solved with the formula and work continues to take Q (x) as the new polynomial P (x).
  • 30. Page „ The best thing about the future is that it comes only one day at a time.“ Abraham Lincoln (1809-1865)
  • 31.