Newton’s Method for Systems of Non Linear Equations

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
Numeriska beräkningar i Naturvetenskap och Teknik 1.Solving equations.
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).
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.
Open Methods (Part 1) Fixed Point Iteration & Newton-Raphson Methods
Roots of Equations Bracketing Methods.
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.
ECIV 301 Programming & Graphics Numerical Methods for Engineers Lecture 9 Roots of Equations Open Methods.
Systems of Non-Linear Equations
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.
Fin500J: Mathematical Foundations in Finance Topic 3: Numerical Methods for Solving Non-linear Equations Philip H. Dybvig Reference: Numerical Methods.
Chapter 3 Root Finding.
Numerical Analysis 1 EE, NCKU Tien-Hao Chang (Darby Chang)
Secant Method Another Recursive Method. Secant Method The secant method is a recursive method used to find the solution to an equation like Newton’s Method.
MATH 685/ CSI 700/ OR 682 Lecture Notes Lecture 8. Nonlinear equations.
Solving Non-Linear Equations (Root Finding)
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.
Numerical Methods.
Numerical Methods Root Finding 4. Fixed-Point Iteration---- Successive Approximation Many problems also take on the specialized form: g(x)=x, where we.
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.
Solving Non-Linear Equations (Root Finding)
Numerical Methods Solution of Equation.
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’s Method Problem: need to solve an equation of the form f(x)=0. Graphically, the solutions correspond to the points of intersection of the.
6/13/ Secant Method Computer Engineering Majors Authors: Autar Kaw, Jai Paul
Solution of Nonlinear Equations ( Root Finding Problems ) Definitions Classification of Methods  Analytical Solutions  Graphical Methods  Numerical.
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.
Solution of Nonlinear Equations ( Root Finding Problems )
4 Numerical Methods Root Finding Secant Method Modified Secant
Secant Method.
CS B553: Algorithms for Optimization and Learning
Read Chapters 5 and 6 of the textbook
Part 2 Chapter 6 Roots: Open Methods
Secant Method – Derivation
Chapter 6.
Numerical Analysis Lecture 7.
Roots of equations Class VII.
Newton-Raphson Method
Computers in Civil Engineering 53:081 Spring 2003
Roots of equations Class IX.
MATH 2140 Numerical Methods
Lecture 10 Root Finding using Open Methods
Newton-Raphson Method
Systems of Nonlinear Equations
SOLUTION OF NONLINEAR EQUATIONS
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.
Finding zeros (also called roots) of a function
Newton’s Method and Its Extensions
Newton-Raphson Method
Chapter 6.
Solutions for Nonlinear Equations
Presentation transcript:

Newton’s Method for Systems of Non Linear Equations 7/4/2018 Newton’s Method for Systems of Non Linear Equations

7/4/2018 Example Solve the following system of equations:

Solution Using Newton’s Method 7/4/2018 Solution Using Newton’s Method

7/4/2018 Example Try this Solve the following system of equations:

7/4/2018 Example Solution

Comparison of Root Finding Methods 7/4/2018 Comparison of Root Finding Methods Advantages/disadvantages Examples

Summary Method Pros Cons Bisection Newton Secant 7/4/2018 Summary Method Pros Cons Bisection - Easy, Reliable, Convergent - One function evaluation per iteration - No knowledge of derivative is needed - Slow - Needs an interval [a,b] containing the root, i.e., f(a)f(b)<0 Newton - Fast (if near the root) - Two function evaluations per iteration - May diverge - Needs derivative and an initial guess x0 such that f’(x0) is nonzero Secant - Fast (slower than Newton) - One function evaluation per iteration - Needs two initial points guess x0, x1 such that f(x0)- f(x1) is nonzero

7/4/2018 Example

Solution _______________________________ k xk f(xk) 0 1.0000 -1.0000 7/4/2018 Solution _______________________________ k xk f(xk) 0 1.0000 -1.0000 1 1.5000 8.8906 2 1.0506 -0.7062 3 1.0836 -0.4645 4 1.1472 0.1321 5 1.1331 -0.0165 6 1.1347 -0.0005

7/4/2018 Example

Five Iterations of the Solution 7/4/2018 Five Iterations of the Solution k xk f(xk) f’(xk) ERROR ______________________________________ 0 1.0000 -1.0000 2.0000 1 1.5000 0.8750 5.7500 0.1522 2 1.3478 0.1007 4.4499 0.0226 3 1.3252 0.0021 4.2685 0.0005 4 1.3247 0.0000 4.2646 0.0000 5 1.3247 0.0000 4.2646 0.0000

7/4/2018 Example

7/4/2018 Example

Example Estimates of the root of: x-cos(x)=0. 7/4/2018 Example Estimates of the root of: x-cos(x)=0. 0.60000000000000 Initial guess 0.74401731944598 1 correct digit 0.73909047688624 4 correct digits 0.73908513322147 10 correct digits 0.73908513321516 14 correct digits

7/4/2018 Example In estimating the root of: x-cos(x)=0, to get more than 13 correct digits: 4 iterations of Newton (x0=0.8) 43 iterations of Bisection method (initial interval [0.6, 0.8]) 5 iterations of Secant method ( x0=0.6, x1=0.8)