Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 7.

Slides:



Advertisements
Similar presentations
Part 2 Chapter 6 Roots: Open Methods
Advertisements

Part 2 Chapter 6 Roots: Open Methods
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 61.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Ordinary Differential Equations Equations which are.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 51.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Martin Mendez UASLP Chapter 61 Unit II.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 181 Interpolation Chapter 18 Estimation of intermediate.
Open Methods Chapter 6 The Islamic University of Gaza
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 181 Interpolation.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Interpolation Chapter 18.
NUMERICAL METHODS WITH C++ PROGRAMMING
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 10 Roots of Polynomials.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 171 Least.
Pre-Calculus For our Polynomial Function: The Factors are:(x + 5) & (x - 3) The Roots/Solutions are:x = -5 and 3 The Zeros are at:(-5, 0) and (3, 0)
Chapter 4 Roots of Polynomials.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Numerical Differentiation and Integration Part 6 Calculus.
The Rational Zero Theorem
Lesson 2.5 The Fundamental Theorem of Algebra. For f(x) where n > 0, there is at least one zero in the complex number system Complex → real and imaginary.
3 Polynomial and Rational Functions © 2008 Pearson Addison-Wesley. All rights reserved Sections 3.1–3.4.
The Fundamental Theorem of Algebra And Zeros of Polynomials
Zeros of Polynomials PolynomialType of Coefficient 5x 3 + 3x 2 + (2 + 4i) + icomplex 5x 3 + 3x 2 + √2x – πreal 5x 3 + 3x 2 + ½ x – ⅜rational 5x 3 + 3x.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 2 Roots of Equations Why? But.
Lecture Notes Dr. Rakhmad Arief Siregar Universiti Malaysia Perlis
Copyright © 2014, 2010 Pearson Education, Inc. Chapter 2 Polynomials and Rational Functions Copyright © 2014, 2010 Pearson Education, Inc.
Zeros of Polynomial Functions Section 2.5 Page 312.
Lecture 8 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Copyright © 2013, 2009, 2005 Pearson Education, Inc. 1 3 Polynomial and Rational Functions Copyright © 2013, 2009, 2005 Pearson Education, Inc.
Chapter 3 Polynomial and Rational Functions Copyright © 2014, 2010, 2007 Pearson Education, Inc Zeros of Polynomial Functions.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Roots of Equations ~ Open Methods Chapter 6 Credit:
Lecture 6 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 71.
Lesson 2.5, page 312 Zeros of Polynomial Functions Objective: To find a polynomial with specified zeros, rational zeros, and other zeros, and to use Descartes’
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 22.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 3- Chapter 12 Iterative Methods.
Zeros of Polynomials 2.5.
Section 3.3 Theorems about Zeros of Polynomial Functions.
Introduction Synthetic division, along with your knowledge of end behavior and turning points, can be used to identify the x-intercepts of a polynomial.
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 7 Roots of Polynomials.
Solving Non-Linear Equations (Root Finding)
Factor Theorem Using Long Division, Synthetic Division, & Factoring to Solve Polynomials.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 7 - Chapter 25.
Solving Polynomials. What does it mean to solve an equation?
Polynomial Functions Advanced Math Chapter 3. Quadratic Functions and Models Advanced Math Section 3.1.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 27.
Copyright © 2006 Pearson Education, Inc. Publishing as Pearson Addison-Wesley.
Remainder and Factor Theorems
3 Polynomial and Rational Functions © 2008 Pearson Addison-Wesley. All rights reserved Sections 3.1–3.4.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Truncation Errors and the Taylor Series Chapter 4.
Solving Polynomials. Factoring Options 1.GCF Factoring (take-out a common term) 2.Sum or Difference of Cubes 3.Factor by Grouping 4.U Substitution 5.Polynomial.
Zeros (Solutions) Real Zeros Rational or Irrational Zeros Complex Zeros Complex Number and its Conjugate.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 2 / Chapter 5.
Chapter 11 Polynomial Functions
Polynomial Long Division Review
Polynomial Long Division Review
2.5 Zeros of Polynomial Functions
Interpolation Estimation of intermediate values between precise data points. The most common method is: Although there is one and only one nth-order.
Chapter 18.
Lesson 2.5 The Fundamental Theorem of Algebra
Warmup Solve:
Apply the Fundamental Theorem of Algebra Lesson 2.7
Copyright © 2014, 2010, 2007 Pearson Education, Inc.
Chapter 18.
Chapter 6.
Numerical Analysis Lecture 7.
Computers in Civil Engineering 53:081 Spring 2003
The Fundamental Theorem of Algebra And Zeros of Polynomials
Roots of Polynomials Chapter 7 The Islamic University of Gaza
Chapter 6.
Presentation transcript:

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 7

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 2 Roots of Polynomials Chapter 7 The roots of polynomials such as Follow these rules: 1.For an nth order equation, there are n real or complex roots. 2.If n is odd, there is at least one real root. 3.If complex root exist in conjugate pairs (that is, +  i and -  i), where i=sqrt(-1).

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 3 Conventional Methods The efficacy of bracketing and open methods depends on whether the problem being solved involves complex roots. If only real roots exist, these methods could be used. However, – Finding good initial guesses complicates both the open and bracketing methods, also the open methods could be susceptible to divergence. Special methods have been developed to find the real and complex roots of polynomials – Müller and Bairstow methods.

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 4 Müller Method Müller’s method obtains a root estimate by projecting a parabola to the x axis through three function values. Figure 7.3

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 5 Müller Method The method consists of deriving the coefficients of parabola that goes through the three points: 1. Write the equation in a convenient form:

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 6 2.The parabola should intersect the three points [x o, f(x o )], [x 1, f(x 1 )], [x 2, f(x 2 )]. The coefficients of the polynomial can be estimated by substituting three points to give 3.Three equations can be solved for three unknowns, a, b, c. Since two of the terms in the 3 rd equation are zero, it can be immediately solved for c=f(x 2 ).

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 7 Solved for a and b

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 8 Roots can be found by applying an alternative form of quadratic formula: The error can be calculated as ±term yields two roots, the sign is chosen to agree with b. This will result in a largest denominator, and will give root estimate that is closest to x 2.

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 9 Once x 3 is determined, the process is repeated using the following guidelines: 1.If only real roots are being located, choose the two original points that are nearest the new root estimate, x 3. 2.If both real and complex roots are estimated, employ a sequential approach just like in secant method, x 1, x 2, and x 3 to replace x o, x 1, and x 2.

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 10 Bairstow’s Method Bairstow’s method is an iterative approach loosely related to both Müller and Newton Raphson methods. It is based on dividing a polynomial by a factor x-t:

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 11 To permit the evaluation of complex roots, Bairstow’s method divides the polynomial by a quadratic factor x 2 -rx-s:

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 12 For the remainder to be zero, b o and b 1 must be zero. However, it is unlikely that our initial guesses at the values of r and s will lead to this result, a systematic approach can be used to modify our guesses so that b o and b 1 approach to zero. Using a similar approach to Newton Raphson method, both b o and b 1 can be expanded as function of both r and s in Taylor series.

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 13

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 14 If partial derivatives of the b’s can be determined, then the two equations can be solved simultaneously for the two unknowns  r and  b. Partial derivatives can be obtained by a synthetic division of the b’s in a similar fashion the b’s themselves are derived:

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 15 Then At each step the error can be estimated as Solved for  r and  s, in turn are employed to improve the initial guesses.

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 16 The values of the roots are determined by At this point three possibilities exist: 1.The quotient is a third-order polynomial or greater. The previous values of r and s serve as initial guesses and Bairstow’s method is applied to the quotient to evaluate new r and s values. 2.The quotient is quadratic. The remaining two roots are evaluated directly, using the above eqn. 3.The quotient is a 1 st order polynomial. The remaining single root can be evaluated simply as x=-s/r.

Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 17 Refer to Tables pt2.3 and pt2.4