Numerical methods for finding the roots of a function

Similar documents
Roots of Equations (Chapters 5 and 6)

G.A. Pavliotis. Department of Mathematics. Imperial College London

Nonlinear Algebraic Equations. Lectures INF2320 p. 1/88

Rolle s Theorem. q( x) = 1

Roots of equation fx are the values of x which satisfy the above expression. Also referred to as the zeros of an equation

Solutions of Equations in One Variable. Fixed-Point Iteration II

Section 3.7. Rolle s Theorem and the Mean Value Theorem. Difference Equations to Differential Equations

ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes

Aim. Decimal Search. An Excel 'macro' was used to do the calculations. A copy of the script can be found in Appendix A.

Rootfinding for Nonlinear Equations

3.2. Solving quadratic equations. Introduction. Prerequisites. Learning Outcomes. Learning Style

The Method of Partial Fractions Math 121 Calculus II Spring 2015

Factoring Trinomials: The ac Method

4.3 Lagrange Approximation

Numerical Solution of Differential

2013 MBA Jump Start Program

Linear and quadratic Taylor polynomials for functions of several variables.

FIRST YEAR CALCULUS. Chapter 7 CONTINUITY. It is a parabola, and we can draw this parabola without lifting our pencil from the paper.

MA107 Precalculus Algebra Exam 2 Review Solutions

Zero: If P is a polynomial and if c is a number such that P (c) = 0 then c is a zero of P.

AP CALCULUS AB 2009 SCORING GUIDELINES

JUST THE MATHS UNIT NUMBER 1.8. ALGEBRA 8 (Polynomials) A.J.Hobson

Don't Forget the Differential Equations: Finishing 2005 BC4

correct-choice plot f(x) and draw an approximate tangent line at x = a and use geometry to estimate its slope comment The choices were:

What does the number m in y = mx + b measure? To find out, suppose (x 1, y 1 ) and (x 2, y 2 ) are two points on the graph of y = mx + b.

Roots of Polynomials

1 Review of Newton Polynomials

Assessment Schedule 2013

5.1 Derivatives and Graphs

1.5. Factorisation. Introduction. Prerequisites. Learning Outcomes. Learning Style

General Framework for an Iterative Solution of Ax b. Jacobi s Method

Solving Quadratic Equations

A three point formula for finding roots of equations by the method of least squares

x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1

Microeconomic Theory: Basic Math Concepts

Higher Education Math Placement

Average rate of change

Objectives. Materials

Understanding Basic Calculus

5 Numerical Differentiation

Algebra I Vocabulary Cards

Factoring Polynomials and Solving Quadratic Equations

The Mean Value Theorem

ALGEBRA 2: 4.1 Graph Quadratic Functions in Standard Form

TOPIC 4: DERIVATIVES

Section 6.1 Factoring Expressions

10.2 ITERATIVE METHODS FOR SOLVING LINEAR SYSTEMS. The Jacobi Method

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the school year.

Principles of Scientific Computing Nonlinear Equations and Optimization

Nonlinear Algebraic Equations Example

3.3 Real Zeros of Polynomials

14. Nonlinear least-squares

CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA

SOLVING QUADRATIC EQUATIONS BY THE NEW TRANSFORMING METHOD (By Nghi H Nguyen Updated Oct 28, 2014))

Limits and Continuity

ALGEBRA 2 CRA 2 REVIEW - Chapters 1-6 Answer Section

2.5 Zeros of a Polynomial Functions

Review of Fundamental Mathematics

PUTNAM TRAINING POLYNOMIALS. Exercises 1. Find a polynomial with integral coefficients whose zeros include

Linear Equations. Find the domain and the range of the following set. {(4,5), (7,8), (-1,3), (3,3), (2,-3)}

Zeros of Polynomial Functions

This unit will lay the groundwork for later units where the students will extend this knowledge to quadratic and exponential functions.

EL-9650/9600c/9450/9400 Handbook Vol. 1

Two Fundamental Theorems about the Definite Integral

FINAL EXAM SECTIONS AND OBJECTIVES FOR COLLEGE ALGEBRA

Polynomial and Rational Functions

Inner Product Spaces

Answer Key for California State Standards: Algebra I

MATHEMATICS FOR ENGINEERING BASIC ALGEBRA

1 Error in Euler s Method

5.3 SOLVING TRIGONOMETRIC EQUATIONS. Copyright Cengage Learning. All rights reserved.

Polynomials. Dr. philippe B. laval Kennesaw State University. April 3, 2005

TI-83/84 Plus Graphing Calculator Worksheet #2

Determine If An Equation Represents a Function

Indiana State Core Curriculum Standards updated 2009 Algebra I

Real Roots of Univariate Polynomials with Real Coefficients

Outline. Generalize Simple Example

DRAFT. Algebra 1 EOC Item Specifications

Average rate of change of y = f(x) with respect to x as x changes from a to a + h:

Numerical Solution of Differential Equations

Slope and Rate of Change

1 if 1 x 0 1 if 0 x 1

Microeconomics Sept. 16, 2010 NOTES ON CALCULUS AND UTILITY FUNCTIONS

MATH 21. College Algebra 1 Lecture Notes

What are the place values to the left of the decimal point and their associated powers of ten?

5. Factoring by the QF method

1 Lecture: Integration of rational functions by decomposition

Algebra and Geometry Review (61 topics, no due date)

Algebra 1 If you are okay with that placement then you have no further action to take Algebra 1 Portion of the Math Placement Test

Algebra II End of Course Exam Answer Key Segment I. Scientific Calculator Only

6 EXTENDING ALGEBRA. 6.0 Introduction. 6.1 The cubic equation. Objectives

CURVE FITTING LEAST SQUARES APPROXIMATION

Increasing for all. Convex for all. ( ) Increasing for all (remember that the log function is only defined for ). ( ) Concave for all.

Core Maths C1. Revision Notes

Biggar High School Mathematics Department. National 5 Learning Intentions & Success Criteria: Assessing My Progress

Math Numerical Analysis Homework #2 Solutions

(1) S = R, where S is the sum, i is the rate of interest per compounding

Section 12.6: Directional Derivatives and the Gradient Vector

Integration. Topic: Trapezoidal Rule. Major: General Engineering. Author: Autar Kaw, Charlie Barker.

Transcription:

Numerical methods for finding the roots of a function The roots of a function f (x) are defined as the values for which the value of the function becomes equal to zero. So, finding the roots of f (x) means solving the equation f (x) = 0. Example 1: If f (x) = ax 2 +bx +c is a quadratic polynomial, the roots are given by the well-known formula x 1,x 2 = b ± b 2 4ac 2a Dana Mackey (DIT) Numerical Methods 1 / 29

Example 2: For a polynomial of degree 3 or higher, it is sometimes (but not very often!) possible to find the roots by factorising the polynomial f (x) = x 3 6x 2 +11x 6 = (x 1)(x 2)(x 3) so the roots are 1, 2 and 3 f (x) = x 4 16 = (x 2 4)(x 2 +4) so the roots are 2 and -2 For a large number of problems it is, however, not possible to find exact values for the roots of the function so we have to find approximations instead. Dana Mackey (DIT) Numerical Methods 2 / 29

1. The bisection method The bisection method is based on the following result from calculus: The Intermediate Value Theorem: Assume f : IR IR is a continuous function and there are two real numbers a and b such that f (a)f (b) < 0. Then f (x) has at least one zero between a and b. In other words, if a continuous function has different signs at two points, it has to go through zero somewhere in between! The bisection method consists of finding two such numbers a and b, then halving the interval [a,b] and keeping the half on which f (x) changes sign and repeating the procedure until this interval shrinks to give the required accuracy for the root. Dana Mackey (DIT) Numerical Methods 3 / 29

Bisection Algorithm An algorithm could be defined as follows. Suppose we need a root for f (x) = 0 and we have an error tolerance of ε (the absolute error in calculating the root must be less that ε). Bisection Algorithm: Step 1: Find two numbers a and b at which f has different signs. Step 2: Define c = a+b 2. Step 3: If b c ε then accept c as the root and stop. Step 4: If f (a)f (c) 0 then set c as the new b. Otherwise, set c as the new a. Return to step 1. Dana Mackey (DIT) Numerical Methods 4 / 29

Example Exercise 1: Find a root of the equation accurate to within ε = 0.001. x 6 x 1 = 0 (Note: This equation has two real roots: 0.7780895987 and 1.134724138.) First we have to find an interval where the function f (x) = x 6 x 1 changes sign. Easy to see that f (1) f (2) < 0 so we take a = 1 and b = 2. Then c = (a+b)/2 = 1.5 and the bisection algorithm is detailed in the following table. Dana Mackey (DIT) Numerical Methods 5 / 29

n a b c b-c f(c) 1 1.0000 2.0000 1.5000 0.5000 8.8906 2 1.000 1.5000 1.2500 0.2500 1.5647 3 1.0000 1.2500 1.1250 0.1250-0.0977 4 1.1250 1.2500 1.1875 0.0625 0.6167 5 1.1250 1.1875 1.1562 0.0312 0.2333 6 1.1250 1.1562 1.1406 0.0156 0.0616 7 1.1250 1.1406 1.1328 0.0078-0.0196 8 1.1328 1.1406 1.1367 0.0039 0.0206 9 1.1328 1.1367 1.1348 0.0020 0.0004 10 1.1328 1.1348 1.1338 0.00098-0.0096 Note that after 10 steps we have b c = 0.00098 < 0.001 hence the required root approximation is c = 1.1338. Dana Mackey (DIT) Numerical Methods 6 / 29

Error bounds Let α be the value of the root, a α b. Let a n, b n and c n be the values of a, b and c on the nth iteration of the algorithm. Then the error bound for c n is given by α c n 1 (b a) 2n This inequality can give us the number of iterations needed for a required accuracy ε n log( ) b a ε log2 Dana Mackey (DIT) Numerical Methods 7 / 29

Advantages and disadvantages of the bisection method 1 The method is guaranteed to converge 2 The error bound decreases by half with each iteration 3 The bisection method converges very slowly 4 The bisection method cannot detect multiple roots Exercise 2: Consider the nonlinear equation e x x 2 = 0. 1 Show there is a root α in the interval (1,2). 2 Estimate how many iterations will be needed in order to approximate this root with an accuracy of ε = 0.001 using the bisection method. 3 Then approximate α with an accuracy of ε = 0.001 using the bisection method. Exercise 3: Find a root of f (x) = x 3 +2x 2 3x 1 (ε = 0.001). Dana Mackey (DIT) Numerical Methods 8 / 29

2. The Newton-Raphson method Background Recall that the equation of a straight line is given by the equation y = mx +n (1) where m is called the slope of the line. (This means that all points (x,y) on the line satisfy the equation above.) If we know the slope m and one point (x 0,y 0 ) on the line, equation (1) becomes y y 0 = m(x x 0 ) (2) Dana Mackey (DIT) Numerical Methods 9 / 29

Idea behind Newton s method Assume we need to find a root of the equation f (x) = 0. Consider the graph of the function f (x) and an initial estimate of the root, x 0. To improve this estimate, take the tangent to the graph of f (x) through the point (x 0,f (x 0 ) and let x 1 be the point where this line crosses the horizontal axis. f α x 1 x 0 x 0 x 1 f( x 0 ) Dana Mackey (DIT) Numerical Methods 10 / 29

According to eq. (2) above, this point is given by x 1 = x 0 f (x 0 f (x 0 ) where f (x 0 ) is the derivative of f at x 0. Then take x 1 as the next approximation and continue the procedure. The general iteration will be given by x n+1 = x n f (x n) f (x n ) and so on. Dana Mackey (DIT) Numerical Methods 11 / 29

Exercise 1: Find a root of the equation x 6 x 1 = 0 (Note that the true root is α = 1.134724138.) We already know that this equation has a root between 1 and 2 so we take x 0 = 1.5 as our first approximation. For each iteration we calculate the value x n x n 1 which, as we shall see later, is a good approximation to the absolute error α x n 1. Dana Mackey (DIT) Numerical Methods 12 / 29

The iterations for Newton s algorithm are shown in the table below n x n f(x n ) x n x n 1 α x n 1 0 1.5 8.890625 1 1.30049 2.54-2.0E-1-3.65E-1 2 1.18148 5.38E-1-1.19E-1-1.66E-1 3 1.13945 4.92E-2-4.20E-2-4.68E-2 4 1.13477 5.50E-4-4.68E-3-4.73E-3 5 1.13472 7.11E-8-5.35E-5-5.35E-5 6 1.13472 1.55E-15-6.91E-9-6.91E-9 Dana Mackey (DIT) Numerical Methods 13 / 29

Error analysis Let α be the root of f (x) = 0 we are trying to approximate. Then, Taylor s formula gives f (α) = f (x n )+(α x n )f (x n )+ 1 2 (α x n) 2 f (c n ) where c n is an unknown point between α and x n. This eventually leads to [ f α x n+1 = (α x n ) 2 ] (c n ) 2f (x n ) which means that the error in x n+1 is proportional to the square of the error in x n. Hence, if the initial estimate was good enough, the error is expected to decrease very fast and the algorithm converges to the root. Dana Mackey (DIT) Numerical Methods 14 / 29

To give an actual error estimation, write Taylor s formula again f (α) = f (x n )+(α x n )f (c n ) where c n is an unknown point between α and x n, so so which is usually quite accurate. α x n = f (x n) f (c n ) f (x n) f (x n ) α x n x n+1 x n Dana Mackey (DIT) Numerical Methods 15 / 29

Advantages and disadvantages of Newton s method: 1 The error decreases rapidly with each iteration 2 Newton s method is very fast. (Compare with bisection method!) 3 Unfortunately, for bad choices of x 0 (the initial guess) the method can fail to converge! Therefore the choice of x 0 is VERY IMPORTANT! 4 Each iteration of Newton s method requires two function evaluations, while the bisection method requires only one. Dana Mackey (DIT) Numerical Methods 16 / 29

Note: A good strategy for avoiding failure to converge would be to use the bisection method for a few steps (to give an initial estimate and make sure the sequence of guesses is going in the right direction) folowed by Newton s method, which should converge very fast at this point. Exercise 2: Find a root of f (x) = e x 3x. Exercise 3: Find a root of f (x) = x 3 +2x 2 3x 1. Dana Mackey (DIT) Numerical Methods 17 / 29

Example Consider the function f (x) = tan(πx) x 6. Use the Newton method to evaluate a root of this function, with the following initial approximations: 0.48, 0.4 and 0.01. 0 x 0 = 0.48 x 0 = 0.4 x 0 = 0.01 1 0.46817005 0.50415051 2.7976098 2 0.45703550 0.50865280 5.2724799 3 0.4517795 0.51883428 6.8756520 4 0.45105821 0.54490990 11.844078 5 0.45104726 0.63096380 17.899771 6 0.45104726 1.1095932 27.688306 7 0.45104726 3.7616925 31.553226 8 0.45104726 5.9643775 31.940006 9 0.45104726 11.500952 48.842772 10 0.45104726 11.501954 66.985902 11 0.45104726 11.504118 100.98883 Dana Mackey (DIT) Numerical Methods 18 / 29

3. The secant method Idea behind the secant method Assume we need to find a root of the equation f (x) = 0, called α. Consider the graph of the function f (x) and two initial estimates of the root, x 0 and x 1. The two points (x 0,f (x 0 )) and (x 1,f (x 1 )) on the graph of f (x) determine a straight line, called a secant line which can be viewed as an approximation to the graph. The point x 2 where this secant line crosses the x axis is then an approximation for the root α. This is the same idea as in Newton s method, where the tangent line has been approximated by a secant line. Dana Mackey (DIT) Numerical Methods 19 / 29

Exercise 1: Find a root of the equation x 6 x 1 = 0 (Recall that the true root is α = 1.134724138.) Note: We can use a similar argument as in Newton s method to show that α x n 1 x n x n 1 so that we have a measure of the absolute error at each step. Dana Mackey (DIT) Numerical Methods 21 / 29

n x n f(x n ) x n x n 1 α x n 1 0 2.0 61.0 1 1.0-1.0-1.0 2 1.016129-9.15E-1 1.61E-2 1.35E-1 3 1.190578 6.57E-1 1.74E-1 1.19E-1 4 1.117656-1.68E-1-7.29E-2-5.59E-2 5 1.132532-2.24E-2 1.49E-2 1.71E-2 6 1.134817 9.54E-4 2.29E-3 2.19E-3 7 1.134724-5.07E-6-9.32E-5-9.27E-5 8 1.134724-1.13E-9 4.92E-7 4.92E-7 Dana Mackey (DIT) Numerical Methods 22 / 29

Advantages and disadvantages: 1 The error decreases slowly at first but then rapidly after a few iterations. 2 The secant method is slower than Newton s method but faster than the bisection method. 3 Each iteration of Newton s method requires two function evaluations, while the secant method requires only one 4 The secant method does not require differentiation. Dana Mackey (DIT) Numerical Methods 23 / 29

4. The fixed-point iteration method Definition: Consider a real function f (x). A number a is called a fixed point of the function if it satisfies f (a) = a. Suppose we are trying to solve the equation f (x) = 0. We can rearrange this equation as g(x) = x so now we are looking for a fixed point for the function g. We start with an initial guess x 0 and compute a sequence of successive approximations using the formula x n+1 = g(x n ) If the sequence x n converges, then it will converge to the fixed point of g(x) so we have found the root of f (x) = 0. Dana Mackey (DIT) Numerical Methods 24 / 29

Example: Consider the equation f (x) = x 2 3x +1 = 0 (whose true roots are α 1 = 0.381966 and α 2 = 2.618034. This can be rearranged as a fixed point problem in many different ways. Compare the following two algorithms. I. x n+1 = 1 3 (x2 n +1) g 1(x n ) II. x n+1 = 3 1 x n g 2 (x n ) Dana Mackey (DIT) Numerical Methods 25 / 29

n x n = g 1 (x n ) x n = g 2 (x n ) 0 1.0 1.0 1 0.666666 2.0 2 0.481481 2.50 3 0.410608 2.60 4 0.389533 2.615385 5 0.383911 2.617647 6 0.382463 2.617977 7 0.382092 2.618026 8 0.381998 2.618033 9 0.381974 2.618034 10 0.381968 2.618034 Note that the two algorithms converge to different roots even though the starting point is the same! Dana Mackey (DIT) Numerical Methods 26 / 29

Convergence condition for the fixed point iteration scheme Consider the equation f (x) = 0, which has the root α and can be written as the fixed point problem g(x) = x. If the following conditions hold 1 g(x) and g (x) are continuous functions; 2 g (α) < 1 then the fixed point iteration scheme based on the function g will converge to α. Alternatively, if g (α) > 1 then the iteration will not converge to α. (Note that when g (α) = 1 no conclusion can be reached.) Dana Mackey (DIT) Numerical Methods 27 / 29

For the previous example, we have g 1 (x) = 1 3 (x2 +1) so g 1 (x) = 2x 3 Evaluating the derivative at the two roots (or fixed points): g 1(α 1 ) = 0.254... < 1 and g 1(α 2 ) = 1.745... > 1 so the first algorithm converges to α 1 = 0.3819... but not to α 2 = 2.618... The second algorithm is given by which gives g 2 (x) = 3 1 x so g 2 (x) = 1 x 2 g 2 (α 1) = 6.92... > 1 and g 2 (α 2) = 0.13... < 1 so the second algorithm converges to α 2 = 2.61... but not to α 1 = 0.38... Dana Mackey (DIT) Numerical Methods 28 / 29

Exercise Consider the nonlinear equation f (x) = x 3 2x 2 3 = 0 which has a root α between 2 and 3. (The true value is α = 2.485583998.) 1 Rewrite the equation f (x) = 0 as the fixed-point problem g 1 (x) = x where g 1 (x) = 2+ 3 x 2 and, using the convergence criterion, show that the iteration algorithm associated with this problem converges to the root α. 2 Create two other fixed-point iteration schemes, g 2 (x) and g 3 (x). 3 Perform ten iterations with six exact digits for each of the schemes g 1 (x), g 2 (x) and g 3 (x) and compare the approximations. (Use the same starting point for all algorithms.) Dana Mackey (DIT) Numerical Methods 29 / 29