Numerical Analysis Lecture 5.

Slides:



Advertisements
Similar presentations
Numerical Methods: Finding Roots Department of Mathematics University of Leicester.
Advertisements

Lecture 5 Newton-Raphson Method
Mathematics1 Mathematics 1 Applied Informatics Štefan BEREŽNÝ.
ROOTS OF EQUATIONS Student Notes ENGR 351 Numerical Methods for Engineers Southern Illinois University Carbondale College of Engineering Dr. L.R. Chevalier.
Unit-I Roots of Equation
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.
Lectures on Numerical Methods 1 Numerical Methods Charudatt Kadolkar Copyright 2000 © Charudatt Kadolkar.
NUMERICAL METHODS WITH C++ PROGRAMMING
Roots of Equations Open Methods Second Term 05/06.
Solve a radical equation
Graphs of One-to-One Functions In the following graphs of one-to-one functions, draw a horizontal line through more than one point on the graph if possible.
Introduction This chapter gives you several methods which can be used to solve complicated equations to given levels of accuracy These are similar to.
Logarithmic Functions
Lecture 8 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Lecture 3 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Lecture 6 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Using square roots to solve quadratic equations. 2x² = 8 22 x² = 4 The opposite of squaring a number is taking its square root √ 4= ± 2.
Copyright © 2014, 2010, 2007 Pearson Education, Inc. 1 1 Chapter 9 Quadratic Equations and Functions.
Graph and on a number line. Then copy and complete the statement with, or Example 2 Comparing Real Numbers 1 ? = SOLUTION Use a calculator.
Numerical Methods for Engineering MECN 3500
Numerical Methods.
Copyright © 2011 Pearson, Inc. P.5 Solving Equations Graphically, Numerically and Algebraically.
Lecture 5 - Single Variable Problems CVEN 302 June 12, 2002.
SOLVING NONLINEAR EQUATIONS. SECANT METHOD MATH-415 Numerical Analysis 1.
LECTURE 2 OF NUMERICAL METHODS 7.2 Solutions of Non-Linear Equations.
Lecture 4 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
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.
P2 Chapter 8 CIE Centre A-level Pure Maths © Adam Gibson.
Solving Quadratic Equations by Graphing Chapter 9.2.
Lecture Notes Dr. Rakhmad Arief Siregar Universiti Malaysia Perlis
CHAPTER 3 NUMERICAL METHODS
Solving Equations Graphically, Numerically, and Algebraically
Find the solution of the exponential equation, correct to four decimal places. e x =
TOPIC : 7 NUMERICAL METHOD.
LECTURE 4 OF SOLUTIONS OF NON-LINEAR EQUATIONS OBJECTIVES
Imaginary & Complex Numbers
Numerical Methods and Analysis
Numerical Methods.
LECTURE 3 OF SOLUTIONS OF NON -LINEAR EQUATIONS.
Lecture 4: Numerical Methods
Chapter 5: Inverse, Exponential, and Logarithmic Functions
Numerical Methods.
2.3 Inverse Trigonometric Functions
MATH 2140 Numerical Methods
Solution of Equations by Iteration
Numerical Analysis Lecture 7.
Numerical Analysis Lecture 45.
Chapter 1: False-Position Method of Solving a Nonlinear Equation
Computers in Civil Engineering 53:081 Spring 2003
Numerical Analysis Lecture 16.
Copyright © Cengage Learning. All rights reserved.
Graphing Linear Equations
MATH 175: Numerical Analysis II
Copyright © Cengage Learning. All rights reserved.
Algebra: Graphs, Functions, and Linear Systems
Solving Quadratic Equations using Square Roots
The Discriminant   Determine the number of real solutions for a quadratic equation including using the discriminant and its graph.
Chapter 15 Roots and Radicals.
Section 4.8: Newton’s Method
A step-by-step process of trial and improvement
3.8 Newton’s Method How do you find a root of the following function without a graphing calculator? This is what Newton did.
Day 146 – Solve
FP1: Chapter 2 Numerical Solutions of Equations
Determine the graph of the given function. {image}
Solve the equation: 6 x - 2 = 7 x + 7 Select the correct answer.
Warm Up Solve. 1. log16x = 2. logx8 = 3 3. log10,000 = x
Copyright © Cengage Learning. All rights reserved.
MATH 1910 Chapter 3 Section 8 Newton’s Method.
Numerical Methods for solutions of equations
Presentation transcript:

Numerical Analysis Lecture 5

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

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

Bisection Method (Bolzano)

Method of false position Regula-Falsi Method Method of false position

Here, we choose two points xn and xn -1 such that f (xn) and f (xn-1) are of opposite signs. Intermediate value property suggests that the graph of y = f (x) crosses the x-axis between these two points and therefore, the root lies between these two points.

Example Using Regula-Falsi method, find the real root of the following equation correct, to three decimal places: x log 10 x =1.2

Solution Let f (x) = x log10x – 1.2 f (2) = – 0.5979, f (3) = 0.2314. Since f (2) and f (3) are of opposite signs, the real root lies between x1 = 2, x2 = 3.

The first approximation is obtained from

Since f (x2) and f (x3) are of opposite signs, the root of f (x) = 0 lies between x2 and x3. Now, the second approximation is given by

Answer ! Thus, the root of the given equation correct to three decimal places is 2.740

Method of Iteration

METHOD OF ITERATION can be applied to find a real root of the equation f (x) = 0 by rewriting the same in the form, (2.3) Example, f (x) = cos x – 2x + 3 = 0. It can be rewritten as

Also, f ’(x) and f ’’(x) do not vanish in (0, 1) and f (x) and f ’’(x) will have the same sign at x = 1. Therefore, we take the first approximation x0 = 1, and using N-R method, we get

The second approximation is The required root is 0.853.

Example Find a real root of the equation x3 – x – 1 = 0 using Newton - Raphson method, correct to four decimal places.

Numerical Analysis Lecture 5