The formulae for the roots of a 3rd degree polynomial are given below

Slides:



Advertisements
Similar presentations
Numerical Solution of Nonlinear Equations
Advertisements

Section 7.2: Direction Fields and Euler’s Methods Practice HW from Stewart Textbook (not to hand in) p. 511 # 1-13, odd.
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.
Chapter 4 Roots of Equations
Appendix to Chapter 1 Mathematics Used in Microeconomics © 2004 Thomson Learning/South-Western.
A second order ordinary differential equation has the general form
Ch 5.2: Series Solutions Near an Ordinary Point, Part I
Chapter 1 Introduction The solutions of engineering problems can be obtained using analytical methods or numerical methods. Analytical differentiation.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Martin Mendez UASLP Chapter 61 Unit II.
The Derivative. Objectives Students will be able to Use the “Newton’s Quotient and limits” process to calculate the derivative of a function. Determine.
1 Chapter 9 Differential Equations: Classical Methods A differential equation (DE) may be defined as an equation involving one or more derivatives of an.
Circles, Line intersections and Tangents © Christine Crisp Objective : To find intersection points with straight lines To know if a line crosses a circle.
Chapter 6 Differential Calculus
MATH 117 Pre-calculus Outline Part 1: Review of basic algebra and graphs, and Straight lines (constant slope) Part 2: Functions, quadratic functions (slope.
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.
Roots of a Polynomial: Root of a polynomial is the value of the independent variable at which the polynomial intersects the horizontal axis (the function.
3 DERIVATIVES.
Taylor Series.
Lecture Notes Dr. Rakhmad Arief Siregar Universiti Malaysia Perlis
AP CALCULUS AB Chapter 4: Applications of Derivatives Section 4.5:
Ordinary Differential Equations
Notes Over 6.7 Finding the Number of Solutions or Zeros
Loop Application: Numerical Methods, Part 1 The power of Matlab Mathematics + Coding.
Copyright © 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1 ~ Roots of Equations ~ Open Methods Chapter 6 Credit:
Chapter Two: Section One The Derivative and the Tangent Line Problem.
Chapter 3 Roots of Equations. Objectives Understanding what roots problems are and where they occur in engineering and science Knowing how to determine.
4.5: Linear Approximations, Differentials and Newton’s Method.
Chapter 8 Integration Techniques. 8.1 Integration by Parts.
4.5: Linear Approximations, Differentials and Newton’s Method Greg Kelly, Hanford High School, Richland, Washington.
CHAPTER 3 NUMERICAL METHODS
Newton’s Method, Root Finding with MATLAB and Excel
Dr. Jie Zou PHY Chapter 2 Solution of Nonlinear Equations: Lecture (II)
Linearization and Newton’s Method. I. Linearization A.) Def. – If f is differentiable at x = a, then the approximating function is the LINEARIZATION of.
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)
For any function f (x), the tangent is a close approximation of the function for some small distance from the tangent point. We call the equation of the.
§3.6 Newton’s Method. The student will learn about
By the end of this section, you will be able to: 1. Determine the number and type of roots for a polynomial equation; 2. Find the zeros of a polynomial.
Linearization, Newton’s Method
Differential Equations Linear Equations with Variable Coefficients.
Do Now 11/28/11 In your notebook, explain if the equations below are the same line. y – 5 = 3(x + 2) y – 2 = 3(x + 5) y = 3x + 11 y = 3x + 17 No No y –
9.1 Solving Differential Equations Mon Jan 04 Do Now Find the original function if F’(x) = 3x + 1 and f(0) = 2.
MTH 253 Calculus (Other Topics) Chapter 9 – Mathematical Modeling with Differential Equations Section 9.4 – Second-Order Linear Homogeneous Differential.
MA2213 Lecture 9 Nonlinear Systems. Midterm Test Results.
4.5: Linear Approximations, Differentials and Newton’s Method Greg Kelly, Hanford High School, Richland, Washington.
Section 9.4 – Solving Differential Equations Symbolically Separation of Variables.
Introduction to Differential Equations
Modeling of geochemical processes Numeric Mathematics Refreshment
CHAPTER 3 NUMERICAL METHODS
Today's Contents Review Elliptic expansion parallelogram.
Tangent Lines (Sections 2.1 and 3.1 )
The formulae for the roots of a 3rd degree polynomial are given below
Quadratic Functions, Quadratic Expressions, Quadratic Equations
The formulae for the roots of a 3rd degree polynomial are given below
Solution of Nonlinear Equations
The formulae for the roots of a 3rd degree polynomial are given below
Warmup Solve:
Chapter 27.
1. Use the quadratic formula to find all real zeros of the second-degree polynomial
Comparing and Contrasting Functions
3.4 Zeros of Polynomial Functions: Real, Rational, and Complex
The formulae for the roots of a 3rd degree polynomial are given below
RAYAT SHIKSHAN SANSTHA’S S.M.JOSHI COLLEGE HADAPSAR, PUNE
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.
The formulae for the roots of a 3rd degree polynomial are given below
The formulae for the roots of a 3rd degree polynomial are given below
Presentation transcript:

The formulae for the roots of a 3rd degree polynomial are given below Roots of a Polynomial: Root of a polynomial is the value of the independent variable at which the polynomial intersects the horizontal axis (the function has zero value) . The formulae for the roots of a 2nd degree polynomial are given below The formulae for the roots of a 3rd degree polynomial are given below First root (of three)

Example: Find the roots of the given polynomial. Roots of a Polynomial: The Matlab program can be used to calculate the roots of an n degree polynomial. Example: Find the roots of the given polynomial. ans = -1.0604 + 1.0863i -1.0604 - 1.0863i 0.5207 >>p=[5 8 6 -6]; roots(p) Example: Find the roots of the given polynomial. ans = 1.0043 + 2.7517i 1.0043 - 2.7517i -1.4940 + 0.3852i -1.4940 - 0.3852i 0.9793 >>p=[1 0 4 16 0 -20]; roots(p) All coefficients including those with zero must be specified. Otherwise the polynomial degree will be reduced.

NEWTON-RAPHSON ITERATION METHOD Solutions of Nonlinear Equations: Solutions of Nonlinear Equations: NEWTON-RAPHSON ITERATION METHOD f(x) x xi (İnitial value) f(xi)-0 Xi+1 Slope at this point is f'(xi) f(xi) Tangent line The Newton-Raphson method, or Newton’s method, is a powerful technique for solving equations numerically. Like so much of the differential calculus, it is based on the simple idea of linear approximation. This method is a method for finding successively better approximations to the real roots (or zeroes) of a real valued function. ε (error)

θ f f ' ε Newton-Raphson Example 1: Solutions of Nonlinear Equations: Newton-Raphson Example 1: Find one of the θ values, which satisfies the given equation. θ f f ' ε 1 -1.5858 2.3536 0.6738 1.6738 0.4368 3.6534 -0.1196 1.5542 0.0139 3.4213 -0.0041 1.5501 -0.00013 3.4134 3.95e-5

u f f ' ε Newton-Raphson Example 2: Solutions of Nonlinear Equations: Newton-Raphson Example 2: Find one of the u values, which satisfies the given equation. u f f ' ε 1 4.3899 5.4233 -0.8094 0.1905 -1.4883 6.6229 0.2247 0.4152 0.1569 7.8429 -0.0200 0.3952 0.00025 7.7801 -3.32e-5

f1(x1,x2)=0 f2(x1,x2)=0 Newton-Raphson Example 3: Solutions of Nonlinear Equations: Newton-Raphson iteration method is used to solve the nonlinear system of equations. Since there are more than one equations and unknown variables, partial derivatives of the equations with respect to each unkown variable are used in the solution procedure. f1(x1,x2)=0 f2(x1,x2)=0 Arbitrary initial values for x1 ve x2 are assigned and the iteration procedure is started by making the necessary changes in the computer program (newtonrn). The variables are stated as xb() in the program. Newton-Raphson Example 3: The equation of a circle with center coordinates (3,2) and a radius 5 is given on the right hand side. How do you find the intersection point of this circle and the parapola y=x2 ?

Solutions of Nonlinear Equations: The following changes are made in the program (newtonrn) to solve the problem. 1 2 3 4 9 x y (-1.82, 3.321) (2.643, 6.987) Sub newtonrn_Click() - - - 40 n=2 41 xb(1)=1:xb(2)=-1:xh(1)=.001:xh(2)=.001 - - 45 ‘…Error equations… a(1,1)=2*(xb(1)-3):a(1,2)=2*(xb(2)-2) a(2,1)=-2*xb(1):a(2,2)=1 b(1)=-((xb(1)-3)^2+(xb(2)-2)^2-25) b(2)=-(xb(2)-xb(1)^2) 46 ‘... End sub As shown in the figure, there are two valid solution sets. The output solution set is determined by the initial values of the unkown variables.