Chapter 6. Nonlinear Equations. 6.1 The Problem of Nonlinear Root-finding. 6.2 Rate of Convergence

Size: px
Start display at page:

Download "Chapter 6. Nonlinear Equations. 6.1 The Problem of Nonlinear Root-finding. 6.2 Rate of Convergence"

Transcription

1 Chapter 6 Nonlinear Equations 6. The Problem of Nonlinear Root-finding In this module we consider the problem of using numerical techniques to find the roots of nonlinear equations, f () =. Initially we eamine the case where the nonlinear equations are a scalar function of a single independent variable,. Later, we shall consider the more difficult problem where we have a system of n nonlinear equations in n independent variables, f() =. Since the roots of a nonlinear equation, f () =, cannot in general be epressed in closed form, we must use approimate methods to solve the problem. Usually, iterative techniques are used to start from an initial approimation to a root, and produce a sequence of approimations () ; () ; () ;::: ; which converge toward a root. Convergence to a root is usually possible provided that the function f () is sufficiently smooth and the initial approimation is close enough to the root. 6. Rate of Convergence Let () ; () ; () ;:::

2 7 NONLINEAR EQUATIONS be a sequence which converges to a root, andlet (k) = (k),. If there eists a number p and a non-zero constant c such that (k+) lim k! (k) p = c; (6.) then p is called the order of convergence of the sequence. For p = ; ; 3 the order is said to be linear, quadratic and cubic respectively. 6.3 Termination Criteria Since numerical computations are performed using floating point arithmetic, there will always be a finite precision to which a function can be evaluated. Let denote the limiting accuracy of the nonlinear function near a root. This limiting accuracy of the function imposes a limit on the accuracy,, of the root. The accuracy to which the root may be found is given by: = f () : (6.) This is the best error bound for any root finding method. Note that is large when the first derivative of the function at the root, f (), is small. In this case the problem of finding the root is illconditioned. This is shown graphically in Figure 6.. f () f () f ( ) large ill-conditioned FIGURE 6.: small well-conditioned When the sequence () ; () ; () ;::: ; converges to the root,, then the differences (k), (k,) will decrease until (k),.

3 6.4 BISECTION METHOD 7 With further iterations, rounding errors will dominate and the differences will vary irregularly. The iterations should be terminated and (k) be accepted as the estimate for the root when the following two conditions are satisfied simultaneously:. (k+), (k) (k), (k,) and (6.3) (k), (k,). < : (6.4) + (k) is some coarse tolerance to prevent the iterations from being terminated before (k) is close to, i.e. before the step size (k), (k,) becomes small. The condition (6.4) is able to test the relative offset when (k) is much larger than andmuchsmallerthan. In practice, these conditions are used in conunction with the condition that the number of iterations not eceed some user defined limit. 6.4 Bisection Method Suppose that f () is continuous on an interval, () ; (). A root is bracketed on the interval, () ; () if f, () and f, () have opposite sign. Let () = () + (), () (6.5) be the mid-point of the interval, () ; (). Three mutually eclusive possibilities eist: if, f () =then the root has been found; if, f () has the same sign as, f () then the root is in the interval, () ; () ; if, f () has the same sign as, f () then the root is in the interval, () ; (). In the last two cases, the size of the interval bracketing the root has decreased by a factor of two. The net iteration is performed by evaluating the function at the mid-point of the new interval. After k iterations the size of the interval bracketing the root has decreased to: (), () k

4 7 NONLINEAR EQUATIONS The process is shown graphically in Figure 6.. The bisection method is guaranteed to converge to a root. If the initial interval brackets more than one root, then the bisection method will find one of them. f () () () () (3) (5) (4) FIGURE 6.: Since the interval size is reduced by a factor of two at each iteration, it is simple to calculate in advance the number of iterations, k, required to achieve a given tolerance,, in the solution: (), () k = log : The bisection method has a relatively slow linear convergence. 6.5 Secant Method The bisection method uses no information about the function values, f (), apart from whether they are positive or negative at certain values of. Suppose that f, (k) < f, (k,) ; Then we would epect the root to lie closer to (k) than (k,). Instead of choosing the new estimate to lie at the midpoint of the current interval, as is the case with the bisection method, the secant method chooses the -intercept of the secant line to the curve, the line through,, (k,) ;f (k,) and,, (k) ;f (k). This places the new estimate closer to the endpoint for which f () has the smallest absolute value. The new estimate is: (k+) = (k), f, (k), (k), (k,) f ( (k) ), f ( (k,) ) : (6.6)

5 6.6 REGULA FALSI 73 Note that the secant method requires two initial function evaluations but only one new function evaluation is made at each iteration. The secant method is shown graphically in Figure 6.3. f () () () (3) () FIGURE 6.3: The secant method does not have the root bracketing property of the bisection method since the new estimate, (k+), of the root need not lie within the bounds defined by (k,) and (k).as a consequence, the secant method does not always converge, but when it does so it usually does so faster than the bisection method. It can be shown that the order of convergence of the secant method is: + p 5 :68: 6.6 Regula Falsi Regula falsi is a variant of the secant method. The difference between the secant method and regula falsi lies in the choice of points used to form the secant. While the secant method uses the two most recent function evaluations to form the secant line through,, (k,) ;f (k,) and,, (k) ;f (k), regula falsi forms the secant line through the most recent points that bracket the root. The regula falsi steps are shown graphically in Figure 6.4. In this eample, the point () remains active for many steps. The advantage of regula falsi is that like the bisection method, it is always convergent. However, like the bisection method, it has only linear convergence. Eamples where the regula falsi method is slow to converge are not hard to find. One eample is shown in Figure 6.5.

6 74 NONLINEAR EQUATIONS f () () () (3) () FIGURE 6.4: f () (3) () () () FIGURE 6.5:

7 6.7 NEWTON S METHOD Newton s Method The methods discussed so far have required only function values to compute the new estimate of the root. Newton s method requires that both the function value and the first derivative be evaluated. Geometrically, Newton s method proceeds by etending the tangent line to the function at the current point until it crosses the -ais. The new estimate of the root is taken as the abscissa of the zero crossing. Newton s method is defined by the following iteration:, (k+) = (k), f (k) f ( (k) ) : (6.7) The update is shown graphically in Figure 6.6. f () () () () FIGURE 6.6: Newton s method may be derived from the Taylor series epansion of the function: f ( +) =f () +f () + f () () + ::: (6.8) For a smooth function and small values of, the function is approimated well by the first two terms. Thus f ( +) =implies that =, f() f. Far from a root the higher order terms are () significant and Newton s method can give highly inaccurate corrections. In such cases the Newton iterations may never converge to a root. In order to achieve convergence the starting values must be reasonably close to a root. An eample of divergence using Newton s method is given in Figure 6.7. Newton s method ehibits quadratic convergence. Thus, near a root the number of significant digits doubles with each iteration. The strong convergence makes Newton s method attractive in cases where the derivatives can be evaluated efficiently and the derivative is continuous and nonzero in the neighbourhood of the root (as is the case with multiple roots). Whether the secant method should be used in preference to Newton s method depends upon the relative work required to compute the first derivative of the function. If the work required to

8 76 NONLINEAR EQUATIONS f () () () FIGURE 6.7: evaluate the first derivative is greater than :44 times the work required to evaluate the function, then use the secant method, otherwise use Newton s method. It is easy to circumvent the poor global convergence properties of Newton s method by combining it with the bisection method. This hybrid method uses a bisection step whenever the Newton method takes the solution outside the bisection bracket. Global convergence is thus assured while retaining quadratic convergence near the root. Line searches of the Newton step from (k) to (k+) are another method for achieving better global convergence properties of Newton s method. 6.8 Eamples In the following eamples, the bisection, secant, regula falsi and Newton s methods are applied to find the root of the non-linear function f () =, between [; 3]. L and R are the left and right bracketing values and new is the new value determined at each iteration. is the distance from the true solution, n f is the number of function evaluations required at each iteration. The bisection method is terminated when conditions (6.3) and (6.4) are simultaneously satisfied for =,4. The remaining methods determine the solution to the same level of accuracy as the bisection method. The eamples show the linear convergence rate of the bisection and regula falsi methods, the better than linear convergence rate of the secant method and the quadratic convergence rate of Newton s method. It is also seen that although Newton s method converges in 5 iterations, 5 function and 5 derivative evaluations, to give a total of evaluations, are required. This contrasts to the secant method where for the 8 iterations, 9 function evaluations are made.

9 6.8 EXAMPLES 77 Bisection Method - f() = - k L R new f L () f R () f( new ) ε n f k+ - k k - k- k - k- /+ k Secant Method - f() = - k f( ) f( ) ε n f k - k- /+ k f() = - f() E Regula Falsi Method - f() = - k f( ) f( ) new f( new ) ε n f k - k- /+ k Newton s Method - f() = -; f () = k f() f () ε n f n f k - k- /+ k

10 78 NONLINEAR EQUATIONS 6.9 Laguerre s Method In the previous sections we have investigated methods for finding the roots of general functions. These techniques may sometimes work for finding roots of polynomials, but often problems arise because of multiple roots or comple roots. Better methods are available for nonlinear functions with these types of roots. One such technique is Laguerre s method. Consider the n th order polynomial: P n () =(, )(, ) :::(, n ): (6.9) Taking the logarithm of both sides gives: Let: and ln P n () = ln, + ln, + :::+ ln, n : (6.) G = d ln P n() d (6.) =, +, + :::+, n (6.) = P n () P n () (6.3) H =, d ln P n () (6.4) d = (, ) + (, ) + :::+ P n = (), P () n P n () (, n ) (6.5) P n () : (6.6) If we make the assumption that the root is located a distance from our current estimate, (k), and all other roots are located at a distance, then: (k), = (6.7) (k), i = for i =; 3;::: ;n: (6.8)

11 6.9 LAGUERRE S METHOD 79 Equations (6.3) and (6.6) can now be epressed as: Solving for gives: G = + n, (6.9) H = + n, : (6.) = n G p (n, ) (nh, G ) (6.) where the sign should be taken to yield the largest magnitude for the denominator. The new estimate of the root is obtained from the old using the update: (k+) = (k), : (6.) In general, will be comple., Laguerre s method requires that, P n (k),, P n (k) and P n (k) be computed at each step. The method is cubic in its convergence for real or comple simple roots. Laguerre s method will converge to all types of roots of polynomials, real, comple, single or multiple. It requires comple arithmetic even when converging to a real root. However, for polynomials with all real roots, it is guaranteed to converge to a root from any starting point. Afteraroot,,ofthen th order polynomial, P n (), has been found, the polynomial should be divided by the quotient, (, ), to yield an (n, ) order polynomial. This process is called deflation. It saves computation when estimating further roots and ensures that subsequent iterations do not converge to roots already found Eample Following is a simple eample that illustrates the use of Laguerre s method. Consider the third order polynomial: P () =, 4 +3 P () =, 4 P () =

12 8 NONLINEAR EQUATIONS. Let the initial estimate of the first root be: () =:5 then G = () () H = G, =, 4, 4 () +3 () =,:4, 4 () +3 =4:6 G p =,:5 (choosing,4 as the largest denominator) (, )(H, G ) The first root is then: () = (), =:5, (,:5) = :. The second root is found by dividing P by (, ). The trivial result is that = Horner s method for evaluating a polynomial and its derivatives The polynomial P n () = a + a + a + :::+ a n n should not be calculated by evaluating the powers of individually. It is much more efficient to calculate the polynomial using Horner s method by noting that P n () = a + (a + (a + :::+ a n )). Using this approach the polynomial value and the first and second derivatives may be evaluated efficiently using the following algorithm: p a n ; p :; p :; for i in n, ::: loop end loop; p p + p ; p p + p; p p + a i ;

13 6.9 LAGUERRE S METHOD 8 p p ; If the polynomial and its derivatives are evaluated using the individual powers of, (n +3n)= operations are required for the value, (n + n, )= for the first derivative and (n, n, )= for the second derivative, i.e. a total of (3n +3n, 4)= operations. Horner s method requires 6n + operations to evaluate the polynomial and both derivatives and thus requires less operations when n>3. If ust the function evaluation is required, then Horner s method will require less operations for all n Eample Following is an eample of how Horner s method can be used to evaluate P 3 () =+, and its derivatives.. P =, P =and P =.. P =+, P =+and P =, P =+, P = +, 3 and P = (, 3)+. 4. P = +, 3, P = (, 3) + (, 3)+and P = ((, 3)+)+. 5. P = (3, 3) Deflation Dividing a polynomial of order n by a factor (, ) may be performed using the following algorithm: r a n ; a n :; for i in n, ::: loop q a i ; a i r; r r + q;

14 8 NONLINEAR EQUATIONS end loop; The coefficients of the new polynomial are stored in the array a i, and the remainder in r. 6. Systems of Nonlinear Equations Consider a general system of n nonlinear equations in n unknowns: f i ( ; ;::: ; n )=;i=; ;::: ;n: Newton s method can be generalised to n dimensions by eamining Taylor s series in n dimensions: where f i, f (k+) i = f i, (k) + f i, (k) (k+), (k) + :::, (k) is an n n matri called the Jacobian, having elements: f i () : (6.3) If these gradients are approimately calculated, the method is called a quasi-newton method. One way to approimately form the gradients is to calculate f i (, ) and f i ( + ) and then form the finite difference approimation: f i () f i( + ), f i (, ) (6.4) The vector is a vector of zeros, ecept for a small perturbation in the th position. Setting f i, (k+) =gives Newton s formula in n dimensions: f i, (k) (k+),, (k) =,f (k) i (6.5) or, where (k+) = (k+), (k) f i ((k) ) (k+) =,f i, (k) (6.6) is the vector of updates. Equation (6.6) is a set of n linear equations in n unknowns, (k+). If the Jacobian is non-singular, then the system of linear equations

15 6. SYSTEMS OF NONLINEAR EQUATIONS 83 can be solved to provide the Newton update: (k+) = (k) + (k+) : (6.7) Each step of Newton s method requires the solution of a set of linear equations. For small n the set of linear equations may be solved using LU decomposition. For large n, alternative iterative methods may be required. As with the one-dimensional version, Newton s method converges quadratically if the initial estimate, (), is sufficiently close to a root. Newton s method in multiple dimensions suffers from the same global convergence problems as its one-dimensional counterpart. 6.. Eample Consider finding and y such that the following are true: f (; y) =, + y, y, y += (6.8) f (; y) = + + y +y +y += (6.9) This is a contrived problem, but it serves to illustrate the application of Newton s in multiple dimensions. Solving for the simultaneous roots of these equations is equivalent to finding the roots of the single factored equation: f (; y) =( + y +), (, y, ) (6.3) Inspection shows that this equation has the root (;,). The first step in applying Newton s method is to determine the form of the Jacobian and the right hand side function vector for calculating the update vector for each iteration. These are: ( (k) ;y (k) ( (k) ;y (k) ) " # " 7 (k+),f ( (k) ;y (k) ) 4@f ( (k) ;y (k) ( (k) ;y (k) ) 5 (k+) = (6.3) y,f ( (k) ;y " #" # " # (, y, ) (y,, ) (k+), +, y +y +y, = (6.3) ( + y +) ( + y +),,, y, y, y, (k+) y

16 84 NONLINEAR EQUATIONS The algorithm for solving this problem is: k ; >; specify starting point: ( (k) ;y (k) ); while: >and k<n (k+),f, f ;(LU factorisation and solution) (k+) (k) + (k+) ; end loop; (k+), (k) k k +; ; Where N is some specified maimum number of iterations and is some specified convergence tolerance. Sequences of Newton steps converging toward the root (;,) for the starting points (,;,3), (;,3) and (; ) are shown in figures (6.8) and (6.9). f(,y) y FIGURE 6.8: Sequence of Newton steps plotted on the surface defined by Equation (6.3).

17 6. SYSTEMS OF NONLINEAR EQUATIONS 85 5 start at (, 3) f(,y) 5 start at (,) 5 start at (, 3) Number of iterations FIGURE 6.9: Convergent behaviour of Equation (6.3) with Newton iteration. 6.. Eample Newton s method for finding roots in multiple dimensions becomes very useful when finding approimate solutions to non-linear partial differential equations. Consider the diffusion equation in one-dimension, where the diffusivity, D, is an eponential function of the @ Aec = This is a non-linear partial differential equation. A finite difference discretisation of this equation for the i th node is: f i = cn+ i, c n i t n, Ae(,)c i +cn+ i,, (, ) c n i,, c n + i cn i+ + c n+ i,, c n+ i + c n+ i+ (6.34) Notice that this is a non-linear equation whose roots are the unknown concentrations c n+, i, cn+ i and c n+ i+. If there are m discrete nodes in our problem, then there are m equations and m unknown concentrations, so Newton s method for multiple dimensions can be applied.

18 86 NONLINEAR EQUATIONS A row in the Jacobian for the internal node i will n+ i or n+ i, n, Ae(,)c i +cn+ n+ i+, Ae (,)c n i +cn+ i t (, ), c n, c n+, i, cn+ i + c n+ i+, i,, c n i + cn i+ + n, Ae(,)c i +cn+ i i (6.35)! (6.36) The corresponding right hand side vector entry for the Newton update is,f i. Note that in contrast to the case of the linear diffusion equation, the system of discrete finite difference equations are now time varying and must be constructed and factorised for each time step. If Dirichlet boundary conditions of and are applied at nodes and n, respectively, then the functions whose roots are to be found are: f = c n+, (6.37) f n = c n+ n (6.38) The corresponding rows in the Jacobian will be: h i h i (6.39) (6.4) The right hand side vector entries for the Newton update are, c n+ and,c n+ n, respectively. Note that the unknown dependent variables for this non-linear problem are c n+. Let these unknowns be referred to simply as c so that the k th Newton update becomes c (k). The algorithm for solving this problem is similar to that of Eample :

19 6. SYSTEMS OF NONLINEAR EQUATIONS 87 for t in T loop k ; >; specify starting point: c (k) ; (This will be the solution from the previous time step) while: >and k<n (k+),f, f ; (LU factorisation and solution) end loop; c (k+) c (k) + (k+) ; (k+), (k) k k +; end loop; ; Results for a problem of length m with = m, t = s and = are shown in Figure 6.. The non-linear solutions were calculated using: D(c) =:368e c (6.4) The coefficient was chosen such that D = m s, at c = kgm,. The linear solutions were calculated using D =:63 m s,. This value was chosen as the integrated mean value of D(c) from c = kg m, to c = kg m,. The variation of the diffusion coefficient with concentration is shown in Figure 6.. The non-linear diffusion coefficient is smaller than the constant diffusion coefficient at lower concentrations. This is observed in the solutions, as the concentration profile for the non-linear diffusion does not advance as far as for constant diffusion over the same interval of time.

20 88 NONLINEAR EQUATIONS L 5s NL 5s L s NL s L 5s NL 5s Concentration Concentration (m).5 Linear Non linear Time (s) (a) Profiles (b) Time history at =5m FIGURE 6.: Comparative solutions for constant diffusion and non-linear diffusion.. D=.368ep(c) D=.63.9 Diffusion Coefficient Concentration FIGURE 6.: Non-linear and constant diffusion functions. Solving this eample problem produced the following non-linear iteration information over the course of the first time step: Time: second Iteration: LNorm(F) =.E+ Delta=.6E+ Iteration: LNorm(F) =.5549E- Delta=.9876E+ Iteration: 3 LNorm(F) =.8958E-3 Delta=.3755E- Iteration: 4 LNorm(F) =.78E-6 Delta=.5565E-3 Iteration: 5 LNorm(F) =.48E-3 Delta=.438E-6

21 6. SYSTEMS OF NONLINEAR EQUATIONS 89 Note that F is the right hand side vector, so its magnitude (or L norm) may be thought of as an indication of how good the solution at that iteration is. The solution is accurate when F is very small. Delta is a measure of how much the solution is changing from one iteration to the net. The Newton iterations are clearly converging.

Numerical Methods. Root Finding

Numerical Methods. Root Finding Numerical Methods Solving Non Linear 1-Dimensional Equations Root Finding Given a real valued function f of one variable (say ), the idea is to find an such that: f() 0 1 Root Finding Eamples Find real

More information

Nonlinear Equations. Chapter The Bisection Method

Nonlinear Equations. Chapter The Bisection Method Chapter 6 Nonlinear Equations Given a nonlinear function f(), a value r such that f(r) = 0, is called a root or a zero of f() For eample, for f() = e 016064, Fig?? gives the set of points satisfying y

More information

Exact and Approximate Numbers:

Exact and Approximate Numbers: Eact and Approimate Numbers: The numbers that arise in technical applications are better described as eact numbers because there is not the sort of uncertainty in their values that was described above.

More information

by Martin Mendez, UASLP Copyright 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display.

by Martin Mendez, UASLP Copyright 2006 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. Chapter 5 by Martin Mendez, 1 Roots of Equations Part Why? b m b a + b + c = 0 = aa 4ac But a 5 4 3 + b + c + d + e + f = 0 sin + = 0 =? =? by Martin Mendez, Nonlinear Equation Solvers Bracketing Graphical

More information

15 Nonlinear Equations and Zero-Finders

15 Nonlinear Equations and Zero-Finders 15 Nonlinear Equations and Zero-Finders This lecture describes several methods for the solution of nonlinear equations. In particular, we will discuss the computation of zeros of nonlinear functions f(x).

More information

CLASS NOTES Computational Methods for Engineering Applications I Spring 2015

CLASS NOTES Computational Methods for Engineering Applications I Spring 2015 CLASS NOTES Computational Methods for Engineering Applications I Spring 2015 Petros Koumoutsakos Gerardo Tauriello (Last update: July 2, 2015) IMPORTANT DISCLAIMERS 1. REFERENCES: Much of the material

More information

(One Dimension) Problem: for a function f(x), find x 0 such that f(x 0 ) = 0. f(x)

(One Dimension) Problem: for a function f(x), find x 0 such that f(x 0 ) = 0. f(x) Solving Nonlinear Equations & Optimization One Dimension Problem: or a unction, ind 0 such that 0 = 0. 0 One Root: The Bisection Method This one s guaranteed to converge at least to a singularity, i not

More information

Solution of Nonlinear Equations

Solution of Nonlinear Equations Solution of Nonlinear Equations (Com S 477/577 Notes) Yan-Bin Jia Sep 14, 017 One of the most frequently occurring problems in scientific work is to find the roots of equations of the form f(x) = 0. (1)

More information

NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR)

NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR) NUMERICAL AND STATISTICAL COMPUTING (MCA-202-CR) Autumn Session UNIT 1 Numerical analysis is the study of algorithms that uses, creates and implements algorithms for obtaining numerical solutions to problems

More information

Unconstrained Multivariate Optimization

Unconstrained Multivariate Optimization Unconstrained Multivariate Optimization Multivariate optimization means optimization of a scalar function of a several variables: and has the general form: y = () min ( ) where () is a nonlinear scalar-valued

More information

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 4

2.29 Numerical Fluid Mechanics Spring 2015 Lecture 4 2.29 Spring 2015 Lecture 4 Review Lecture 3 Truncation Errors, Taylor Series and Error Analysis Taylor series: 2 3 n n i1 i i i i i n f( ) f( ) f '( ) f ''( ) f '''( )... f ( ) R 2! 3! n! n1 ( n1) Rn f

More information

LECTURE NOTES ELEMENTARY NUMERICAL METHODS. Eusebius Doedel

LECTURE NOTES ELEMENTARY NUMERICAL METHODS. Eusebius Doedel LECTURE NOTES on ELEMENTARY NUMERICAL METHODS Eusebius Doedel TABLE OF CONTENTS Vector and Matrix Norms 1 Banach Lemma 20 The Numerical Solution of Linear Systems 25 Gauss Elimination 25 Operation Count

More information

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435

PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 PART I Lecture Notes on Numerical Solution of Root Finding Problems MATH 435 Professor Biswa Nath Datta Department of Mathematical Sciences Northern Illinois University DeKalb, IL. 60115 USA E mail: dattab@math.niu.edu

More information

Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane.

Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane. Queens College, CUNY, Department of Computer Science Numerical Methods CSCI 361 / 761 Spring 2018 Instructor: Dr. Sateesh Mane c Sateesh R. Mane 2018 3 Lecture 3 3.1 General remarks March 4, 2018 This

More information

Numerical Analysis: Solving Nonlinear Equations

Numerical Analysis: Solving Nonlinear Equations Numerical Analysis: Solving Nonlinear Equations Mirko Navara http://cmp.felk.cvut.cz/ navara/ Center for Machine Perception, Department of Cybernetics, FEE, CTU Karlovo náměstí, building G, office 104a

More information

SOLVING EQUATIONS OF ONE VARIABLE

SOLVING EQUATIONS OF ONE VARIABLE 1 SOLVING EQUATIONS OF ONE VARIABLE ELM1222 Numerical Analysis Some of the contents are adopted from Laurene V. Fausett, Applied Numerical Analysis using MATLAB. Prentice Hall Inc., 1999 2 Today s lecture

More information

MORE CURVE SKETCHING

MORE CURVE SKETCHING Mathematics Revision Guides More Curve Sketching Page of 3 MK HOME TUITION Mathematics Revision Guides Level: AS / A Level MEI OCR MEI: C4 MORE CURVE SKETCHING Version : 5 Date: 05--007 Mathematics Revision

More information

SOLUTION OF ALGEBRAIC AND TRANSCENDENTAL EQUATIONS BISECTION METHOD

SOLUTION OF ALGEBRAIC AND TRANSCENDENTAL EQUATIONS BISECTION METHOD BISECTION METHOD If a function f(x) is continuous between a and b, and f(a) and f(b) are of opposite signs, then there exists at least one root between a and b. It is shown graphically as, Let f a be negative

More information

3.1 Introduction. Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x x 1.5 =0, tan x x =0.

3.1 Introduction. Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x x 1.5 =0, tan x x =0. 3.1 Introduction Solve non-linear real equation f(x) = 0 for real root or zero x. E.g. x 3 +1.5x 1.5 =0, tan x x =0. Practical existence test for roots: by intermediate value theorem, f C[a, b] & f(a)f(b)

More information

Numerical Solution of f(x) = 0

Numerical Solution of f(x) = 0 Numerical Solution of f(x) = 0 Gerald W. Recktenwald Department of Mechanical Engineering Portland State University gerry@pdx.edu ME 350: Finding roots of f(x) = 0 Overview Topics covered in these slides

More information

Numerical solutions of nonlinear systems of equations

Numerical solutions of nonlinear systems of equations Numerical solutions of nonlinear systems of equations Tsung-Ming Huang Department of Mathematics National Taiwan Normal University, Taiwan E-mail: min@math.ntnu.edu.tw August 28, 2011 Outline 1 Fixed points

More information

NUMERICAL METHODS FOR SOLVING EQUATIONS

NUMERICAL METHODS FOR SOLVING EQUATIONS Mathematics Revision Guides Numerical Methods for Solving Equations Page of M.K. HOME TUITION Mathematics Revision Guides Level: AS / A Level AQA : C3 Edecel: C3 OCR: C3 NUMERICAL METHODS FOR SOLVING EQUATIONS

More information

Lecture Notes to Accompany. Scientific Computing An Introductory Survey. by Michael T. Heath. Chapter 5. Nonlinear Equations

Lecture Notes to Accompany. Scientific Computing An Introductory Survey. by Michael T. Heath. Chapter 5. Nonlinear Equations Lecture Notes to Accompany Scientific Computing An Introductory Survey Second Edition by Michael T Heath Chapter 5 Nonlinear Equations Copyright c 2001 Reproduction permitted only for noncommercial, educational

More information

SOLVING QUADRATICS. Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources

SOLVING QUADRATICS. Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources SOLVING QUADRATICS Copyright - Kramzil Pty Ltd trading as Academic Teacher Resources SOLVING QUADRATICS General Form: y a b c Where a, b and c are constants To solve a quadratic equation, the equation

More information

Chapter 3: Root Finding. September 26, 2005

Chapter 3: Root Finding. September 26, 2005 Chapter 3: Root Finding September 26, 2005 Outline 1 Root Finding 2 3.1 The Bisection Method 3 3.2 Newton s Method: Derivation and Examples 4 3.3 How To Stop Newton s Method 5 3.4 Application: Division

More information

Determining the Roots of Non-Linear Equations Part I

Determining the Roots of Non-Linear Equations Part I Determining the Roots of Non-Linear Equations Part I Prof. Dr. Florian Rupp German University of Technology in Oman (GUtech) Introduction to Numerical Methods for ENG & CS (Mathematics IV) Spring Term

More information

CS 450 Numerical Analysis. Chapter 5: Nonlinear Equations

CS 450 Numerical Analysis. Chapter 5: Nonlinear Equations Lecture slides based on the textbook Scientific Computing: An Introductory Survey by Michael T. Heath, copyright c 2018 by the Society for Industrial and Applied Mathematics. http://www.siam.org/books/cl80

More information

ROOT FINDING REVIEW MICHELLE FENG

ROOT FINDING REVIEW MICHELLE FENG ROOT FINDING REVIEW MICHELLE FENG 1.1. Bisection Method. 1. Root Finding Methods (1) Very naive approach based on the Intermediate Value Theorem (2) You need to be looking in an interval with only one

More information

Finding the Roots of f(x) = 0. Gerald W. Recktenwald Department of Mechanical Engineering Portland State University

Finding the Roots of f(x) = 0. Gerald W. Recktenwald Department of Mechanical Engineering Portland State University Finding the Roots of f(x) = 0 Gerald W. Recktenwald Department of Mechanical Engineering Portland State University gerry@me.pdx.edu These slides are a supplement to the book Numerical Methods with Matlab:

More information

Finding the Roots of f(x) = 0

Finding the Roots of f(x) = 0 Finding the Roots of f(x) = 0 Gerald W. Recktenwald Department of Mechanical Engineering Portland State University gerry@me.pdx.edu These slides are a supplement to the book Numerical Methods with Matlab:

More information

SYLLABUS FOR ENTRANCE EXAMINATION NANYANG TECHNOLOGICAL UNIVERSITY FOR INTERNATIONAL STUDENTS A-LEVEL MATHEMATICS

SYLLABUS FOR ENTRANCE EXAMINATION NANYANG TECHNOLOGICAL UNIVERSITY FOR INTERNATIONAL STUDENTS A-LEVEL MATHEMATICS SYLLABUS FOR ENTRANCE EXAMINATION NANYANG TECHNOLOGICAL UNIVERSITY FOR INTERNATIONAL STUDENTS A-LEVEL MATHEMATICS STRUCTURE OF EXAMINATION PAPER. There will be one -hour paper consisting of 4 questions..

More information

Scientific Computing: An Introductory Survey

Scientific Computing: An Introductory Survey Scientific Computing: An Introductory Survey Chapter 5 Nonlinear Equations Prof. Michael T. Heath Department of Computer Science University of Illinois at Urbana-Champaign Copyright c 2002. Reproduction

More information

Solving Non-Linear Equations (Root Finding)

Solving Non-Linear Equations (Root Finding) Solving Non-Linear Equations (Root Finding) Root finding Methods What are root finding methods? Methods for determining a solution of an equation. Essentially finding a root of a function, that is, a zero

More information

Polynomial Functions of Higher Degree

Polynomial Functions of Higher Degree SAMPLE CHAPTER. NOT FOR DISTRIBUTION. 4 Polynomial Functions of Higher Degree Polynomial functions of degree greater than 2 can be used to model data such as the annual temperature fluctuations in Daytona

More information

CHAPTER 2 EXTRACTION OF THE QUADRATICS FROM REAL ALGEBRAIC POLYNOMIAL

CHAPTER 2 EXTRACTION OF THE QUADRATICS FROM REAL ALGEBRAIC POLYNOMIAL 24 CHAPTER 2 EXTRACTION OF THE QUADRATICS FROM REAL ALGEBRAIC POLYNOMIAL 2.1 INTRODUCTION Polynomial factorization is a mathematical problem, which is often encountered in applied sciences and many of

More information

Page No.1. MTH603-Numerical Analysis_ Muhammad Ishfaq

Page No.1. MTH603-Numerical Analysis_ Muhammad Ishfaq Page No.1 File Version v1.5.3 Update: (Dated: 3-May-011) This version of file contains: Content of the Course (Done) FAQ updated version.(these must be read once because some very basic definition and

More information

Outline. Scientific Computing: An Introductory Survey. Nonlinear Equations. Nonlinear Equations. Examples: Nonlinear Equations

Outline. Scientific Computing: An Introductory Survey. Nonlinear Equations. Nonlinear Equations. Examples: Nonlinear Equations Methods for Systems of Methods for Systems of Outline Scientific Computing: An Introductory Survey Chapter 5 1 Prof. Michael T. Heath Department of Computer Science University of Illinois at Urbana-Champaign

More information

Order of convergence. MA3232 Numerical Analysis Week 3 Jack Carl Kiefer ( ) Question: How fast does x n

Order of convergence. MA3232 Numerical Analysis Week 3 Jack Carl Kiefer ( ) Question: How fast does x n Week 3 Jack Carl Kiefer (94-98) Jack Kiefer was an American statistician. Much of his research was on the optimal design of eperiments. However, he also made significant contributions to other areas of

More information

Iteration & Fixed Point

Iteration & Fixed Point Iteration & Fied Point As a method for finding the root of f this method is difficult, but it illustrates some important features of iterstion. We could write f as f g and solve g. Definition.1 (Fied Point)

More information

Linear Algebraic Equations

Linear Algebraic Equations Linear Algebraic Equations Linear Equations: a + a + a + a +... + a = c 11 1 12 2 13 3 14 4 1n n 1 a + a + a + a +... + a = c 21 2 2 23 3 24 4 2n n 2 a + a + a + a +... + a = c 31 1 32 2 33 3 34 4 3n n

More information

12.1 The Extrema of a Function

12.1 The Extrema of a Function . The Etrema of a Function Question : What is the difference between a relative etremum and an absolute etremum? Question : What is a critical point of a function? Question : How do you find the relative

More information

EAD 115. Numerical Solution of Engineering and Scientific Problems. David M. Rocke Department of Applied Science

EAD 115. Numerical Solution of Engineering and Scientific Problems. David M. Rocke Department of Applied Science EAD 115 Numerical Solution of Engineering and Scientific Problems David M. Rocke Department of Applied Science Taylor s Theorem Can often approximate a function by a polynomial The error in the approximation

More information

Statistical Geometry Processing Winter Semester 2011/2012

Statistical Geometry Processing Winter Semester 2011/2012 Statistical Geometry Processing Winter Semester 2011/2012 Linear Algebra, Function Spaces & Inverse Problems Vector and Function Spaces 3 Vectors vectors are arrows in space classically: 2 or 3 dim. Euclidian

More information

Geometric Modeling Summer Semester 2010 Mathematical Tools (1)

Geometric Modeling Summer Semester 2010 Mathematical Tools (1) Geometric Modeling Summer Semester 2010 Mathematical Tools (1) Recap: Linear Algebra Today... Topics: Mathematical Background Linear algebra Analysis & differential geometry Numerical techniques Geometric

More information

Math Honors Calculus I Final Examination, Fall Semester, 2013

Math Honors Calculus I Final Examination, Fall Semester, 2013 Math 2 - Honors Calculus I Final Eamination, Fall Semester, 2 Time Allowed: 2.5 Hours Total Marks:. (2 Marks) Find the following: ( (a) 2 ) sin 2. (b) + (ln 2)/(+ln ). (c) The 2-th Taylor polynomial centered

More information

Chapter 10 Introduction to the Derivative

Chapter 10 Introduction to the Derivative Chapter 0 Introduction to the Derivative The concept of a derivative takes up half the study of Calculus. A derivative, basically, represents rates of change. 0. Limits: Numerical and Graphical Approaches

More information

A BRIEF REVIEW OF ALGEBRA AND TRIGONOMETRY

A BRIEF REVIEW OF ALGEBRA AND TRIGONOMETRY A BRIEF REVIEW OF ALGEBRA AND TRIGONOMETR Some Key Concepts:. The slope and the equation of a straight line. Functions and functional notation. The average rate of change of a function and the DIFFERENCE-

More information

Goals for This Lecture:

Goals for This Lecture: Goals for This Lecture: Learn the Newton-Raphson method for finding real roots of real functions Learn the Bisection method for finding real roots of a real function Look at efficient implementations of

More information

Nonlinear Equations. Not guaranteed to have any real solutions, but generally do for astrophysical problems.

Nonlinear Equations. Not guaranteed to have any real solutions, but generally do for astrophysical problems. Nonlinear Equations Often (most of the time??) the relevant system of equations is not linear in the unknowns. Then, cannot decompose as Ax = b. Oh well. Instead write as: (1) f(x) = 0 function of one

More information

3.3.1 Linear functions yet again and dot product In 2D, a homogenous linear scalar function takes the general form:

3.3.1 Linear functions yet again and dot product In 2D, a homogenous linear scalar function takes the general form: 3.3 Gradient Vector and Jacobian Matri 3 3.3 Gradient Vector and Jacobian Matri Overview: Differentiable functions have a local linear approimation. Near a given point, local changes are determined by

More information

Lecture 5: Rules of Differentiation. First Order Derivatives

Lecture 5: Rules of Differentiation. First Order Derivatives Lecture 5: Rules of Differentiation First order derivatives Higher order derivatives Partial differentiation Higher order partials Differentials Derivatives of implicit functions Generalized implicit function

More information

Chapter 4. Solution of a Single Nonlinear Algebraic Equation

Chapter 4. Solution of a Single Nonlinear Algebraic Equation Single Nonlinear Algebraic Equation - 56 Chapter 4. Solution of a Single Nonlinear Algebraic Equation 4.1. Introduction Life, my fris, is nonlinear. As such, in our roles as problem-solvers, we will be

More information

CHAPTER-II ROOTS OF EQUATIONS

CHAPTER-II ROOTS OF EQUATIONS CHAPTER-II ROOTS OF EQUATIONS 2.1 Introduction The roots or zeros of equations can be simply defined as the values of x that makes f(x) =0. There are many ways to solve for roots of equations. For some

More information

3.5 Continuity of a Function One Sided Continuity Intermediate Value Theorem... 23

3.5 Continuity of a Function One Sided Continuity Intermediate Value Theorem... 23 Chapter 3 Limit and Continuity Contents 3. Definition of Limit 3 3.2 Basic Limit Theorems 8 3.3 One sided Limit 4 3.4 Infinite Limit, Limit at infinity and Asymptotes 5 3.4. Infinite Limit and Vertical

More information

3.1: 1, 3, 5, 9, 10, 12, 14, 18

3.1: 1, 3, 5, 9, 10, 12, 14, 18 3.:, 3, 5, 9,,, 4, 8 ) We want to solve d d c() d = f() with c() = c = constant and f() = for different boundary conditions to get w() and u(). dw d = dw d d = ( )d w() w() = w() = w() ( ) c d d = u()

More information

Brief Revision Notes and Strategies

Brief Revision Notes and Strategies Brief Revision Notes and Strategies Straight Line Distance Formula d = ( ) + ( y y ) d is distance between A(, y ) and B(, y ) Mid-point formula +, y + M y M is midpoint of A(, y ) and B(, y ) y y Equation

More information

National Quali cations AHEXEMPLAR PAPER ONLY

National Quali cations AHEXEMPLAR PAPER ONLY National Quali cations AHEXEMPLAR PAPER ONLY EP/AH/0 Mathematics Date Not applicable Duration hours Total marks 00 Attempt ALL questions. You may use a calculator. Full credit will be given only to solutions

More information

3.2 Logarithmic Functions and Their Graphs

3.2 Logarithmic Functions and Their Graphs 96 Chapter 3 Eponential and Logarithmic Functions 3.2 Logarithmic Functions and Their Graphs Logarithmic Functions In Section.6, you studied the concept of an inverse function. There, you learned that

More information

Finding roots. Lecture 4

Finding roots. Lecture 4 Finding roots Lecture 4 Finding roots: Find such that 0 or given. Bisection method: The intermediate value theorem states the obvious: i a continuous unction changes sign within a given interval, it has

More information

Course. Print and use this sheet in conjunction with MathinSite s Maclaurin Series applet and worksheet.

Course. Print and use this sheet in conjunction with MathinSite s Maclaurin Series applet and worksheet. Maclaurin Series Learning Outcomes After reading this theory sheet, you should recognise the difference between a function and its polynomial epansion (if it eists!) understand what is meant by a series

More information

Time: 1 hour 30 minutes

Time: 1 hour 30 minutes Paper Reference(s) 6665/01 Edecel GCE Core Mathematics C Silver Level S Time: 1 hour 0 minutes Materials required for eamination papers Mathematical Formulae (Green) Items included with question Nil Candidates

More information

Math 411 Preliminaries

Math 411 Preliminaries Math 411 Preliminaries Provide a list of preliminary vocabulary and concepts Preliminary Basic Netwon s method, Taylor series expansion (for single and multiple variables), Eigenvalue, Eigenvector, Vector

More information

Linear Equations in Linear Algebra

Linear Equations in Linear Algebra 1 Linear Equations in Linear Algebra 1.1 SYSTEMS OF LINEAR EQUATIONS LINEAR EQUATION,, 1 n A linear equation in the variables equation that can be written in the form a a a b 1 1 2 2 n n a a is an where

More information

Numerical Methods in Informatics

Numerical Methods in Informatics Numerical Methods in Informatics Lecture 2, 30.09.2016: Nonlinear Equations in One Variable http://www.math.uzh.ch/binf4232 Tulin Kaman Institute of Mathematics, University of Zurich E-mail: tulin.kaman@math.uzh.ch

More information

Math Review and Lessons in Calculus

Math Review and Lessons in Calculus Math Review and Lessons in Calculus Agenda Rules o Eponents Functions Inverses Limits Calculus Rules o Eponents 0 Zero Eponent Rule a * b ab Product Rule * 3 5 a / b a-b Quotient Rule 5 / 3 -a / a Negative

More information

Review of elements of Calculus (functions in one variable)

Review of elements of Calculus (functions in one variable) Review of elements of Calculus (functions in one variable) Mainly adapted from the lectures of prof Greg Kelly Hanford High School, Richland Washington http://online.math.uh.edu/houstonact/ https://sites.google.com/site/gkellymath/home/calculuspowerpoints

More information

CE 601: Numerical Methods Lecture 7. Course Coordinator: Dr. Suresh A. Kartha, Associate Professor, Department of Civil Engineering, IIT Guwahati.

CE 601: Numerical Methods Lecture 7. Course Coordinator: Dr. Suresh A. Kartha, Associate Professor, Department of Civil Engineering, IIT Guwahati. CE 60: Numerical Methods Lecture 7 Course Coordinator: Dr. Suresh A. Kartha, Associate Professor, Department of Civil Engineering, IIT Guwahati. Drawback in Elimination Methods There are various drawbacks

More information

To find the absolute extrema on a continuous function f defined over a closed interval,

To find the absolute extrema on a continuous function f defined over a closed interval, Question 4: How do you find the absolute etrema of a function? The absolute etrema of a function is the highest or lowest point over which a function is defined. In general, a function may or may not have

More information

Finding Roots of Equations

Finding Roots of Equations Finding Roots of Equations Solution Methods Overview Bisection/Half-interval Search Method of false position/regula Falsi Secant Method Newton Raphson Iteration Method Many more. Open Methods Bracketing

More information

Mathematics syllabus for Grade 11 and 12 For Bilingual Schools in the Sultanate of Oman

Mathematics syllabus for Grade 11 and 12 For Bilingual Schools in the Sultanate of Oman 03 04 Mathematics syllabus for Grade and For Bilingual Schools in the Sultanate of Oman Prepared By: A Stevens (Qurum Private School) M Katira (Qurum Private School) M Hawthorn (Al Sahwa Schools) In Conjunction

More information

Pre-Calculus and Trigonometry Capacity Matrix

Pre-Calculus and Trigonometry Capacity Matrix Pre-Calculus and Capacity Matri Review Polynomials A1.1.4 A1.2.5 Add, subtract, multiply and simplify polynomials and rational epressions Solve polynomial equations and equations involving rational epressions

More information

Given the vectors u, v, w and real numbers α, β, γ. Calculate vector a, which is equal to the linear combination α u + β v + γ w.

Given the vectors u, v, w and real numbers α, β, γ. Calculate vector a, which is equal to the linear combination α u + β v + γ w. Selected problems from the tetbook J. Neustupa, S. Kračmar: Sbírka příkladů z Matematiky I Problems in Mathematics I I. LINEAR ALGEBRA I.. Vectors, vector spaces Given the vectors u, v, w and real numbers

More information

Answer Key 1973 BC 1969 BC 24. A 14. A 24. C 25. A 26. C 27. C 28. D 29. C 30. D 31. C 13. C 12. D 12. E 3. A 32. B 27. E 34. C 14. D 25. B 26.

Answer Key 1973 BC 1969 BC 24. A 14. A 24. C 25. A 26. C 27. C 28. D 29. C 30. D 31. C 13. C 12. D 12. E 3. A 32. B 27. E 34. C 14. D 25. B 26. Answer Key 969 BC 97 BC. C. E. B. D 5. E 6. B 7. D 8. C 9. D. A. B. E. C. D 5. B 6. B 7. B 8. E 9. C. A. B. E. D. C 5. A 6. C 7. C 8. D 9. C. D. C. B. A. D 5. A 6. B 7. D 8. A 9. D. E. D. B. E. E 5. E.

More information

NONLINEAR FUNCTIONS A. Absolute Value Exercises: 2. We need to scale the graph of Qx ( )

NONLINEAR FUNCTIONS A. Absolute Value Exercises: 2. We need to scale the graph of Qx ( ) NONLINEAR FUNCTIONS A. Absolute Value Eercises:. We need to scale the graph of Q ( ) f ( ) =. The graph is given below. = by the factor of to get the graph of 9 - - - - -. We need to scale the graph of

More information

Math 2412 Activity 2(Due by EOC Feb. 27) Find the quadratic function that satisfies the given conditions. Show your work!

Math 2412 Activity 2(Due by EOC Feb. 27) Find the quadratic function that satisfies the given conditions. Show your work! Math 4 Activity (Due by EOC Feb 7) Find the quadratic function that satisfies the given conditions Show your work! The graph has a verte at 5, and it passes through the point, 0 7 The graph passes through

More information

Line Search Methods. Shefali Kulkarni-Thaker

Line Search Methods. Shefali Kulkarni-Thaker 1 BISECTION METHOD Line Search Methods Shefali Kulkarni-Thaker Consider the following unconstrained optimization problem min f(x) x R Any optimization algorithm starts by an initial point x 0 and performs

More information

3x 2. x ))))) and sketch the graph, labelling everything.

3x 2. x ))))) and sketch the graph, labelling everything. Fall 2006 Practice Math 102 Final Eam 1 1. Sketch the graph of f() =. What is the domain of f? [0, ) Use transformations to sketch the graph of g() = 2. What is the domain of g? 1 1 2. a. Given f() = )))))

More information

Topic 8c Multi Variable Optimization

Topic 8c Multi Variable Optimization Course Instructor Dr. Raymond C. Rumpf Office: A 337 Phone: (915) 747 6958 E Mail: rcrumpf@utep.edu Topic 8c Multi Variable Optimization EE 4386/5301 Computational Methods in EE Outline Mathematical Preliminaries

More information

Pre-Calculus Module 4

Pre-Calculus Module 4 Pre-Calculus Module 4 4 th Nine Weeks Table of Contents Precalculus Module 4 Unit 9 Rational Functions Rational Functions with Removable Discontinuities (1 5) End Behavior of Rational Functions (6) Rational

More information

Root Finding Methods

Root Finding Methods Root Finding Methods Let's take a simple problem ax 2 +bx+c=0 Can calculate roots using the quadratic equation or just by factoring Easy and does not need any numerical methods How about solving for the

More information

Lecture 12 Eigenvalue Problem. Review of Eigenvalues Some properties Power method Shift method Inverse power method Deflation QR Method

Lecture 12 Eigenvalue Problem. Review of Eigenvalues Some properties Power method Shift method Inverse power method Deflation QR Method Lecture Eigenvalue Problem Review of Eigenvalues Some properties Power method Shift method Inverse power method Deflation QR Method Eigenvalue Eigenvalue ( A I) If det( A I) (trivial solution) To obtain

More information

Core Mathematics 2 Unit C2 AS

Core Mathematics 2 Unit C2 AS Core Mathematics 2 Unit C2 AS compulsory unit for GCE AS and GCE Mathematics, GCE AS and GCE Pure Mathematics C2.1 Unit description Algebra and functions; coordinate geometry in the (, y) plane; sequences

More information

3 6 x a. 12 b. 63 c. 27 d. 0. 6, find

3 6 x a. 12 b. 63 c. 27 d. 0. 6, find Advanced Algebra Topics COMPASS Review revised Summer 0 You will be allowed to use a calculator on the COMPASS test Acceptable calculators are basic calculators, scientific calculators, and approved models

More information

MA10103: Foundation Mathematics I. Lecture Notes Week 1

MA10103: Foundation Mathematics I. Lecture Notes Week 1 MA00: Foundation Mathematics I Lecture Notes Week Numbers The naturals are the nonnegative whole numbers, i.e., 0,,,, 4,.... The set of naturals is denoted by N. Warning: Sometimes only the positive integers

More information

Finding Slope. Find the slopes of the lines passing through the following points. rise run

Finding Slope. Find the slopes of the lines passing through the following points. rise run Finding Slope Find the slopes of the lines passing through the following points. y y1 Formula for slope: m 1 m rise run Find the slopes of the lines passing through the following points. E #1: (7,0) and

More information

Core Mathematics 3 A2 compulsory unit for GCE Mathematics and GCE Pure Mathematics Mathematics. Unit C3. C3.1 Unit description

Core Mathematics 3 A2 compulsory unit for GCE Mathematics and GCE Pure Mathematics Mathematics. Unit C3. C3.1 Unit description Unit C3 Core Mathematics 3 A2 compulsory unit for GCE Mathematics and GCE Pure Mathematics Mathematics C3. Unit description Algebra and functions; trigonometry; eponentials and logarithms; differentiation;

More information

Scientific Computing. Roots of Equations

Scientific Computing. Roots of Equations ECE257 Numerical Methods and Scientific Computing Roots of Equations Today s s class: Roots of Equations Polynomials Polynomials A polynomial is of the form: ( x) = a 0 + a 1 x + a 2 x 2 +L+ a n x n f

More information

CHAPTER 10 Zeros of Functions

CHAPTER 10 Zeros of Functions CHAPTER 10 Zeros of Functions An important part of the maths syllabus in secondary school is equation solving. This is important for the simple reason that equations are important a wide range of problems

More information

CAMI Education links: Maths NQF Level 4

CAMI Education links: Maths NQF Level 4 CONTENT 1.1 Work with Comple numbers 1. Solve problems using comple numbers.1 Work with algebraic epressions using the remainder and factor theorems CAMI Education links: MATHEMATICS NQF Level 4 LEARNING

More information

Solution of Algebric & Transcendental Equations

Solution of Algebric & Transcendental Equations Page15 Solution of Algebric & Transcendental Equations Contents: o Introduction o Evaluation of Polynomials by Horner s Method o Methods of solving non linear equations o Bracketing Methods o Bisection

More information

= V I = Bus Admittance Matrix. Chapter 6: Power Flow. Constructing Ybus. Example. Network Solution. Triangular factorization. Let

= V I = Bus Admittance Matrix. Chapter 6: Power Flow. Constructing Ybus. Example. Network Solution. Triangular factorization. Let Chapter 6: Power Flow Network Matrices Network Solutions Newton-Raphson Method Fast Decoupled Method Bus Admittance Matri Let I = vector of currents injected into nodes V = vector of node voltages Y bus

More information

Numerical Methods - Lecture 2. Numerical Methods. Lecture 2. Analysis of errors in numerical methods

Numerical Methods - Lecture 2. Numerical Methods. Lecture 2. Analysis of errors in numerical methods Numerical Methods - Lecture 1 Numerical Methods Lecture. Analysis o errors in numerical methods Numerical Methods - Lecture Why represent numbers in loating point ormat? Eample 1. How a number 56.78 can

More information

1. Find the domain of the following functions. Write your answer using interval notation. (9 pts.)

1. Find the domain of the following functions. Write your answer using interval notation. (9 pts.) MATH- Sample Eam Spring 7. Find the domain of the following functions. Write your answer using interval notation. (9 pts.) a. 9 f ( ) b. g ( ) 9 8 8. Write the equation of the circle in standard form given

More information

A nonlinear equation is any equation of the form. f(x) = 0. A nonlinear equation can have any number of solutions (finite, countable, uncountable)

A nonlinear equation is any equation of the form. f(x) = 0. A nonlinear equation can have any number of solutions (finite, countable, uncountable) Nonlinear equations Definition A nonlinear equation is any equation of the form where f is a nonlinear function. Nonlinear equations x 2 + x + 1 = 0 (f : R R) f(x) = 0 (x cos y, 2y sin x) = (0, 0) (f :

More information

Mathematics for Engineers. Numerical mathematics

Mathematics for Engineers. Numerical mathematics Mathematics for Engineers Numerical mathematics Integers Determine the largest representable integer with the intmax command. intmax ans = int32 2147483647 2147483647+1 ans = 2.1475e+09 Remark The set

More information

Numerical Analysis Fall. Roots: Open Methods

Numerical Analysis Fall. Roots: Open Methods Numerical Analysis 2015 Fall Roots: Open Methods Open Methods Open methods differ from bracketing methods, in that they require only a single starting value or two starting values that do not necessarily

More information

Numerical Methods I Solving Nonlinear Equations

Numerical Methods I Solving Nonlinear Equations Numerical Methods I Solving Nonlinear Equations Aleksandar Donev Courant Institute, NYU 1 donev@courant.nyu.edu 1 MATH-GA 2011.003 / CSCI-GA 2945.003, Fall 2014 October 16th, 2014 A. Donev (Courant Institute)

More information

8 Differential Calculus 1 Introduction

8 Differential Calculus 1 Introduction 8 Differential Calculus Introduction The ideas that are the basis for calculus have been with us for a ver long time. Between 5 BC and 5 BC, Greek mathematicians were working on problems that would find

More information

Limits and Their Properties

Limits and Their Properties Chapter 1 Limits and Their Properties Course Number Section 1.1 A Preview of Calculus Objective: In this lesson you learned how calculus compares with precalculus. I. What is Calculus? (Pages 42 44) Calculus

More information

Baruch College MTH 1030 Sample Final B Form 0809 PAGE 1

Baruch College MTH 1030 Sample Final B Form 0809 PAGE 1 Baruch College MTH 00 Sample Final B Form 0809 PAGE MTH 00 SAMPLE FINAL B BARUCH COLLEGE DEPARTMENT OF MATHEMATICS SPRING 00 PART I (NO PARTIAL CREDIT, NO CALCULATORS ALLOWED). ON THE FINAL EXAM, THERE

More information