MATH 577http://amadeus.math.iit.edu/~fass1 3.2 The Secant Method Recall Newton’s method Main drawbacks: requires coding of the derivative requires evaluation.

Slides:



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

Numerical Computation Lecture 4: Root Finding Methods - II United International College.
Chapter 6: Roots: Open Methods
Lecture 5 Newton-Raphson Method
Part 2 Chapter 6 Roots: Open Methods
CSE 330: Numerical Methods
Newton’s Method finds Zeros Efficiently finds Zeros of an equation: –Solves f(x)=0 Why do we care?
Numeriska beräkningar i Naturvetenskap och Teknik 1.Solving equations.
ROOTS OF EQUATIONS Student Notes ENGR 351 Numerical Methods for Engineers Southern Illinois University Carbondale College of Engineering Dr. L.R. Chevalier.
What’s Your Guess? Chapter 9: Review of Convergent or Divergent Series.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 51.
Roots of Equations Open Methods (Part 2).
Open Methods (Part 1) Fixed Point Iteration & Newton-Raphson Methods
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 9 Roots of Equations Open Methods.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Martin Mendez UASLP Chapter 61 Unit II.
NUMERICAL METHODS WITH C++ PROGRAMMING
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 8 Roots of Equations Open Methods.
Roots of Equations Open Methods Second Term 05/06.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 10 Roots of Polynomials.
Chapter 3 Root Finding.
1 Chapter 6 Numerical Methods for Ordinary Differential Equations.
Numerical Analysis 1 EE, NCKU Tien-Hao Chang (Darby Chang)
Chapter 4 Roots of Polynomials.
Roots of Equations Chapter 3. Roots of Equations Also called “zeroes” of the equation –A value x such that f(x) = 0 Extremely important in applications.
MATH 685/ CSI 700/ OR 682 Lecture Notes Lecture 8. Nonlinear equations.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 2 Roots of Equations Why? But.
Lecture 8 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
MA/CS 375 Fall MA/CS 375 Fall 2002 Lecture 31.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Roots of Equations ~ Open Methods Chapter 6 Credit:
MATH 31 LESSONS Chapter 4: Max / Min Chapter 5: Sketching 3. Sketching Polynomials.
1 Nonlinear Equations Jyun-Ming Chen. 2 Contents Bisection False Position Newton Quasi-Newton Inverse Interpolation Method Comparison.
Lecture 6 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Graphics Graphics Korea University kucg.korea.ac.kr 2. Solving Equations of One Variable Korea University Computer Graphics Lab. Lee Seung Ho / Shin.
Problem of the Day No calculator! What is the instantaneous rate of change at x = 2 of f(x) = x2 - 2 ? x - 1 A) -2 C) 1/2 E) 6 B) 1/6 D) 2.
Newton’s Method, Root Finding with MATLAB and Excel
Applied Numerical Methods
ROOTS OF EQUATIONS. Bracketing Methods The Bisection Method The False-Position Method Open Methods Simple Fixed-Point Iteration The Secant Method.
Solving Non-Linear Equations (Root Finding)
Numerical Methods Solution of Equation.
Aim: How do we find the derivative by limit process? Do Now: Find the slope of the secant line in terms of x and h. y x (x, f(x)) (x + h, f(x + h)) h.
SOLVING NONLINEAR EQUATIONS. SECANT METHOD MATH-415 Numerical Analysis 1.
Yasser F. O. Mohammad Assiut University Egypt. Previously in NM Bracketing Methods Bisection False Position Fixed Point Iteration Local Convergence Methods.
Addition Math Facts = 9. Addition Math Facts = 1 5.
6/13/ Secant Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul
Project on Newton’s Iteration Method Presented by Dol Nath Khanal Project Advisor- Professor Dexuan Xie 05/11/2015.
Assignment 1: due 1/19/16 Estimate all of the zero of x3-x2-2x+1 graphically. Write a MatLab code for Newton’s method. Use your code to refine the graphical.
 The equation with one variable. At P(atm) equals 0.5 atm, What is T ? ? ?
MATH342: Numerical Analysis Sunjae Kim.
CSE 330: Numerical Methods. Introduction The bisection and false position method require bracketing of the root by two guesses Such methods are called.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 2 / Chapter 5.
Math Facts.
Secant Method.
Newton’s Method for Systems of Non Linear Equations
CS B553: Algorithms for Optimization and Learning
Boundary-Value Problems for ODE )בעיות הגבול(
Secant Method – Derivation
MATH 2140 Numerical Methods
Solution of Equations by Iteration
Numerical Analysis Lecture 7.
Computers in Civil Engineering 53:081 Spring 2003
4 Numerical Methods Root Finding.
Addition Math Facts (Facts to 10, 15, & 20)
ROOTS OF EQUATIONS.
3.8 Newton’s Method How do you find a root of the following function without a graphing calculator? This is what Newton did.
Newton’s Method and Its Extensions
Lecture 11 Graphics ChE 310.
MATH 175: Numerical Analysis II
MATH 1910 Chapter 3 Section 8 Newton’s Method.
EE, NCKU Tien-Hao Chang (Darby Chang)
Presentation transcript:

MATH 577http://amadeus.math.iit.edu/~fass1 3.2 The Secant Method Recall Newton’s method Main drawbacks: requires coding of the derivative requires evaluation of and in every iteration Work-around Approximate derivative with difference quotient:

MATH 577http://amadeus.math.iit.edu/~fass2 Secant Method

MATH 577http://amadeus.math.iit.edu/~fass3 Graphical Interpretation

MATH 577http://amadeus.math.iit.edu/~fass4 Graphical Interpretation

MATH 577http://amadeus.math.iit.edu/~fass5 Convergence Analysis

MATH 577http://amadeus.math.iit.edu/~fass6 Proof of Theorem 3.2

MATH 577http://amadeus.math.iit.edu/~fass7 Proof of Theorem 3.2 (cont.)

MATH 577http://amadeus.math.iit.edu/~fass8 Proof of Theorem 3.2 (cont.)

MATH 577http://amadeus.math.iit.edu/~fass9 Proof of Theorem 3.2 (cont.)

MATH 577http://amadeus.math.iit.edu/~fass10 Proof of Theorem 3.2 (cont.) earlier formula

MATH 577http://amadeus.math.iit.edu/~fass11 Proof of Theorem 3.2 (Exact order)

MATH 577http://amadeus.math.iit.edu/~fass12 Proof of Theorem 3.2 (Exact order) (*)(*):

MATH 577http://amadeus.math.iit.edu/~fass13 Proof of Theorem 3.2 (Exact order)

MATH 577http://amadeus.math.iit.edu/~fass14 Proof of Theorem 3.2 (Exact order) (cf. Theorem)Theorem

MATH 577http://amadeus.math.iit.edu/~fass15 Comparison of Root Finding Methods Other facts: bisection method always converges Newton’s method requires coding of derivative

MATH 577http://amadeus.math.iit.edu/~fass16 Newton vs. Secant (“Fair” Comparison)

MATH 577http://amadeus.math.iit.edu/~fass17 Generalizations of the Secant Method

MATH 577http://amadeus.math.iit.edu/~fass18 Müller’s Method

MATH 577http://amadeus.math.iit.edu/~fass19 Müller’s Method (cont.) Features: Can locate complex roots (even with real initial guesses) Convergence rate  =1.84 Explicit formula rather lengthy (can be derived with more knowledge on interpolation – see Chapter 6)