Newton’s Method Other Recursive Methods Modified Fixed Point Method.

Slides:



Advertisements
Similar presentations
X and Y Intercepts.
Advertisements

P.6 Zeros of Functions.
X and Y intercepts. X-intercept: The point where a line crosses the x-axis. The coordinates are ( x, 0) where x is any number on the x-axis Y-intercept:
Finding x- and y-intercepts algebraically
Chapter 6: Roots: Open Methods
Part 2 Chapter 6 Roots: Open Methods
Regula-Falsi Method. Type of Algorithm (Equation Solver) The Regula-Falsi Method (sometimes called the False Position Method) is a method used to find.
Bisection Method (Midpoint Method for Equations).
Error Measurement and Iterative Methods
Roots of Equations Open Methods (Part 2).
Notes, part 5. L’Hospital Another useful technique for computing limits is L'Hospital's rule: Basic version: If, then provided the latter exists. This.
The Derivative. Objectives Students will be able to Use the “Newton’s Quotient and limits” process to calculate the derivative of a function. Determine.
Numerical Solutions of Differential Equations Taylor Methods.
FP1: Chapter 2 Numerical Solutions of Equations
Intro To Algebra By: Carolyn Barone.
Table of Contents First, isolate the term containing the radical. Equation Containing Radicals: Solving Algebraically Example 1 (one radical): Solve Next,
The Real Zeros of a Polynomial Function
Dividing Polynomials.
Chapter 2: Equations and Inequalities 2.4: Other Types of Equations
Quadratic Equations Algebra I. Vocabulary Solutions – Called roots, zeros or x intercepts. The point(s) where the parabola crosses the x axis. Minimum.
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.
To get derivatives of inverse trigonometric functions we were able to use implicit differentiation. Sometimes it is not possible/plausible to explicitly.
Continuity ( Section 1.8) Alex Karassev. Definition A function f is continuous at a number a if Thus, we can use direct substitution to compute the limit.
Imaginary & Complex Numbers 5-3 English Casbarro Unit 5: Polynomials.
2-5: Imaginary & Complex Numbers Unit 2 English Casbarro.
Polynomials Expressions like 3x 4 + 2x 3 – 6x and m 6 – 4m 2 +3 are called polynomials. (5x – 2)(2x+3) is also a polynomial as it can be written.
Chapter 3 Roots of Equations. Objectives Understanding what roots problems are and where they occur in engineering and science Knowing how to determine.
To get derivatives of inverse trigonometric functions we were able to use implicit differentiation. Sometimes it is not possible/plausible to explicitly.
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.
Numerical Methods.
CHAPTER 3 NUMERICAL METHODS
Warm ups 1. The relation defined by the set of ordered pairs below is not a function. Which pair could be removed to obtain a function?? {(-5,1) (2,3)
(409)539-MATH THE MATH ACADEMY (409)539-MATH.
4 Numerical Methods Root Finding Secant Method Modified Secant
LINEARIZATION AND NEWTON’S METHOD Section 4.5. Linearization Algebraically, the principle of local linearity means that the equation of the tangent.
Linearization and Newton’s Method. I. Linearization A.) Def. – If f is differentiable at x = a, then the approximating function is the LINEARIZATION of.
Numerical Methods Solution of Equation.
Theorems About Roots of Polynomial Equations. Find all zeros: f(x)= x +x –x Synthetic Division one zero…need 2 more use (x – k), where.
§3.6 Newton’s Method. The student will learn about
4.1 Extreme Values of Functions
4 Numerical Methods Root Finding Secant Method Modified Secant
4.8 Newton’s Method Mon Nov 9 Do Now Find the equation of a tangent line to f(x) = x^5 – x – 1 at x = 1.
Warm Up Write an equation of the tangent line to the curve at the given point. 1)f(x)= x 3 – x + 1 where x = -1 2)g(x) = 3sin(x/2) where x = π/2 3)h(x)
 INEQUALITIES QUADRATIC INVOLVING FUNCTIONS We are going to use what we’ve learned about the graphs of quadratic functions to solve quadratic inequalities.
1 7.5 Solving Radical Equations. 2 What is a radical equation? A radical equation is an equation that has a variable under a radical or that has a variable.
4.5: Linear Approximations, Differentials and Newton’s Method Greg Kelly, Hanford High School, Richland, Washington.
4 Numerical Methods Root Finding Secant Method Modified Secant
Intercepts.
Dividing Polynomials.
CS B553: Algorithms for Optimization and Learning
Objective The student will be able to:
Multiplicity of a Root First Modified Newton’s Method
Graphing Polynomial Functions
Roots of equations Class VII.
Computers in Civil Engineering 53:081 Spring 2003
Roots of equations Class IX.
You can find the roots of some quadratic equations by factoring and applying the Zero Product Property. Functions have zeros or x-intercepts. Equations.
X- and y- intercepts.
Section 4.8: Newton’s Method
Continuity Alex Karassev.
3.8 Newton’s Method How do you find a root of the following function without a graphing calculator? This is what Newton did.
3.8: Newton’s Method Greg Kelly, Hanford High School, Richland, Washington.
3.8: Newton’s Method Greg Kelly, Hanford High School, Richland, Washington.
4.2 Graphing Polynomial Functions
8. DERIVATIVES OF INVERSE TRIG FUNCTIONS
Example 1: Solving Rational Equations
Copyright © Cengage Learning. All rights reserved.
MATH 1910 Chapter 3 Section 8 Newton’s Method.
1 Newton’s Method.
2.2 Fixed-Point Iteration
Presentation transcript:

Newton’s Method Other Recursive Methods Modified Fixed Point Method

Tangential Roots The consistent problem we have encountered with both the Bisection Method and the Regula-Falsi Method is that of a tangential root. In other words to apply the method the function f(x) must be of opposite sign on each side of the root (i.e. f(a)  f(b) <0). We want to be able to address this problem and still find a root if the function f(x) crosses the x -axis. Modified Fixed Point Algorithm The fixed point algorithm can be modified to find roots instead of fixed points. This comes from a simple algebra fact that if w 0 is a fixed point of h(x) and h(x)=f(x)+x then w 0 will be a root of f(x). h(w 0 ) = w 0 ( x 0 is a fixed point of h(x) ) h(w 0 ) = f(w 0 ) + w 0 (definition of h(x) ) f(w 0 ) + w 0 = w 0 (substitute) f(w 0 ) =0

Below we show how the modified fixed point algorithm can be applied to find roots. We do this for a couple of functions. nxnxn h(x n ) nxnxn h(x n )

The problem with the modified fixed point method is that it is very computationally unstable for many functions with certain initial values. By this I mean that the sequence that it generates does not converge. Notice that in the previous example even though we were trying to compute the same root in both examples (i.e. 3) in the first case when dividing by x the algorithm converged. Newton’s Method The idea for this method is to use f(x) to build another function h(x) that will generate a recursive sequence that converges to the root just like the modified fixed point method. The idea here is to keep following the tangent line at a point on the graph down to the x -axis and use that for the value of x that will approximate the root. In other words h(x) represents the x -intercept of the tangent line of f(x). x f(x) h(x) f(x n ) h(x n )=x n+1 xnxn root

To get what x n is from x n+1 we write the equation of the tangent line at x n, plug in the point ( x n+1,0) and solve for x n+1. equation of tangent at x n substitute in ( x n+1,0 ) solve this is the h(x) The equation above gives the recursively defined sequence for x n. This is what is used for Newton’s Method. The halting condition is usually given by the Standard Cauchy Error.

nxnxn h(x n ) nxnxn h(x n ) Here are some examples of Newton’s Method applied.

Problems With Newton’s Method The number of iterations required can not be determined before the algorithm begins. The algorithm will not work if f(x) is not differentiable. The algorithm will halt (program termination by division by zero if not checked for) if a horizontal tangent line is encountered. Newton’s method will sometimes find an extraneous root.