Numerical Analysis Lecture 7.

Slides:



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

Chapter 6: Roots: Open Methods
Lecture 5 Newton-Raphson Method
Part 2 Chapter 6 Roots: Open Methods
Mathematics1 Mathematics 1 Applied Informatics Štefan BEREŽNÝ.
CSE 330: Numerical Methods
ROOTS OF EQUATIONS Student Notes ENGR 351 Numerical Methods for Engineers Southern Illinois University Carbondale College of Engineering Dr. L.R. Chevalier.
KFUPM SE301: Numerical Methods Topic 5: Interpolation Lectures 20-22:
Chapter 4 Roots of 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).
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
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.
Lectures on Numerical Methods 1 Numerical Methods Charudatt Kadolkar Copyright 2000 © Charudatt Kadolkar.
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.
Chapter 3 Root Finding.
Quadratic Theory Introduction This algebraic expression: x 2 + 2x + 1 is a polynomial of degree 2 Expressions like this in which the highest power of x.
Section 7.1 Extraction of Roots and Properties of Square Roots.
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.
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.
Lecture 3 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Continuing with Integrals of the Form: & Partial Fractions Chapter 7.3 & 7.4.
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.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. by Lale Yurttas, Texas A&M University Chapter 71.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Chapter 7.
Numerical Methods for Engineering MECN 3500
Numerical Methods.
CHAPTER 3 NUMERICAL METHODS
Lecture 22 Numerical Analysis. Chapter 5 Interpolation.
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 7 Roots of Polynomials.
Solving Non-Linear Equations (Root Finding)
Numerical Methods Solution of Equation.
4 Numerical Methods Root Finding Secant Method Modified Secant
Lecture 6 - Single Variable Problems & Systems of Equations CVEN 302 June 14, 2002.
SOLVING NONLINEAR EQUATIONS. SECANT METHOD MATH-415 Numerical Analysis 1.
Lecture 39 Numerical Analysis. Chapter 7 Ordinary Differential Equations.
Lecture 4 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
MATH 175: Numerical Analysis II Lecturer: Jomar Fajardo Rabajante IMSP, UPLB 2 nd Sem AY
Numerical Methods and Optimization C o u r s e 1 By Bharat R Chaudhari.
Answers for Review Questions for Lectures 1-4. Review Lectures 1-4 Problems Question 2. Derive a closed form for the estimate of the solution of the equation.
Copyright © The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 Part 2 / Chapter 5.
CHAPTER 3 NUMERICAL METHODS
Root Finding Methods Fish 559; Lecture 15 a.
Chapter 4 Quadratic Equations
Numerical Analysis Lecture 5.
Numerical Methods and Analysis
Newton’s Method for Systems of Non Linear Equations
PROGRAMME F11 DIFFERENTIATION.
MATH 2140 Numerical Methods
Part 2 / Chapter 5.
Solution of Equations by Iteration
Numerical Analysis Lecture 45.
Computers in Civil Engineering 53:081 Spring 2003
Numerical Analysis Lecture 16.
Numerical Analysis Lecture 23.
Copyright © Cengage Learning. All rights reserved.
4 Numerical Methods Root Finding.
Roots of Polynomials Chapter 7 The Islamic University of Gaza
Copyright © Cengage Learning. All rights reserved.
MATH 1910 Chapter 3 Section 8 Newton’s Method.
Presentation transcript:

Numerical Analysis Lecture 7

Solution of Non-Linear Equations Chapter 2 Solution of Non-Linear Equations

Introduction Bisection Method Regula-Falsi Method Method of iteration Newton - Raphson Method Secant Method Muller’s Method Graeffe’s Root Squaring Method

Secant Method

We choose x0, x1 close to the root ‘a’ of f (x) =0 such that f (x0) f(x1) As a next approximation x2 is obtained as the point of intersection of y = 0 and the chord passing through the points (x0, f(x0 )), (x1 f(x1 )).

Putting y = 0 we get Generally This sequence converges to the root ‘b’ of f (x) = 0 i.e. f( b ) = 0.

Convergence of Secant Method Here the sequence is generated by the rule starting with x0 and x1 as It will converge to ‘a’ ,that is f ( a ) = 0

The Secant method converges faster than linear and slower than Newton’s quadratic.

Example Do three iterations of secant method to find the root of taking

Though X5 is not the true root, yet this is good approximation to the root and convergence is faster than bisection.

Comparison: In secant method, we do not check whether the root lies in between two successive approximates Xn-1, and Xn. This checking was imposed after each iteration, in Regula –Falsi method.

Muller’s Method

In Muller’s method, f (x) = 0 is approximated by a second degree polynomial; that is by a quadratic equation that fits through three points in the vicinity of a root. The roots of this quadratic equation are then approximated to the roots of the equation f (x) = 0.

This method is iterative in nature and does not require the evaluation of derivatives as in Newton-Raphson method. This method can also be used to determine both real and complex roots of f (x) = 0.

Suppose, be any three distinct approximations to a root of f (x) = 0.

Noting that any three distinct points in the (x, y)-plane uniquely, determine a polynomial of second degree. A general polynomial of second degree is given by

Suppose, it passes through the points then the following equations will be satisfied

Fig: Quadratic polynomial.

Eliminating a, b, c, we obtain

which can be written as

The above equation can be written as That was a second degree polynomial. Now, introducing the notation The above equation can be written as

The above equation can be written as

We further define

With these substitution we get a simplified Equation as

Or

To compute set f = 0, we obtain where A direct solution will lead to loss of accuracy and therefore to obtain max accuracy we rewrite as:

so that, or Here, the positive sign must be so chosen that the denominator becomes largest in magnitude.

we can get a better approximation to the root, by using

Example Find the root of the equation x3 – x–1 = 0 using Muller’s method.

Numerical Analysis Lecture 7