Chapter 4. Solution of Non-linear Equation. Module No. 1. Newton s Method to Solve Transcendental Equation

Size: px
Start display at page:

Download "Chapter 4. Solution of Non-linear Equation. Module No. 1. Newton s Method to Solve Transcendental Equation"

Transcription

1 Numerical Analysis by Dr. Anita Pal Assistant Professor Department of Mathematics National Institute of Technology Durgapur Durgapur

2 . Chapter 4 Solution of Non-linear Equation Module No. 1 Newton s Method to Solve Transcendental Equation

3 ... Finding roots of algebraic and transcendental equations is a very important task. These equations occur in many applications of science and engineering. A function f(x) is called algebraic if each term of f(x) contains only the arithmetic operations between real numbers and x with rational power. On the other hand, a transcendental function includes at least one non-algebraic function, i.e. an exponential function, a logarithmic function, trigonometric functions, etc. An equation f(x) = 0 is called algebraic or transcendental according as f(x) is algebraic or transcendental. The equations x 9 120x = 0 and x x 10 9x 8 +30x = 0 are the examples of algebraic equations and the equations logx+xe x = 0, 3sinx 9x 2 +2x = 0 are the examples of transcendental equations. Lot of numerical methods are available to solve the equation f(x) = 0. But, each method has some advantages and disadvantages over another method. Mainly, the following points are considered to compare the methods: rate of convergence, domain of applicability, number of evaluation of functions, precomputation step, etc. The commonly used methods to solve an algebraic and transcendental equations are bisection, regula-falsi, secant, fixed point iteration, Newton-Raphson, etc. In this module, only Newton-Raphson method is discussed. It is a very interesting method and rate of convergence of this method is high compare to other methods. 1.1 Newton-Raphson method This method is also known as method of tangent. The Newton-Raphson method is an iteration method and so it needs an initial or starting value. Let f(x) = 0 be the given equation and x 0 be the initial guess, i.e. the initial approximate root. Let x 1 = x 0 +h be an exact root of the equation f(x) = 0, where h is a correction of the root, i.e. the amount of error. Generally, it is assumed that h is small. Therefore, f(x 1 ) = 0. Now, by Taylor s series, the equation f(x 1 ) = f(x 0 +h) = 0 is expanded as f(x 0 )+hf (x 0 )+ h2 2! f (x 0 )+ = 0. 1

4 ...Newton s Method to Solve Transcendental Equation Since h is small, so the second and higher power terms of h are neglected and then the above equation reduces to f(x 0 )+hf (x 0 ) = 0 or, h = f(x 0) f (x 0 ). Note that this is an approximate value of h. Using this h, the value of x 1 is x 1 = x 0 +h = x 0 f(x 0) f (x 0 ). (1.1) It is obvious that x 1 is a better approximation of x than x 0. Since x 1 is not an exact root of the equation f(x) = 0, therefore another iteration is to be performed to find the next better root. For this purpose, the value of x 0 is replaced by x 1 in equation (1.1) to get second approximate root x 2. That is, In this way, the (n+1)th iterated value is given by x 2 = x 1 f(x 1) f (x 1 ). (1.2) x n+1 = x n f(x n) f (x n ). (1.3) The above formula generates a sequence of numbers x 1,x 2,...,x n,... The terms of this sequence go to the exact root ξ. The method will terminate when x n+1 x n ε, where ε is a pre-assigned very small positive number called the error tolerance. Note 1.1 This method is also used to find a complex root of the equation f(x) = 0. But, for this case, the initial root is taken as a complex number. Geometrical interpretation The geometrical interpretation of Newton-Raphson method is shown in Figure 1.1. Here, a tangent is drawn at the point (x 0,f(x 0 )) to the curve y = f(x). Let the tangent cuts the x-axis at the point (x 1,0). Again, a tangent is drawn at the point (x 1,f(x 1 )). Suppose this tangent cuts the x-axis at the point (x 2,0). This process is repeated until the nth iterated root x n coincides with the exact root ξ, for large n. For this reason this method is known as method of tangents. 2

5 ... f(x) O x ξx 2 x 1 x 0 Figure 1.1: Geometrical interpretation of Newton-Raphson method. The choice of initial guess x 0 is a very serious task. If the initial guess is close to the root then the method converges rapidly. But, if the initial guess is not much close to the root or if it is wrong, then the method may generates an endless cycle. Also, if the initial guess is not close to the exact root, the method may generates a divergent sequence of approximate roots. Thus, to choose the initial guess the following rule is suggested. Let a root of the equation f(x) = 0 be in the interval a,b]. If f(a) f (x) > 0 then x 0 = a be taken as the initial guess of the equation f(x) = 0 and if f(b) f (x) > 0, then x 0 = b be taken as the initial guess Convergence of Newton-Raphson method Suppose a root of the equation f(x) = 0 lies in the interval a,b]. The Newton-Raphson iteration formula (1.3) is x i+1 = x i f(x i) f (x i ) = φ(x i) (say). (1.4) If ξ is a root of the equation f(x) = 0, therefore ξ = φ(ξ). (1.5) 3

6 ...Newton s Method to Solve Transcendental Equation get Subtracting (1.4) from (1.5), ξ x i+1 = φ(ξ) φ(x i ) = (ξ x i )φ (ξ i ) (by MVT) (where ξ i lies between ξ and x i ) Now, substituting i = 0,1,2,...,n to the above equation and multiplying them we (ξ x n+1 ) = (ξ x 0 )φ (ξ 0 )φ (ξ 1 ) φ (ξ n ) or ξ x n+1 = ξ x 0 φ (ξ 0 ) φ (ξ 1 ) φ (ξ n ) (1.6) Let φ (x) l for all x a,b]. Then from the equation (1.6) Now, if l < 1 then ξ x n+1. ξ x n+1 l n+1 ξ x 0. Therefore, lim x n+1 = ξ. n Hence, the sequence {x n } converges to ξ for all x a,b], if φ (x) < 1 or { d x f(x) } dx f < 1 or f(x) f (x) < f (x) 2 (1.7) (x) within the interval a, b]. Thus, the Newton-Raphson method converges if the initial guess x 0 is chosen sufficiently close to the root and the functions f(x), f (x) and f (x) are continuous and bounded within a, b]. This is the sufficient condition for the convergence of the Newton- Raphson method. The rate of convergent of Newton-Raphson method is calculated in the following theorem. Theorem 1.1 The rate of convergence of Newton-Raphson method is quadratic. Proof. The Newton-Raphson iteration formula is x n+1 = x n f(x n) f (x n ). (1.8) Let ξ and x n be an exact root and the nth approximate root of the equation f(x) = 0. Let ε n be the error occurs at the nth iteration. Then x n = ε n +ξ and f(ξ) = 0. 4

7 ... Therefore, from the equation (1.8) That is, ε n+1 +ξ = ε n +ξ f(ε n +ξ) f (ε n +ξ) ε n+1 = ε n f(ξ)+ε nf (ξ)+(ε 2 n/2)f (ξ)+ f (ξ)+ε n f (ξ)+ + ] f (ξ) ε n + ε2 n f (ξ) 2 f (ξ) = ε n + ] since f(ξ) = 0] f f (ξ) 1+ε (ξ) n f (ξ) = ε n ε n + ε2 n 2 = 1 f (ξ) 2 ε2 n f (ξ) +O(ε3 n). f (ξ) f (ξ) + ] f ] (ξ) 1 1+ε n f (ξ) + by Taylor s series expansion] Neglecting the third and higher powers of ε n, the above expression reduces to ε n+1 = Cε 2 n, where C = f (ξ) 2f (ξ) a constant number. (1.9) Since the power of ε n is 2, therefore the rate of convergence of Newton-Raphson method is quadratic. Example 1.1 Using Newton-Raphson method find a root of the equation x 3 2sinx 2 = 0 correct up to five decimal places. Solution. Let f(x) = x 3 2sinx 2. One root lies between 1 and 2. Let x 0 = 1 be the initial guess. The iteration scheme is x n+1 = x n f(x n) f (x n ) = x n x3 n 2sinx n 2 3x 2 n 2cosx n. The sequence {x n } for different values of n is shown below. 5

8 ...Newton s Method to Solve Transcendental Equation n x n x n Therefore, one root of the given equation is correct up to five decimal places. Example 1.2 Find an iteration scheme to find the kth root of a number a and hence find the cube root of 2. Solution. Let x be the kth root of a. Therefore, x = a 1/k or x k a = 0. Let f(x) = x k a. Then the Newton-Raphson iteration scheme is x n+1 = x n f(x n) f (x n ) = x n xk n a = kxk n xk n +a = 1 k Second part: Here, a = 2 and k = 3. kx k 1 n (k 1)x n + a x k 1 n Then the above iteration scheme reduces to x n+1 = 1 3 2x n + 2 ] x 2 = 2 n 3 All calculations are shown in the following table. kx k 1 n ]. ( x 3 n +1 x 2 n ). n x n x n Thus, the value of 3 2 is , correct up to four decimal places. 6

9 ... Example 1.3 Suppose 2x n+1 = 5x3 n +1 is an iteration scheme to find a root of the 9 equation f(x) = 0. Find the function f(x). Solution. Let l be a root obtained from the given iteration scheme 2x n+1 = 5x3 n Then, lim x n = l. n ] Now, lim 18x n+1 = 5 lim n n x3 n +1. That is, 18l = (5l 3 +1), or 5l 3 18l +1 = 0. Therefore, the required equation is 5x 3 18x+1 = 0, and hence f(x) = 5x 2 18x+1. Example 1.4 Discuss the Newton-Raphson method to find a root of the equation x 15 1 = 0 starting with x 0 = 0.5. Solution. It is obvious that the real roots of the given equation are ±1. Here f(x) = x Therefore, x n+1 = x n x15 n 1 15x 14 n = 14x15 n +1 15x 14. Let the initial guess be x 0 = 0.5. Then x 1 = 14 (0.5) (0.5) 14 = This is far away from the root 1. This is because 0.5 is not close enough to the exact root x = 1. But, the initial guess x 0 = 0.9 gives the first approximate root as x 1 = and it is close to the root 1. This example shows the importance of initial guess in Newton-Raphson method. The Newton-Raphson method may also be used to find the complex root. This is illustrated in the following example. n 7

10 ...Newton s Method to Solve Transcendental Equation Example 1.5 Find a complex root of the equation z 3 +3z 2 +3z +2 = 0. An initial guess may be taken as i. Solution. Letz 0 = i = (0.5,0.5) betheinitial guessandf(z) = z 3 +3z 2 +3z+2. Then f (z) = 3z 2 +6z +3. The Newton-Raphson iteration scheme is z n+1 = z n f(z n) f (z n ). The values of z n and z n+1 at each iteration are tabulated below: n z n z n+1 0 ( , ) ( , ) 1 ( , ) ( , ) 2 ( , ) ( , ) 3 ( , ) ( , ) 4 ( , ) ( , ) 5 ( , ) ( , ) 6 ( , ) ( , ) 7 ( , ) ( , ) Thus one complex root is ( , ), i.e i correct up to eight decimal places. 1.2 Newton-Raphson method for multiple root Using Newton-Raphson method, one can determined the multiple root of the equation f(x) = 0. But, the following modified formula x n+1 = x n k f(x n) f (x n ) (1.10) gives a more faster convergent scheme, where k is the multiplicity of the root. The term in the formula 1 k f (x n ) is the slope of the straight line passing through point (x n,f(x n )) and intersecting the x-axis at the point (x n+1,0). Let ξ be a root of the equation f(x) = 0 with multiplicity k. Then ξ is also a root of the equation f (x) = 0 with multiplicity (k 1). In general, ξ is a root of the equation f p (x) = 0 with multiplicity (k p), p < k. If the equation f(x) = 0 has a 8

11 ... root with multiplicity k and if the initial guess is very close to the exact root ξ, then the expressions x 0 k f(x 0) f (x 0 ), x 0 (k 1) f (x 0 ) f (x 0 ), x 0 (k 2) f (x 0 ) f (x 0 ),...,x 0 fk 1 (x 0 ) f k (x 0 ) must have the same value. Theorem 1.2 The rate of convergence of the formula (1.10) is quadratic. Proof. Let ξ be a multiple root of the equation f(x) = 0 of multiplicity k. Therefore, f(ξ) = f (ξ) = f (ξ) = = f k 1 (ξ) = 0 and f k (ξ) 0. Let x n and ε n be the nth approximate root and the error at this step. Then ε n = x n ξ. Now, from the iteration scheme (1.10), we have ε n+1 = ε n k f(ε n +ξ) f (ε n +ξ) = ε n k f(ξ)+ε nf (ξ)+ + ε k 1 n (k 1)! fk 1 (ξ)+ εk n k! f k (ξ)+ εk+1 n (k+1)! fk+1 (ξ)+ f (ξ)+ε n f (ξ)+ + εk 2 n (k 2)! fk 1 (ξ)+ εk 1 n (k 1)! fk (ξ)+ εk n k! f k+1 (ξ)+ ε k n k! f k (ξ)+ εk+1 n = ε n k ε k 1 n (k 1)! fk (ξ)+ εk n k! f k+1 (ξ)+ εn = ε n k εn = ε n k k + k + = ε n ε n + ε2 n k +1 = ε 2 n 1 k(k +1) (k+1)! fk+1 (ξ)+ ε 2 n f k+1 (ξ) k(k +1) f k + (ξ) ε 2 n f k+1 (ξ) k(k +1) f k + (ξ) f k+1 (ξ) f k (ξ) f k+1 (ξ) f k (ξ) ε2 n k ] +O(ε 3 n ). f k+1 (ξ) f k (ξ) ] 1+ ε n k ] 1 ε n k f k+1 (ξ) f k (ξ) f k+1 (ξ) f k (ξ) ] + ] 1 + ] + 1 f k+1 (ξ) Let C = k(k +1) f k (ξ). Neglecting cube and higher order terms of ε n, the above equation becomes ε n+1 = Cε 2 n. Thus, the rate of convergence of the scheme (1.10) is quadratic. 9

12 ...Newton s Method to Solve Transcendental Equation Example 1.6 Find the multiple root with multiplicity 3 of the equation x 4 x 3 3x 2 + 5x 2 = 0. Solution. Let the initial guess be x 0 = 0.5. Also, let f(x) = x 4 x 3 3x 2 +5x 2. f (x) = 4x 3 3x 2 6x+5, f (x) = 12x 2 6x 6, f (x) = 24x 6. The first iterated values are x 1 = x 0 3 f(x 0) f (x 0 ) = 0.5 3f(0.5) f (0.5) = x 1 = x 0 2 f (x 0 ) f (x 0 ) = (0.5) 0.5 2f f = and (0.5) x 1 = x 0 f (x 0 ) f (x 0 ) = 0.5 f (0.5) f (0.5) = 1.5. The first two values of x 1 are closed to 1. It indicates that the equation may have a double root near 1. Let x 1 = Then x 2 = x 1 3 f(x 1) f = f( ) (x 1 ) f ( ) = x 2 = x 1 2 f (x 1 ) f (x 1 ) = ( ) 2f f ( ) = x 2 = x 1 f (x 1 ) f (x 1 ) = f ( ) f ( ) = Here it is seen that the three values of x 2 are very close to 1. So the equation has a multiple root near 1 of multiplicity 3. Let x 2 = The third iterated values are x 3 = x 2 3 f(x 2) f (x 2 ) = , x 3 = x 2 2 f (x 2 ) f = and (x 2 ) x 3 = x 2 f (x 2 ) f (x 2 ) = All the values of x 3 are same and hence one root of the equation is correct up to six decimal places, with multiplicity Modification on Newton-Raphson method After development of Newton-Raphson method, some modifications have been made on this method. One of them is discussed below. 10

13 ... Note that in the Newton-Raphson method the derivative of the function f(x) is evaluated at each iteration. That is, to find x n+1, the value of f (x n ) is required for n = 0,1,2,... Therefore, at each iteration two functions are evaluated at the point x n, n = 0,1,2,... So, a separate method is required to find derivatives. Thus, in each iteration of this method more calculations are needed. But, the following proposed method can reduced the computational effort: x n+1 = x n f(x n) f (x 0 ). (1.11) In this method, the derivative of f(x) is calculated only at the initial guess x 0 and obviously it reduces the computation time at each iteration. But, the rate of convergence of this method reduced to 1. This is, proved in the following theorem. Theorem 1.3 The rate of convergence of the modified Newton-Raphson method (1.11) is linear. Solution. Let ξ be an exact root of the equation f(x) = 0 and x n be the approximate root at the nth iteration. Then f(ξ) = 0. Let ε n bethe error occurs at the nth iteration. Then ε n = x n ξ. Now, from the formula (1.11), we have ε n+1 = ε n f(ε n +ξ) f = ε n f(ξ)+ε nf (ξ)+ (x 0 ) f (x 0 ) ( ) = ε n 1 f (ξ) f +O(ε 2 (x 0 ) n). Neglecting square and higher power terms of ε n, the above equation reduces to ( ) ε n+1 = ε n 1 f (ξ) f. (x 0 ) Let C = 1 f (ξ) f (x 0 ), which is free from ε n. Using this notation the above error equation becomes ε n+1 = Cε n. (1.12) This shows that the rate of convergence of the formula (1.11) is linear. 11

14 ...Newton s Method to Solve Transcendental Equation Example 1.7 Find a root of the equation x 3 3x = 0 using modified Newton- Raphson formula (1.11) and Newton-Raphson method correct up to four decimal places. Solution. Let f(x) = x 3 3x One root of this equation lies between 0 and 1. Let the initial guess be x 0 = 0.5. Now, f (x) = 3x 2 6x and hence f (x 0 ) = The iteration scheme for the formula (1.11) is x n+1 = x n f(x n) f (x 0 ) = x n x3 n 3x 2 n = x3 n 3x 2 n +2.25x n All the approximate roots are calculated in the following table. n x n x n Therefore, is a root of the given equation correct up to four decimal places. By Newton-Raphson method The iteration scheme for Newton-Raphson method is x n+1 = x n f(x n) f (x n ) = x n x3 n 3x 2 n +1 3x 2 n 6x n = 2x3 n 3x 2 n 1 3x 2 n 6x n. Let x 0 = 0.5. The successive iterations are shown below. n x n x n

15 ... Therefore, is a root correct up to four decimal places. In this example, Newton-Raphson method takes less number of iterations whereas as expected the modified formula (1.11) needs more iterations. 13

SOLUTION OF ALGEBRAIC AND TRANSCENDENTAL EQUATIONS BISECTION METHOD

SOLUTION OF ALGEBRAIC AND TRANSCENDENTAL EQUATIONS BISECTION METHOD BISECTION METHOD If a function f(x) is continuous between a and b, and f(a) and f(b) are of opposite signs, then there exists at least one root between a and b. It is shown graphically as, Let f a be negative

More information

Solution of Algebric & Transcendental Equations

Solution of Algebric & Transcendental Equations Page15 Solution of Algebric & Transcendental Equations Contents: o Introduction o Evaluation of Polynomials by Horner s Method o Methods of solving non linear equations o Bracketing Methods o Bisection

More information

Numerical Analysis: Solving Nonlinear Equations

Numerical Analysis: Solving Nonlinear Equations Numerical Analysis: Solving Nonlinear Equations Mirko Navara http://cmp.felk.cvut.cz/ navara/ Center for Machine Perception, Department of Cybernetics, FEE, CTU Karlovo náměstí, building G, office 104a

More information

1. Method 1: bisection. The bisection methods starts from two points a 0 and b 0 such that

1. Method 1: bisection. The bisection methods starts from two points a 0 and b 0 such that Chapter 4 Nonlinear equations 4.1 Root finding Consider the problem of solving any nonlinear relation g(x) = h(x) in the real variable x. We rephrase this problem as one of finding the zero (root) of a

More information

NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR)

NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR) NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR) Autumn Session UNIT 1 Numerical analysis is the study of algorithms that uses, creates and implements algorithms for obtaining numerical solutions to problems

More information

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 Professor Biswa Nath Datta Department of Mathematical Sciences Northern Illinois University DeKalb, IL. 60115 USA E mail: dattab@math.niu.edu

More information

Zeroes of Transcendental and Polynomial Equations. Bisection method, Regula-falsi method and Newton-Raphson method

Zeroes of Transcendental and Polynomial Equations. Bisection method, Regula-falsi method and Newton-Raphson method Zeroes of Transcendental and Polynomial Equations Bisection method, Regula-falsi method and Newton-Raphson method PRELIMINARIES Solution of equation f (x) = 0 A number (real or complex) is a root of the

More information

converges to a root, it may not always be the root you have in mind.

converges to a root, it may not always be the root you have in mind. Math 1206 Calculus Sec. 4.9: Newton s Method I. Introduction For linear and quadratic equations there are simple formulas for solving for the roots. For third- and fourth-degree equations there are also

More information

Midterm Review. Igor Yanovsky (Math 151A TA)

Midterm Review. Igor Yanovsky (Math 151A TA) Midterm Review Igor Yanovsky (Math 5A TA) Root-Finding Methods Rootfinding methods are designed to find a zero of a function f, that is, to find a value of x such that f(x) =0 Bisection Method To apply

More information

Numerical Analysis MTH603

Numerical Analysis MTH603 Numerical Analysis Course Contents Solution of Non Linear Equations Solution of Linear System of Equations Approximation of Eigen Values Interpolation and Polynomial Approximation Numerical Differentiation

More information

Numerical Methods. Root Finding

Numerical Methods. Root Finding Numerical Methods Solving Non Linear 1-Dimensional Equations Root Finding Given a real valued function f of one variable (say ), the idea is to find an such that: f() 0 1 Root Finding Eamples Find real

More information

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam

Jim Lambers MAT 460/560 Fall Semester Practice Final Exam Jim Lambers MAT 460/560 Fall Semester 2009-10 Practice Final Exam 1. Let f(x) = sin 2x + cos 2x. (a) Write down the 2nd Taylor polynomial P 2 (x) of f(x) centered around x 0 = 0. (b) Write down the corresponding

More information

15 Nonlinear Equations and Zero-Finders

15 Nonlinear Equations and Zero-Finders 15 Nonlinear Equations and Zero-Finders This lecture describes several methods for the solution of nonlinear equations. In particular, we will discuss the computation of zeros of nonlinear functions f(x).

More information

Unit 2: Solving Scalar Equations. Notes prepared by: Amos Ron, Yunpeng Li, Mark Cowlishaw, Steve Wright Instructor: Steve Wright

Unit 2: Solving Scalar Equations. Notes prepared by: Amos Ron, Yunpeng Li, Mark Cowlishaw, Steve Wright Instructor: Steve Wright cs416: introduction to scientific computing 01/9/07 Unit : Solving Scalar Equations Notes prepared by: Amos Ron, Yunpeng Li, Mark Cowlishaw, Steve Wright Instructor: Steve Wright 1 Introduction We now

More information

University of Houston, Department of Mathematics Numerical Analysis, Fall 2005

University of Houston, Department of Mathematics Numerical Analysis, Fall 2005 3 Numerical Solution of Nonlinear Equations and Systems 3.1 Fixed point iteration Reamrk 3.1 Problem Given a function F : lr n lr n, compute x lr n such that ( ) F(x ) = 0. In this chapter, we consider

More information

CHAPTER-II ROOTS OF EQUATIONS

CHAPTER-II ROOTS OF EQUATIONS CHAPTER-II ROOTS OF EQUATIONS 2.1 Introduction The roots or zeros of equations can be simply defined as the values of x that makes f(x) =0. There are many ways to solve for roots of equations. For some

More information

Math Numerical Analysis

Math Numerical Analysis Math 541 - Numerical Analysis Lecture Notes Zeros and Roots Joseph M. Mahaffy, jmahaffy@mail.sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research Center

More information

Outline. Math Numerical Analysis. Intermediate Value Theorem. Lecture Notes Zeros and Roots. Joseph M. Mahaffy,

Outline. Math Numerical Analysis. Intermediate Value Theorem. Lecture Notes Zeros and Roots. Joseph M. Mahaffy, Outline Math 541 - Numerical Analysis Lecture Notes Zeros and Roots Joseph M. Mahaffy, jmahaffy@mail.sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research

More information

Chapter 1. Root Finding Methods. 1.1 Bisection method

Chapter 1. Root Finding Methods. 1.1 Bisection method Chapter 1 Root Finding Methods We begin by considering numerical solutions to the problem f(x) = 0 (1.1) Although the problem above is simple to state it is not always easy to solve analytically. This

More information

p 1 p 0 (p 1, f(p 1 )) (p 0, f(p 0 )) The geometric construction of p 2 for the se- cant method.

p 1 p 0 (p 1, f(p 1 )) (p 0, f(p 0 )) The geometric construction of p 2 for the se- cant method. 80 CHAP. 2 SOLUTION OF NONLINEAR EQUATIONS f (x) = 0 y y = f(x) (p, 0) p 2 p 1 p 0 x (p 1, f(p 1 )) (p 0, f(p 0 )) The geometric construction of p 2 for the se- Figure 2.16 cant method. Secant Method The

More information

Comparative Analysis of Convergence of Various Numerical Methods

Comparative Analysis of Convergence of Various Numerical Methods Journal of Computer and Mathematical Sciences, Vol.6(6),290-297, June 2015 (An International Research Journal), www.compmath-journal.org ISSN 0976-5727 (Print) ISSN 2319-8133 (Online) Comparative Analysis

More information

Chapter 8: Taylor s theorem and L Hospital s rule

Chapter 8: Taylor s theorem and L Hospital s rule Chapter 8: Taylor s theorem and L Hospital s rule Theorem: [Inverse Mapping Theorem] Suppose that a < b and f : [a, b] R. Given that f (x) > 0 for all x (a, b) then f 1 is differentiable on (f(a), f(b))

More information

Root Finding (and Optimisation)

Root Finding (and Optimisation) Root Finding (and Optimisation) M.Sc. in Mathematical Modelling & Scientific Computing, Practical Numerical Analysis Michaelmas Term 2018, Lecture 4 Root Finding The idea of root finding is simple we want

More information

3.1 Introduction. Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x x 1.5 =0, tan x x =0.

3.1 Introduction. Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x x 1.5 =0, tan x x =0. 3.1 Introduction Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x 3 +1.5x 1.5 =0, tan x x =0. Practical existence test for roots: by intermediate value theorem, f C[a, b] & f(a)f(b)

More information

Solution of Nonlinear Equations

Solution of Nonlinear Equations Solution of Nonlinear Equations (Com S 477/577 Notes) Yan-Bin Jia Sep 14, 017 One of the most frequently occurring problems in scientific work is to find the roots of equations of the form f(x) = 0. (1)

More information

ROOT FINDING REVIEW MICHELLE FENG

ROOT FINDING REVIEW MICHELLE FENG ROOT FINDING REVIEW MICHELLE FENG 1.1. Bisection Method. 1. Root Finding Methods (1) Very naive approach based on the Intermediate Value Theorem (2) You need to be looking in an interval with only one

More information

Numerical Methods in Physics and Astrophysics

Numerical Methods in Physics and Astrophysics Kostas Kokkotas 2 October 20, 2014 2 http://www.tat.physik.uni-tuebingen.de/ kokkotas Kostas Kokkotas 3 TOPICS 1. Solving nonlinear equations 2. Solving linear systems of equations 3. Interpolation, approximation

More information

Introductory Numerical Analysis

Introductory Numerical Analysis Introductory Numerical Analysis Lecture Notes December 16, 017 Contents 1 Introduction to 1 11 Floating Point Numbers 1 1 Computational Errors 13 Algorithm 3 14 Calculus Review 3 Root Finding 5 1 Bisection

More information

Numerical Methods in Physics and Astrophysics

Numerical Methods in Physics and Astrophysics Kostas Kokkotas 2 October 17, 2017 2 http://www.tat.physik.uni-tuebingen.de/ kokkotas Kostas Kokkotas 3 TOPICS 1. Solving nonlinear equations 2. Solving linear systems of equations 3. Interpolation, approximation

More information

Solving Non-Linear Equations (Root Finding)

Solving Non-Linear Equations (Root Finding) Solving Non-Linear Equations (Root Finding) Root finding Methods What are root finding methods? Methods for determining a solution of an equation. Essentially finding a root of a function, that is, a zero

More information

Numerical Methods. Roots of Equations

Numerical Methods. Roots of Equations Roots of Equations by Norhayati Rosli & Nadirah Mohd Nasir Faculty of Industrial Sciences & Technology norhayati@ump.edu.my, nadirah@ump.edu.my Description AIMS This chapter is aimed to compute the root(s)

More information

Convergence Rates on Root Finding

Convergence Rates on Root Finding Convergence Rates on Root Finding Com S 477/577 Oct 5, 004 A sequence x i R converges to ξ if for each ǫ > 0, there exists an integer Nǫ) such that x l ξ > ǫ for all l Nǫ). The Cauchy convergence criterion

More information

Numerical Methods Dr. Sanjeev Kumar Department of Mathematics Indian Institute of Technology Roorkee Lecture No 7 Regula Falsi and Secant Methods

Numerical Methods Dr. Sanjeev Kumar Department of Mathematics Indian Institute of Technology Roorkee Lecture No 7 Regula Falsi and Secant Methods Numerical Methods Dr. Sanjeev Kumar Department of Mathematics Indian Institute of Technology Roorkee Lecture No 7 Regula Falsi and Secant Methods So welcome to the next lecture of the 2 nd unit of this

More information

Introduction to Numerical Analysis

Introduction to Numerical Analysis Introduction to Numerical Analysis S. Baskar and S. Sivaji Ganesh Department of Mathematics Indian Institute of Technology Bombay Powai, Mumbai 400 076. Introduction to Numerical Analysis Lecture Notes

More information

MATH 1902: Mathematics for the Physical Sciences I

MATH 1902: Mathematics for the Physical Sciences I MATH 1902: Mathematics for the Physical Sciences I Dr Dana Mackey School of Mathematical Sciences Room A305 A Email: Dana.Mackey@dit.ie Dana Mackey (DIT) MATH 1902 1 / 46 Module content/assessment Functions

More information

cha1873x_p02.qxd 3/21/05 1:01 PM Page 104 PART TWO

cha1873x_p02.qxd 3/21/05 1:01 PM Page 104 PART TWO cha1873x_p02.qxd 3/21/05 1:01 PM Page 104 PART TWO ROOTS OF EQUATIONS PT2.1 MOTIVATION Years ago, you learned to use the quadratic formula x = b ± b 2 4ac 2a to solve f(x) = ax 2 + bx + c = 0 (PT2.1) (PT2.2)

More information

Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2018 3 Lecture 3 3.1 General remarks March 4, 2018 This

More information

Roots of Equations. ITCS 4133/5133: Introduction to Numerical Methods 1 Roots of Equations

Roots of Equations. ITCS 4133/5133: Introduction to Numerical Methods 1 Roots of Equations Roots of Equations Direct Search, Bisection Methods Regula Falsi, Secant Methods Newton-Raphson Method Zeros of Polynomials (Horner s, Muller s methods) EigenValue Analysis ITCS 4133/5133: Introduction

More information

Determining the Roots of Non-Linear Equations Part I

Determining the Roots of Non-Linear Equations Part I Determining the Roots of Non-Linear Equations Part I Prof. Dr. Florian Rupp German University of Technology in Oman (GUtech) Introduction to Numerical Methods for ENG & CS (Mathematics IV) Spring Term

More information

THE SECANT METHOD. q(x) = a 0 + a 1 x. with

THE SECANT METHOD. q(x) = a 0 + a 1 x. with THE SECANT METHOD Newton s method was based on using the line tangent to the curve of y = f (x), with the point of tangency (x 0, f (x 0 )). When x 0 α, the graph of the tangent line is approximately the

More information

8.5 Taylor Polynomials and Taylor Series

8.5 Taylor Polynomials and Taylor Series 8.5. TAYLOR POLYNOMIALS AND TAYLOR SERIES 50 8.5 Taylor Polynomials and Taylor Series Motivating Questions In this section, we strive to understand the ideas generated by the following important questions:

More information

Nonlinear Equations. Chapter The Bisection Method

Nonlinear Equations. Chapter The Bisection Method Chapter 6 Nonlinear Equations Given a nonlinear function f(), a value r such that f(r) = 0, is called a root or a zero of f() For eample, for f() = e 016064, Fig?? gives the set of points satisfying y

More information

This page intentionally left blank

This page intentionally left blank This page intentionally left blank Copyright 009, New Age International () td, ublishers ublished by New Age International () td, ublishers All rights reserved No part of this ebook may be reproduced

More information

Chapter 1. Numerical Errors. Module No. 3. Operators in Numerical Analysis

Chapter 1. Numerical Errors. Module No. 3. Operators in Numerical Analysis Numerical Analysis by Dr. Anita Pal Assistant Professor Department of Mathematics National Institute of Technology Durgapur Durgapur-71309 email: anita.buie@gmail.com . Chapter 1 Numerical Errors Module

More information

SBAME CALCULUS OF FINITE DIFFERENCES AND NUMERICAL ANLAYSIS-I Units : I-V

SBAME CALCULUS OF FINITE DIFFERENCES AND NUMERICAL ANLAYSIS-I Units : I-V SBAME CALCULUS OF FINITE DIFFERENCES AND NUMERICAL ANLAYSIS-I Units : I-V Unit I-Syllabus Solutions of Algebraic and Transcendental equations, Bisection method, Iteration Method, Regula Falsi method, Newton

More information

2. Theory of the Derivative

2. Theory of the Derivative 2. Theory of the Derivative 2.1 Tangent Lines 2.2 Definition of Derivative 2.3 Rates of Change 2.4 Derivative Rules 2.5 Higher Order Derivatives 2.6 Implicit Differentiation 2.7 L Hôpital s Rule 2.8 Some

More information

Infinite series, improper integrals, and Taylor series

Infinite series, improper integrals, and Taylor series Chapter 2 Infinite series, improper integrals, and Taylor series 2. Introduction to series In studying calculus, we have explored a variety of functions. Among the most basic are polynomials, i.e. functions

More information

Numerical Analysis MTH603. Virtual University of Pakistan Knowledge beyond the boundaries

Numerical Analysis MTH603. Virtual University of Pakistan Knowledge beyond the boundaries Numerical Analysis MTH6 Virtual University of Pakistan Knowledge beyond the boundaries Table of Contents Lecture # Topics Page # Lecture Introduction Lecture Errors in Computations 6 Lecture Solution of

More information

Chapter 8. Numerical Solution of Ordinary Differential Equations. Module No. 1. Runge-Kutta Methods

Chapter 8. Numerical Solution of Ordinary Differential Equations. Module No. 1. Runge-Kutta Methods Numerical Analysis by Dr. Anita Pal Assistant Professor Department of Mathematics National Institute of Technology Durgapur Durgapur-71309 email: anita.buie@gmail.com 1 . Chapter 8 Numerical Solution of

More information

Chapter 11. Taylor Series. Josef Leydold Mathematical Methods WS 2018/19 11 Taylor Series 1 / 27

Chapter 11. Taylor Series. Josef Leydold Mathematical Methods WS 2018/19 11 Taylor Series 1 / 27 Chapter 11 Taylor Series Josef Leydold Mathematical Methods WS 2018/19 11 Taylor Series 1 / 27 First-Order Approximation We want to approximate function f by some simple function. Best possible approximation

More information

Solving nonlinear equations (See online notes and lecture notes for full details) 1.3: Newton s Method

Solving nonlinear equations (See online notes and lecture notes for full details) 1.3: Newton s Method Solving nonlinear equations (See online notes and lecture notes for full details) 1.3: Newton s Method MA385 Numerical Analysis September 2018 (1/16) Sir Isaac Newton, 1643-1727, England. Easily one of

More information

MA 8019: Numerical Analysis I Solution of Nonlinear Equations

MA 8019: Numerical Analysis I Solution of Nonlinear Equations MA 8019: Numerical Analysis I Solution of Nonlinear Equations Suh-Yuh Yang ( 楊肅煜 ) Department of Mathematics, National Central University Jhongli District, Taoyuan City 32001, Taiwan syyang@math.ncu.edu.tw

More information

Numerical Methods in Informatics

Numerical Methods in Informatics Numerical Methods in Informatics Lecture 2, 30.09.2016: Nonlinear Equations in One Variable http://www.math.uzh.ch/binf4232 Tulin Kaman Institute of Mathematics, University of Zurich E-mail: tulin.kaman@math.uzh.ch

More information

Numerical Methods I Solving Nonlinear Equations

Numerical Methods I Solving Nonlinear Equations Numerical Methods I Solving Nonlinear Equations Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 MATH-GA 2011.003 / CSCI-GA 2945.003, Fall 2014 October 16th, 2014 A. Donev (Courant Institute)

More information

Math 471. Numerical methods Root-finding algorithms for nonlinear equations

Math 471. Numerical methods Root-finding algorithms for nonlinear equations Math 471. Numerical methods Root-finding algorithms for nonlinear equations overlap Section.1.5 of Bradie Our goal in this chapter is to find the root(s) for f(x) = 0..1 Bisection Method Intermediate value

More information

The Derivative of a Function Measuring Rates of Change of a function. Secant line. f(x) f(x 0 ) Average rate of change of with respect to over,

The Derivative of a Function Measuring Rates of Change of a function. Secant line. f(x) f(x 0 ) Average rate of change of with respect to over, The Derivative of a Function Measuring Rates of Change of a function y f(x) f(x 0 ) P Q Secant line x 0 x x Average rate of change of with respect to over, " " " " - Slope of secant line through, and,

More information

Root Finding For NonLinear Equations Bisection Method

Root Finding For NonLinear Equations Bisection Method Root Finding For NonLinear Equations Bisection Method P. Sam Johnson November 17, 2014 P. Sam Johnson (NITK) Root Finding For NonLinear Equations Bisection MethodNovember 17, 2014 1 / 26 Introduction The

More information

function independent dependent domain range graph of the function The Vertical Line Test

function independent dependent domain range graph of the function The Vertical Line Test Functions A quantity y is a function of another quantity x if there is some rule (an algebraic equation, a graph, a table, or as an English description) by which a unique value is assigned to y by a corresponding

More information

Chapter 3: Root Finding. September 26, 2005

Chapter 3: Root Finding. September 26, 2005 Chapter 3: Root Finding September 26, 2005 Outline 1 Root Finding 2 3.1 The Bisection Method 3 3.2 Newton s Method: Derivation and Examples 4 3.3 How To Stop Newton s Method 5 3.4 Application: Division

More information

JUST THE MATHS UNIT NUMBER DIFFERENTIATION APPLICATIONS 5 (Maclaurin s and Taylor s series) A.J.Hobson

JUST THE MATHS UNIT NUMBER DIFFERENTIATION APPLICATIONS 5 (Maclaurin s and Taylor s series) A.J.Hobson JUST THE MATHS UNIT NUMBER.5 DIFFERENTIATION APPLICATIONS 5 (Maclaurin s and Taylor s series) by A.J.Hobson.5. Maclaurin s series.5. Standard series.5.3 Taylor s series.5.4 Exercises.5.5 Answers to exercises

More information

Generalization Of The Secant Method For Nonlinear Equations

Generalization Of The Secant Method For Nonlinear Equations Applied Mathematics E-Notes, 8(2008), 115-123 c ISSN 1607-2510 Available free at mirror sites of http://www.math.nthu.edu.tw/ amen/ Generalization Of The Secant Method For Nonlinear Equations Avram Sidi

More information

Ma 530 Power Series II

Ma 530 Power Series II Ma 530 Power Series II Please note that there is material on power series at Visual Calculus. Some of this material was used as part of the presentation of the topics that follow. Operations on Power Series

More information

Hence a root lies between 1 and 2. Since f a is negative and f(x 0 ) is positive The root lies between a and x 0 i.e. 1 and 1.

Hence a root lies between 1 and 2. Since f a is negative and f(x 0 ) is positive The root lies between a and x 0 i.e. 1 and 1. The Bisection method or BOLZANO s method or Interval halving method: Find the positive root of x 3 x = 1 correct to four decimal places by bisection method Let f x = x 3 x 1 Here f 0 = 1 = ve, f 1 = ve,

More information

OCR A2 Level Mathematics Core Mathematics Scheme of Work

OCR A2 Level Mathematics Core Mathematics Scheme of Work OCR A Level Mathematics Core Mathematics Scheme of Work Examination in June of Year 13 The Solomen press worksheets are an excellent resource and incorporated into the SOW NUMERICAL METHODS (6 ) (Solomen

More information

Solutions of Equations in One Variable. Newton s Method

Solutions of Equations in One Variable. Newton s Method Solutions of Equations in One Variable Newton s Method Numerical Analysis (9th Edition) R L Burden & J D Faires Beamer Presentation Slides prepared by John Carroll Dublin City University c 2011 Brooks/Cole,

More information

Lecture Notes to Accompany. Scientific Computing An Introductory Survey. by Michael T. Heath. Chapter 5. Nonlinear Equations

Lecture Notes to Accompany. Scientific Computing An Introductory Survey. by Michael T. Heath. Chapter 5. Nonlinear Equations Lecture Notes to Accompany Scientific Computing An Introductory Survey Second Edition by Michael T Heath Chapter 5 Nonlinear Equations Copyright c 2001 Reproduction permitted only for noncommercial, educational

More information

Root Finding Methods for Nonlinear Equations

Root Finding Methods for Nonlinear Equations Root Finding Methods for Nonlinear Equations Dr. Sukanta Deb Department of Physics Cotton College State University College Hostel Road, Panbazar Guwahati, Pin 781001 Assam 1 Learning Objectives: Numerical

More information

INTRODUCTION TO NUMERICAL ANALYSIS

INTRODUCTION TO NUMERICAL ANALYSIS INTRODUCTION TO NUMERICAL ANALYSIS Cho, Hyoung Kyu Department of Nuclear Engineering Seoul National University 3. SOLVING NONLINEAR EQUATIONS 3.1 Background 3.2 Estimation of errors in numerical solutions

More information

Figure 1: Graph of y = x cos(x)

Figure 1: Graph of y = x cos(x) Chapter The Solution of Nonlinear Equations f(x) = 0 In this chapter we will study methods for find the solutions of functions of single variables, ie values of x such that f(x) = 0 For example, f(x) =

More information

Today s class. Numerical differentiation Roots of equation Bracketing methods. Numerical Methods, Fall 2011 Lecture 4. Prof. Jinbo Bi CSE, UConn

Today s class. Numerical differentiation Roots of equation Bracketing methods. Numerical Methods, Fall 2011 Lecture 4. Prof. Jinbo Bi CSE, UConn Today s class Numerical differentiation Roots of equation Bracketing methods 1 Numerical Differentiation Finite divided difference First forward difference First backward difference Lecture 3 2 Numerical

More information

Integration, differentiation, and root finding. Phys 420/580 Lecture 7

Integration, differentiation, and root finding. Phys 420/580 Lecture 7 Integration, differentiation, and root finding Phys 420/580 Lecture 7 Numerical integration Compute an approximation to the definite integral I = b Find area under the curve in the interval Trapezoid Rule:

More information

Convergence of sequences and series

Convergence of sequences and series Convergence of sequences and series A sequence f is a map from N the positive integers to a set. We often write the map outputs as f n rather than f(n). Often we just list the outputs in order and leave

More information

CE 205 Numerical Methods. Some of the analysis methods you have used so far.. Algebra Calculus Differential Equations etc.

CE 205 Numerical Methods. Some of the analysis methods you have used so far.. Algebra Calculus Differential Equations etc. CE 205 Numerical Methods Dr. Charisma Choudhury Lecture 1 March 30, 2009 Objective Some of the analysis methods you have used so far.. Algebra Calculus Differential Equations etc. Often not possible to

More information

Chapter 12: Differentiation. SSMth2: Basic Calculus Science and Technology, Engineering and Mathematics (STEM) Strands Mr. Migo M.

Chapter 12: Differentiation. SSMth2: Basic Calculus Science and Technology, Engineering and Mathematics (STEM) Strands Mr. Migo M. Chapter 12: Differentiation SSMth2: Basic Calculus Science and Technology, Engineering and Mathematics (STEM) Strands Mr. Migo M. Mendoza Chapter 12: Differentiation Lecture 12.1: The Derivative Lecture

More information

Outline. Scientific Computing: An Introductory Survey. Nonlinear Equations. Nonlinear Equations. Examples: Nonlinear Equations

Outline. Scientific Computing: An Introductory Survey. Nonlinear Equations. Nonlinear Equations. Examples: Nonlinear Equations Methods for Systems of Methods for Systems of Outline Scientific Computing: An Introductory Survey Chapter 5 1 Prof. Michael T. Heath Department of Computer Science University of Illinois at Urbana-Champaign

More information

Chapter 2 Solutions of Equations of One Variable

Chapter 2 Solutions of Equations of One Variable Chapter 2 Solutions of Equations of One Variable 2.1 Bisection Method In this chapter we consider one of the most basic problems of numerical approximation, the root-finding problem. This process involves

More information

Convergence Tests. Academic Resource Center

Convergence Tests. Academic Resource Center Convergence Tests Academic Resource Center Series Given a sequence {a 0, a, a 2,, a n } The sum of the series, S n = A series is convergent if, as n gets larger and larger, S n goes to some finite number.

More information

DIFFERENTIATION RULES

DIFFERENTIATION RULES 3 DIFFERENTIATION RULES DIFFERENTIATION RULES We have: Seen how to interpret derivatives as slopes and rates of change Seen how to estimate derivatives of functions given by tables of values Learned how

More information

Lecture 39: Root Finding via Newton s Method

Lecture 39: Root Finding via Newton s Method Lecture 39: Root Finding via Newton s Method We have studied two braceting methods for finding zeros of a function, bisection and regula falsi. These methods have certain virtues (most importantly, they

More information

Line Search Methods. Shefali Kulkarni-Thaker

Line Search Methods. Shefali Kulkarni-Thaker 1 BISECTION METHOD Line Search Methods Shefali Kulkarni-Thaker Consider the following unconstrained optimization problem min f(x) x R Any optimization algorithm starts by an initial point x 0 and performs

More information

Numerical Solution of f(x) = 0

Numerical Solution of f(x) = 0 Numerical Solution of f(x) = 0 Gerald W. Recktenwald Department of Mechanical Engineering Portland State University gerry@pdx.edu ME 350: Finding roots of f(x) = 0 Overview Topics covered in these slides

More information

Trigonometry Self-study: Reading: Red Bostock and Chandler p , p , p

Trigonometry Self-study: Reading: Red Bostock and Chandler p , p , p Trigonometry Self-study: Reading: Red Bostock Chler p137-151, p157-234, p244-254 Trigonometric functions be familiar with the six trigonometric functions, i.e. sine, cosine, tangent, cosecant, secant,

More information

Practical Numerical Analysis: Sheet 3 Solutions

Practical Numerical Analysis: Sheet 3 Solutions Practical Numerical Analysis: Sheet 3 Solutions 1. We need to compute the roots of the function defined by f(x) = sin(x) + sin(x 2 ) on the interval [0, 3] using different numerical methods. First we consider

More information

Scientific Computing. Roots of Equations

Scientific Computing. Roots of Equations ECE257 Numerical Methods and Scientific Computing Roots of Equations Today s s class: Roots of Equations Polynomials Polynomials A polynomial is of the form: ( x) = a 0 + a 1 x + a 2 x 2 +L+ a n x n f

More information

SYSTEMS OF NONLINEAR EQUATIONS

SYSTEMS OF NONLINEAR EQUATIONS SYSTEMS OF NONLINEAR EQUATIONS Widely used in the mathematical modeling of real world phenomena. We introduce some numerical methods for their solution. For better intuition, we examine systems of two

More information

Core A-level mathematics reproduced from the QCA s Subject criteria for Mathematics document

Core A-level mathematics reproduced from the QCA s Subject criteria for Mathematics document Core A-level mathematics reproduced from the QCA s Subject criteria for Mathematics document Background knowledge: (a) The arithmetic of integers (including HCFs and LCMs), of fractions, and of real numbers.

More information

Section 3.7. Rolle s Theorem and the Mean Value Theorem

Section 3.7. Rolle s Theorem and the Mean Value Theorem Section.7 Rolle s Theorem and the Mean Value Theorem The two theorems which are at the heart of this section draw connections between the instantaneous rate of change and the average rate of change of

More information

Math 4329: Numerical Analysis Chapter 03: Newton s Method. Natasha S. Sharma, PhD

Math 4329: Numerical Analysis Chapter 03: Newton s Method. Natasha S. Sharma, PhD Mathematical question we are interested in numerically answering How to find the x-intercepts of a function f (x)? These x-intercepts are called the roots of the equation f (x) = 0. Notation: denote the

More information

Computational Methods CMSC/AMSC/MAPL 460. Solving nonlinear equations and zero finding. Finding zeroes of functions

Computational Methods CMSC/AMSC/MAPL 460. Solving nonlinear equations and zero finding. Finding zeroes of functions Computational Methods CMSC/AMSC/MAPL 460 Solving nonlinear equations and zero finding Ramani Duraiswami, Dept. of Computer Science Where does it arise? Finding zeroes of functions Solving functional equations

More information

Exact and Approximate Numbers:

Exact and Approximate Numbers: Eact and Approimate Numbers: The numbers that arise in technical applications are better described as eact numbers because there is not the sort of uncertainty in their values that was described above.

More information

Department of Applied Mathematics and Theoretical Physics. AMA 204 Numerical analysis. Exam Winter 2004

Department of Applied Mathematics and Theoretical Physics. AMA 204 Numerical analysis. Exam Winter 2004 Department of Applied Mathematics and Theoretical Physics AMA 204 Numerical analysis Exam Winter 2004 The best six answers will be credited All questions carry equal marks Answer all parts of each question

More information

Variable. Peter W. White Fall 2018 / Numerical Analysis. Department of Mathematics Tarleton State University

Variable. Peter W. White Fall 2018 / Numerical Analysis. Department of Mathematics Tarleton State University Newton s Iterative s Peter W. White white@tarleton.edu Department of Mathematics Tarleton State University Fall 2018 / Numerical Analysis Overview Newton s Iterative s Newton s Iterative s Newton s Iterative

More information

Numerical solutions of nonlinear systems of equations

Numerical solutions of nonlinear systems of equations Numerical solutions of nonlinear systems of equations Tsung-Ming Huang Department of Mathematics National Taiwan Normal University, Taiwan E-mail: min@math.ntnu.edu.tw August 28, 2011 Outline 1 Fixed points

More information

1 + lim. n n+1. f(x) = x + 1, x 1. and we check that f is increasing, instead. Using the quotient rule, we easily find that. 1 (x + 1) 1 x (x + 1) 2 =

1 + lim. n n+1. f(x) = x + 1, x 1. and we check that f is increasing, instead. Using the quotient rule, we easily find that. 1 (x + 1) 1 x (x + 1) 2 = Chapter 5 Sequences and series 5. Sequences Definition 5. (Sequence). A sequence is a function which is defined on the set N of natural numbers. Since such a function is uniquely determined by its values

More information

Topic Outline for Algebra 2 & and Trigonometry One Year Program

Topic Outline for Algebra 2 & and Trigonometry One Year Program Topic Outline for Algebra 2 & and Trigonometry One Year Program Algebra 2 & and Trigonometry - N - Semester 1 1. Rational Expressions 17 Days A. Factoring A2.A.7 B. Rationals A2.N.3 A2.A.17 A2.A.16 A2.A.23

More information

NAME: DATE: CLASS: AP CALCULUS AB SUMMER MATH 2018

NAME: DATE: CLASS: AP CALCULUS AB SUMMER MATH 2018 NAME: DATE: CLASS: AP CALCULUS AB SUMMER MATH 2018 A] Refer to your pre-calculus notebook, the internet, or the sheets/links provided for assistance. B] Do not wait until the last minute to complete this

More information

FIXED POINT ITERATION

FIXED POINT ITERATION FIXED POINT ITERATION The idea of the fixed point iteration methods is to first reformulate a equation to an equivalent fixed point problem: f (x) = 0 x = g(x) and then to use the iteration: with an initial

More information

COURSE Iterative methods for solving linear systems

COURSE Iterative methods for solving linear systems COURSE 0 4.3. Iterative methods for solving linear systems Because of round-off errors, direct methods become less efficient than iterative methods for large systems (>00 000 variables). An iterative scheme

More information

Math 1310 Final Exam

Math 1310 Final Exam Math 1310 Final Exam December 11, 2014 NAME: INSTRUCTOR: Write neatly and show all your work in the space provided below each question. You may use the back of the exam pages if you need additional space

More information

BEKG 2452 NUMERICAL METHODS Solution of Nonlinear Equations

BEKG 2452 NUMERICAL METHODS Solution of Nonlinear Equations BEKG 2452 NUMERICAL METHODS Solution of Nonlinear Equations Ser Lee Loh a, Wei Sen Loi a a Fakulti Kejuruteraan Elektrik Universiti Teknikal Malaysia Melaka Lesson Outcome Upon completion of this lesson,

More information