ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 8 Roots of Equations Open Methods.

Slides:



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

Chapter 6: Roots: Open Methods
Lecture 5 Newton-Raphson Method
Numerical Solution of Nonlinear Equations
CSE 330: Numerical Methods
Open Methods Chapter 6 The Islamic University of Gaza
ROOTS OF EQUATIONS Student Notes ENGR 351 Numerical Methods for Engineers Southern Illinois University Carbondale College of Engineering Dr. L.R. Chevalier.
Engineering Computation
Open Methods Chapter 6 The Islamic University of Gaza
Open Methods Chapter 6 The Islamic University of Gaza
Nonlinear Equations Your nonlinearity confuses me “The problem of not knowing what we missed is that we believe we haven't missed anything” – Stephen Chew.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 7 Roots of Equations Bracketing Methods.
Roots of Equations Open Methods (Part 2).
Chapter 6 Open Methods.
Lecture #18 EEE 574 Dr. Dan Tylavsky Nonlinear Problem Solvers.
Second Term 05/061 Roots of Equations Bracketing Methods.
A few words about convergence We have been looking at e a as our measure of convergence A more technical means of differentiating the speed of convergence.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 6 Roots of Equations Bracketing Methods.
Open Methods (Part 1) Fixed Point Iteration & Newton-Raphson Methods
Roots of Equations Bracketing Methods.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 20 Solution of Linear System of Equations - Iterative Methods.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 19 Solution of Linear System of Equations - Iterative Methods.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 9 Roots of Equations Open Methods.
Open Methods Chapter 6 The Islamic University of Gaza
Lecture Notes Dr. Rakhmad Arief Siregar Universiti Malaysia Perlis
Bracketing Methods Chapter 5 The Islamic University of Gaza
Roots of Equations Open Methods Second Term 05/06.
Fin500J: Mathematical Foundations in Finance Topic 3: Numerical Methods for Solving Non-linear Equations Philip H. Dybvig Reference: Numerical Methods.
8/30/ Secant Method Major: All Engineering Majors Authors: Autar Kaw, Jai Paul
Solving Non-Linear Equations (Root Finding)
Newton-Raphson Method Electrical Engineering Majors Authors: Autar Kaw, Jai Paul Transforming Numerical Methods Education.
Newton-Raphson Method
9/20/ Secant Method Civil Engineering Majors Authors: Autar Kaw, Jai Paul
Lecture Notes Dr. Rakhmad Arief Siregar Universiti Malaysia Perlis
Newton-Raphson Method Chemical Engineering Majors Authors: Autar Kaw, Jai Paul Transforming Numerical Methods Education.
Lecture 6 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Chapter 3 Roots of Equations. Objectives Understanding what roots problems are and where they occur in engineering and science Knowing how to determine.
Numerical Methods for Engineering MECN 3500
11/30/ Secant Method Industrial Engineering Majors Authors: Autar Kaw, Jai Paul
Numerical Methods Root Finding 4. Fixed-Point Iteration---- Successive Approximation Many problems also take on the specialized form: g(x)=x, where we.
Today’s class Roots of equation Finish up incremental search
MECN 3500 Inter - Bayamon Lecture 6 Numerical Methods for Engineering MECN 3500 Professor: Dr. Omar E. Meza Castillo
4 Numerical Methods Root Finding Secant Method Modified Secant
Newton-Raphson Method. Figure 1 Geometrical illustration of the Newton-Raphson method. 2.
ROOTS OF EQUATIONS. Bracketing Methods The Bisection Method The False-Position Method Open Methods Simple Fixed-Point Iteration The Secant Method.
Lecture 5 - Single Variable Problems CVEN 302 June 12, 2002.
The Islamic University of Gaza Faculty of Engineering Civil Engineering Department Numerical Analysis ECIV 3306 Chapter 5 Bracketing Methods.
4 Numerical Methods Root Finding Secant Method Modified Secant
SOLVING NONLINEAR EQUATIONS. SECANT METHOD MATH-415 Numerical Analysis 1.
4 Numerical Methods Root Finding.
Newton-Raphson Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul Transforming Numerical Methods Education.
Yasser F. O. Mohammad Assiut University Egypt. Previously in NM Bracketing Methods Bisection False Position Fixed Point Iteration Local Convergence Methods.
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.
CSE 330: Numerical Methods. Introduction The bisection and false position method require bracketing of the root by two guesses Such methods are called.
Newton-Raphson Method
Newton-Raphson Method
Secant Method.
Newton’s Method for Systems of Non Linear Equations
CS B553: Algorithms for Optimization and Learning
Secant Method – Derivation
Newton-Raphson Method
Computers in Civil Engineering 53:081 Spring 2003
Lecture 10 Root Finding using Open Methods
Newton-Raphson Method
4 Numerical Methods Root Finding.
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-Raphson Method
Presentation transcript:

ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 8 Roots of Equations Open Methods

Last Time The Problem Define Function c must satisfy c is the ROOT of the equation

Last Time Classification Methods BracketingOpen Graphical Bisection Method False Position Fixed Point Iteration Newton-Raphson Secand

Last Time Bisection Method Repeat until convergence xlxl xuxu x r =0.5(x l +x u )

Last Time False Position Method f(x l ) f(x u ) xlxl xuxu xrxr

Last Time Bisection Method Check Convergence Root = If Error

Last Time Convergence

Objectives OPEN Methods –Fixed Point Iteration –Newton Raphson –Secant

Open Methods Bracketing Methods Two Initial Estimates Needed that bracket the root Always Converge Open Methods ONE Initial Estimate Needed Sometimes Diverge

Fixed Point Iteration X root x is a root if f(x) = 0

Fixed Point Iteration X X f 1 (X) f 2 (X) +x+x +x+x f 1 (X)f 2 (X) root

Fixed Point Iteration X f 1 (X) f 2 (X) f 1 (X)f 2 (X) root x is a root if f 1 (x) = f 2 (x)

Fixed Point Iteration X f 1 (X) f 2 (X) Initial Guess New Guess root New Guess

Fixed Point Iteration X f 1 (X) f 2 (X) Initial Guess New Guess root New Guess Method Diverges

Condition for Convergence X f 1 (X) f 2 (X) New Guess

Newton Raphson X g(x) Initial Guess New Guess New Guess g’(x i )

Newton Raphson

Inflection Point in Vicinity of Root

Newton Raphson Persistent Oscillations near local max or min

Newton Raphson Initial guess close to root jumps several roots away

Newton Raphson Zero Derivative

Newton Raphson No Convergence Criteria Depends on Nature of Function Depends on Initial Guess Use Initial Guess Sufficiently Close to Root It converges very fast!! (when it does)

Homework (a),(b),(c) Due Date: September 22