MATH342: Numerical Analysis 2012210034 Sunjae Kim.

Slides:



Advertisements
Similar presentations
CSE 330: Numerical Methods
Advertisements

Root-Finding Algorithm Bisection method Suppose we want to solve the equation f(x) = 0. Given two points a and b such that f(a) and f(b) have opposite.
Lectures on Numerical Methods 1 Numerical Methods Charudatt Kadolkar Copyright 2000 © Charudatt Kadolkar.
Math for CSTutorial 5-61 Tutorial 5 Function Optimization. Line Search. Taylor Series for R n Steepest Descent.
NUMERICAL METHODS WITH C++ PROGRAMMING
Fin500J: Mathematical Foundations in Finance Topic 3: Numerical Methods for Solving Non-linear Equations Philip H. Dybvig Reference: Numerical Methods.
- + Suppose f(x) is a continuous function of x within interval [a, b]. f(a) = - ive and f(b) = + ive There exist at least a number p in [a, b] with f(p)
Chapter 3 Root Finding.
Section 5.5 – The Real Zeros of a Rational Function
Numerical Analysis 1 EE, NCKU Tien-Hao Chang (Darby Chang)
2.5 Descartes’ Rule of Signs To apply theorems about the zeros of polynomial functions To approximate zeros of polynomial functions.
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.
Solving Non-Linear Equations (Root Finding)
Rolle’s theorem and Mean Value Theorem ( Section 3.2) Alex Karassev.
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.
Intermediate Value Theorem If f is continuous on [ a,b ] and k is any number between f(a) and f(b), inclusive, then there is at least one number c in the.
Using Technology to Approximate Roots of Polynomial Equations.
Lecture 3 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
Numerical Methods for Engineering MECN 3500
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.
1.4 Continuity  f is continuous at a if 1. is defined. 2. exists. 3.
Newton’s Method, Root Finding with MATLAB and Excel
Solving Non-Linear Equations (Root Finding)
Numerical Methods Solution of Equation.
Today’s class Numerical differentiation Roots of equation Bracketing methods Numerical Methods, Lecture 4 1 Prof. Jinbo Bi CSE, UConn.
Drill Tell whether the limit could be used to define f’(a).
4.2 – The Mean Value Theorem
Section 5.5 The Intermediate Value Theorem Rolle’s Theorem The Mean Value Theorem 3.6.
Intermediate Value Theorem Vince Varju. Definition The Intermediate Value Theorem states that if a function f is a continuous function on [a,b] then there.
Recursive Methods for Finding Roots of Functions Bisection & Newton’s Method.
If f (x) is continuous over [ a, b ] and differentiable in (a,b), then at some point, c, between a and b : Mean Value Theorem for Derivatives.
AP Calc AB IVT. Introduction Intermediate Value Theorem If a function is continuous between a and b, then it takes on every value between and. Because.
Section 3.2 Mean Value Theorem Math 1231: Single-Variable Calculus.
Theorems Lisa Brady Mrs. Pellissier Calculus AP 28 November 2008.
Lecture 4 Numerical Analysis. Solution of Non-Linear Equations Chapter 2.
3.2 Rolle’s Theorem and the
Rolle’s theorem and Mean Value Theorem (Section 4.2)
Lesson 63 Rolle’s Theorem and the Mean Value Theorem
Polynomial Functions of Higher Degree with Modeling
Solution of Nonlinear Equations (Root finding Problems
Numerical Methods and Analysis
3.7 The Real Zeros of a Polynomial Function
3.3: Increasing/Decreasing Functions and the First Derivative Test
3.3 Increasing and Decreasing Functions and the First Derivative Test
Newton’s Method for Systems of Non Linear Equations
Locating Real Zeros of Polynomials
Linford Group Meeting Department of Chemistry and Biochemistry Brigham Young University Thursday, Feb. 23, 2017 Problems on the oxidation of tertiary amines,
Stuff you MUST know Cold for the AP Calculus Exam
Read Chapters 5 and 6 of the textbook
3.7 The Real Zeros of a Polynomial Function
3.2 Rolle’s Theorem and the
Mathematics.
Important Values for Continuous functions
Optimization Part II G.Anuradha.
Intermediate Value Theorem
1. Be able to apply The Mean Value Theorem to various functions.
Section 3.2 Differentiability.
Intermediate Value Theorem
1.4 Continuity and One-Sided Limits (Part 2)
Continuity Alex Karassev.
Math 175: Numerical Analysis II
Intermediate Value Theorem
Rolle’s Theorem and the Mean Value Theorem
Copyright © Cengage Learning. All rights reserved.
Tangent Line Approximations and Theorems
MATH 1910 Chapter 3 Section 8 Newton’s Method.
EE, NCKU Tien-Hao Chang (Darby Chang)
Lesson 63 - Intermediate Value Theorem
Solutions for Nonlinear Equations
Presentation transcript:

MATH342: Numerical Analysis Sunjae Kim

Root-finding Method Bisection Method Newton Method Secant Method

Bisection Method f(x) = 0 for the real variable x, where f is a continuous function defined on an interval [a, b] and f(a) and f(b) have opposite signs By the intermediate value theorem, the continuous function f must have at least one root in the interval (a, b) At each step, for the midpoint c = (a+b)/2, either f(a) and f(c) have opposite signs (root in the interval (a, c)) or f(c) and f(b) have opposite signs (root in the interval (c, b)) The process is continued until the interval is sufficiently small

Bisection Method

Relatively slow (interval is reduced in width by 50% at each step) Often used to obtain a rough approximation This method is also called the interval halving method, the binary search method, or the dichotomy method

Newton’s Method Given a function f defined over the reals x, its derivative f’, and a first guess x0 for a root of the function f, a better approximation x1 is x1 = x0 – f(x0)/f’(x0) One starts with an initial guess which is reasonably close to the root then the function is approximated by its tangent line

Newton’s Method

Secant Method Using succession of roots of secant lines to better approximate a root of a function f Finite difference approximation of Newton’s method

Secant Method

Newton’s Method for Nonlinear Equation

Steepest Descent Method Steepest descent method finds a local minimum of a function using gradient descent, one takes steps proportional to the negative of the gradient

The SIR Model

Black-Scholes Equation