MATH 1910 Chapter 3 Section 8 Newton’s Method.

Slides:



Advertisements
Similar presentations
Copyright © Cengage Learning. All rights reserved.
Advertisements

Section 6.6 Finding Rational Zeros. Rational Zero Theorem Synthetic & Long Division Using Technology to Approximate Zeros Today you will look at finding.
Mathematics1 Mathematics 1 Applied Informatics Štefan BEREŽNÝ.
Copyright © Cengage Learning. All rights reserved.
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 METHODS WITH C++ PROGRAMMING
Chapter 3 Root Finding.
Section 5.5 – The Real Zeros of a Rational Function
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.
Additional Topics in Differential Equations
Infinite Series Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved. 4 Applications of Differentiation.
Lecture 6 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Newton’s Method Other Recursive Methods Modified Fixed Point Method.
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.
Copyright © Cengage Learning. All rights reserved.
Topic: U4L5 Remainder and Factor Theorems EQ: Can I correctly apply the Remainder and Factor Theorems to help me factor higher order polynomials?
LINEARIZATION AND NEWTON’S METHOD Section 4.5. Linearization Algebraically, the principle of local linearity means that the equation of the tangent.
AUGUST 2. MATH 104 Calculus I Review of previous material…. …methods and applications of integration, differential equations ………..
Section 5.5 The Intermediate Value Theorem Rolle’s Theorem The Mean Value Theorem 3.6.
§3.6 Newton’s Method. The student will learn about
Remainder and Factor Theorems
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.
Linearization, Newton’s Method
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)
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.
Lecture 4 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
1 4.8 – Newton’s Method. 2 The Situation Let’s find the x-intercept of function graphed using derivatives and tangent lines. |x1|x1 |x2|x2 |x3|x3 Continuing,
Notes P.5 – Solving Equations. I. Graphically: Ex.- Solve graphically, using two different methods. Solution – See graphing Calculator Overhead.
CSE 330: Numerical Methods. Introduction The bisection and false position method require bracketing of the root by two guesses Such methods are called.
P2 Chapter 8 CIE Centre A-level Pure Maths © Adam Gibson.
CHAPTER 3 NUMERICAL METHODS
Copyright © Cengage Learning. All rights reserved.
Solving Equations Graphically, Numerically, and Algebraically
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
Multiplicity of a Root First Modified Newton’s Method
Warmup Solve:
Graphing Polynomial Functions
SECTION 9-3 : SOLVING QUADRATIC EQUATIONS
Warmup Solve:
Solution of Equations by Iteration
Mathematics.
Polynomial Approximations of Elementary Functions
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
The Fundamental Theorem of Algebra And Zeros of Polynomials
Copyright © Cengage Learning. All rights reserved.
Section 3.2 Differentiability.
Copyright © Cengage Learning. All rights reserved.
Section 4.8: Newton’s Method
Copyright © Cengage Learning. All rights reserved.
3.8 Newton’s Method How do you find a root of the following function without a graphing calculator? This is what Newton did.
Copyright © Cengage Learning. All rights reserved.
3.8: Newton’s Method Greg Kelly, Hanford High School, Richland, Washington.
Solving Linear Equations by Graphing
3.8: Newton’s Method Greg Kelly, Hanford High School, Richland, Washington.
Numerical Integration
Section 2-2 : Linear Equations
Objectives Approximate a definite integral using the Trapezoidal Rule.
Rolle’s Theorem and the Mean Value Theorem
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
Copyright © Cengage Learning. All rights reserved.
1 Newton’s Method.
Copyright © Cengage Learning. All rights reserved.
EE, NCKU Tien-Hao Chang (Darby Chang)
Presentation transcript:

MATH 1910 Chapter 3 Section 8 Newton’s Method

Objective Approximate a zero of a function using Newton’s Method.

Newton’s Method The technique for approximating the real zeros of a function is called Newton’s Method, and it uses tangent lines to approximate the graph of the function near its x-intercepts. To see how Newton’s Method works, consider a function f that is continuous on the interval [a, b] and differentiable on the interval (a, b). If f(a) and f(b) differ in sign, then, by the Intermediate Value Theorem, f must have at least one zero in the interval (a, b).

Newton’s Method To estimate this zero, you choose as shown in Figure 3.60(a). Newton’s Method is based on the assumption that the graph of f and the tangent line at (x1, f(x1)) both cross the x-axis at about the same point. Figure 3.60(a)

Newton’s Method Because you can easily calculate the x-intercept for this tangent line, you can use it as a second (and, usually, better) estimate of the zero of f. The tangent line passes through the point (x1, f(x1)) with a slope of f′(x1). In point-slope form, the equation of the tangent line is

Newton’s Method Letting y = 0 and solving for x produces So, from the initial estimate x1 you obtain a new estimate Figure 3.60(b)

Newton’s Method You can improve on x2 and calculate yet a third estimate Repeated application of this process is called Newton’s Method.

Newton’s Method

Example 1 – Using Newton’s Method Calculate three iterations of Newton’s Method to approximate a zero of f(x) = x2 – 2. Use x1 = 1 as the initial guess. Solution: Because f(x) = x2 – 2, you have f′(x) = 2x, and the iterative process is given by the formula

Example 1 – Solution cont’d The calculations for three iterations are shown in the table.

Example 1 – Solution cont’d Of course, in this case you know that the two zeros of the function are To six decimal places, So, after only three iterations of Newton’s Method, you have obtained an approximation that is within 0.000002 of an actual root.

Example 1 – Solution cont’d The first iteration of this process is shown in Figure 3.61. Figure 3.61

Newton’s Method When the approximations approach a limit, the sequence x1, x2, x3, . . . , xn, . . . is said to converge. Moreover, if the limit is c, it can be shown that c must be a zero of f. Newton’s Method does not always yield a convergent sequence. One way it can fail to do so is shown in Figure 3.63. Figure 3.63

Newton’s Method Because Newton’s Method involves division by f′(xn), it is clear that the method will fail if the derivative is zero for any xn in the sequence. When you encounter this problem, you can usually overcome it by choosing a different value for x1. Another way Newton’s Method can fail is shown in the next example.

Example 3 – An Example in Which Newton’s Method Fails The function f(x) = x1/3 is not differentiable at x = 0. Show that Newton’s Method fails to converge using x1 = 0.1. Solution:

Example 3 – Solution cont’d The calculations are shown in the table.

Example 3 – Solution cont’d This table and Figure 3.64 indicate that xn, continues to increase in magnitude as and so the limit of the sequence does not exist. Figure 3.64

Newton’s Method It can be shown that a condition sufficient to produce convergence of Newton’s Method to a zero of f is that on an open interval containing the zero.

Newton’s Method You have learned several techniques for finding the zeroes of functions. The zeros of some functions, such as f(x) = x3 – 2x2 – x + 2 can be found by simple algebraic techniques, such as factoring. The zeros of other functions, such as f(x) = x3 – x + 1 cannot be found by elementary algebraic methods.

Newton’s Method This particular function has only one real zero, and by using more advanced algebraic techniques you can determine the zero to be Because the exact solution is written in terms of square roots and cube roots, it is called a solution by radicals.