Iterative solvers for nonlinear equations

Size: px
Start display at page:

Download "Iterative solvers for nonlinear equations"

Transcription

1 I Math Institute of Mathematics Iterative solvers for nonlinear equations Dr. Svetlana Tokareva 10/03/2016

2 Motivation Example (State equation of a gas) We want to determine the volume V occupied by a gas at temperature T and pressure p. The state equation that relates V, p and T is ( ( N ) ) 2 p + a (V Nb) = knt, V where a and b are gas-specific constants, N is the number of molecules in V and k is the Boltzmann constant. We need to solve the nonlinear equation with respect to V. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 2

3 Example (Population dynamics) The equation x + = xr(x) links the number of individuals in a generation x and in the following generation. Function R(x) models the variation rate of the population and can be modeled e.g. as: r R(x) =, r > 0, K > 0; 1 + xk rx R(x) = 1 + (x/k ) 2 etc. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 3

4 Nonlinear equations Model problem We consider a scalar nonlinear equation f (x) = 0, x [a, b] R. (1) Assume that f is continuous on [a, b], denoted f C[a, b]. Denote a solution of (1) by x. Solution x is called root of the equation (1), or zero of function f. Geometric interpretation: the roots of equation (1) are intersections of the graphs of y = f (x) and y = 0. In general, equation f (x) = 0 might have more than one root or no roots at all! University of Zurich, I Math 10/03/2016 Nonlinear equations Page 4

5 Example 1 We solve x 1 = 0. f (x) = x 1, x [0, 2]. This is a linear equation with one root: x = f(x) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 5

6 Example 2 f (x) = sin(x), x R. We solve sin(x) = 0. This is a nonlinear equation. Since sin(πn) = 0 for any integer n, we have on the interval [ π 2, 3π ] there is one root; 2 on the interval [0, 4π] there are five roots f(x) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 6

7 Example 3 f (x) = x 3 30x , 0 x 20. We solve x 3 30x = 0. f (x) is a cubic polynomial. In general, there are at three complex roots. How many real roots? From the plot we see that x is the only real root on the interval [0, 20] f(x) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 7

8 Example 4 f (x) = 10 cosh(x/4) x, 10 x 10, where cosh(x) = ex +e x 2 is a hyperbolic cosine. We solve 10 cosh(x/4) x = 0. From the plot we see that there are no roots in the interval [ 10, 10] f(x) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 8

9 Roots localization Definitions The root x of equation f (x) = 0 is called simple, if f ( x) = 0 and f ( x) 0. Otherwise, if f (k) = 0 for k = 1, 2,..., m 1 and f (m) 0, the root x is called multiple with multiplicity m. The interval [a, b] containing only one root x of (1) is called the localization interval of x. Theorem Let f be a continuous function on [a, b] and f (a) f (b) < 0. Then the interval [a, b] contains at least one root of the equation f (x) = 0. Remark Theorem applies for simple roots and roots with odd multiplicity (m = 1, 3, 5,... ). Unfortunately, for roots with even multiplicity (m = 2, 4, 6,... ) it is not possible to localize the roots using this theorem. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 9

10 Example Localize the roots for the quadratic equation a 2 x 2 + a 1 x + a 0 = 0 with different a 0, a 1, a 2 for x [ 1, 1]. x 2 = 0 x 2 x 1 = 0 x = one root with m = 2 one root on [ 1, 1] two roots x 1 = x 2 = 0 x x 1,2 ± no localization possible I loc = [ 0.71, 0.52] I (1) loc = [ 0.73, 0.65], = [0.67, 0.78] I (2) loc University of Zurich, I Math 10/03/2016 Nonlinear equations Page 10

11 Numerical methods For a general nonlinear equation, the roots cannot be found in a finite number of steps and therefore iterative methods are widely adopted. bisection method fixed-point iterations method Newton s method modifications of Newton s method Newton-Hörner method for polynomial roots Problems: Choice of initial guess x (0)!!! Convergence criteria. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 11

12 Bisection method Let f be a continuous function on [a, b] satisfying f (a) f (b) < 0 and assume that f has a unique root on [a, b]. The strategy of the bisection method is to halve the given root localization interval and proceed with the subinterval for which f has different signs at endpoints x 2 x 1 x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 12

13 Denote a (0) = a, b (0) = b, I (0) = [a (0), b (0) ] and choose the mid-point x (0) = (a (0) + b (0) )/2 as the first guess value for x. The approximation error of x (0) doesn t exceed half of the interval length: x (0) x (b (0) a (0) )/2. x a = a (0) x (0) b = b (0) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 13

14 Next, choose I (1) = [a (1), b (1) ], where I (1) is either [a (0), x (0) ] or [x (0), b (0) ], satisfying the condition f (a (1) ) f (b (1) ) 0. Choose the mid-point x (1) = (a (1) + b (1) )/2 as the next approximation to the root with accuracy x (1) x (b (1) a (1) )/2 = (b a)/2 2. x a (1) = a (0) x (1) b (1) = x (0) b = b (0) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 14

15 Algorithm At each step k 1 we select the subinterval I (k) = [a (k), b (k) ] of the interval I (k 1) = [a (k 1), b (k 1) ] as follows. Given x (k 1) = (a (k 1) + b (k 1) )/2, if f (x (k 1) ) = 0 then x = x (k 1) and the method terminates; otherwise, if f (a (k 1) ) f (x (k 1) ) < 0, set a (k) = a (k 1) and b (k) = x (k 1) ; if f (x (k 1) ) f (b (k 1) ) < 0, set a (k) = x (k 1) and b (k) = b (k 1). Then define x (k) = (a (k) + b (k) )/2 and proceed to the next iteration until the required accuracy is reached. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 15

16 Accuracy The mid-point x (k) of the k-th subinterval I (k) gives an approximation to the root x with the error estimate x (k) x (b (k) a (k) )/2 = (b a)/2 k+1, (2) i.e. the iterative process converges as the geometric progression with the common ratio r = 1/2. In order to guarantee that the error e (k) = x (k) x < ε it is sufficient to do k min iterations with ( ) b a k min > log 2 1. (3) ε University of Zurich, I Math 10/03/2016 Nonlinear equations Page 16

17 Fixed point iterations The fixed point iterations method is an iterative method for finding the roots of the nonlinear equation x = ϕ(x). (4) If the solution x of (4) exists it is called a fixed point of ϕ and it could be computed by the following iterative algorithm: with x (0) being the initial guess. x (k+1) = ϕ(x (k) ), k 0, (5) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 17

18 Geometric interpretation M (0) M (2) K (2) K (1) M (1) y K (0) x The solution x of x = ϕ(x) is clearly the intersection point of two graphs: y = ϕ(x) and y = x. This plot is for x = 1 exp(x)/4. The method converges to the fixed point x. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 18

19 Attempting to solve x = (x 0.5) 2 1 using fixed-point iterations leads to divergence M (5) M (1) K (2) K (6) 0.5 M (3) M (9) K (4) y 0 M (7) K (8) K (0) -0.5 K (7) M (8) M (6) What is the reason? M (2) K (3) K (9) M (0) -1 K (1) M (4) K (5) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 19

20 Convergence of fixed-point iterations Definition A σ-neighborhood of the point x is an interval (x σ, x + σ). Theorem Assume that in some σ-neighborhood of the root x the function ϕ(x) is differentiable and ϕ (x) q (6) with 0 q < 1. Then for any initial guess x (0) ( x σ, x + σ) the fixed point iterations converge and x (k) x q k x (0) x. (7) Formula (7) indicates linear convergence of the fixed-point iterations. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 20

21 Proof. For the fixed point we have x = ϕ( x) and the iterations are given by x (k+1) = ϕ(x (k) ), k 0. Taking the difference of these two expressions we get The mean value theorem gives x (k+1) x = ϕ(x (k) ) ϕ( x). ϕ(x (k) ) x = ϕ (ξ)(x (k) x) for some ξ between x and x (k), therefore x (k+1) x = ϕ(x (k) ) x = ϕ (ξ)(x (k) x) = ϕ (ξ)(x (k) x). Since ϕ (ξ) q we get x (k+1) x = ϕ(x (k) ) x = ϕ (ξ) x (k) x q x (k) x. Continuing the latter inequality to k = 0 we finally obtain x (k) x q k x (0) x and therefore iterations converge provided q < 1. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 21

22 Theorem Under the assumptions of the previous Theorem, for any x (0) ( x σ, x + σ) the following a-posteriori error estimate holds x (k) x q 1 q x(k) x (k 1), k 1. (8) Proof. Do it as an exercise! The inequality (8) can be used as a reliable criterion to terminate the iterations. For the target tolerance ε we can stop the process if x (k) x (k 1) < 1 q ε. (9) q University of Zurich, I Math 10/03/2016 Nonlinear equations Page 22

23 In our examples: 1 ϕ(x) = 1 exp(x)/4 and ϕ exp(x) (x) = 8 1 exp(x)/4 x [0, 1], ϕ (x) < 1 on [0, 1], x (0) [0, 1] = convergence dϕ(x)/dx x (0) x x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 23

24 2 ϕ(x) = (x 0.5) 2 1 and ϕ (x) = 2(x 0.5) x [ 0.5, 0], ϕ (x) 1 on [ 0.5, 0] = divergence dϕ(x)/dx x x (0) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 24

25 The Newton method We consider a nonlinear equation f (x) = 0. (10) The Newton method is one of the most efficient methods for the solution of various nonlinear equations: it is based on the linearization of the equation (10); it exploits the information about function f and derivative f ; it has quadratic convergence; however, choice of x (0) is still crucial. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 25

26 Geometric interpretation Newton s method can be derived from purely geometric considerations using the tangent lines M (0) 5 4 y M (2) M (1) x (2) x (1) x (0) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 26

27 Let x (0) be a guess value for the root x. The equation of the tangent line to the curve y = f (x) at the point (x (k), f (x (k) )) is y = f (x (k) ) + f (x (k) )(x x (k) ). (11) Assume that f (x (k) ) 0 and setting y = 0 in (11) we get the equation for the abscissa x (k+1) of the intersection point of the tangent line and the x-axis: 0 = f (x (k) ) + f (x (k) )(x (k+1) x (k) ). (12) From (12) we find x (k+1) = x (k) f (x(k) ), k 0. (13) f (x (k) ) Due to such geometric interpretation the Newton method is sometimes called also method of tangents. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 27

28 Linearization The Newton method can be also derived using the linearization of the original equation. Assume that we have computed the approximation x (k). In the neighbourhood of the point x (k) the function f (x) can be represented according to the Taylor formula as f (x) = f (x (k) ) + f (x (k) )(x x (k) ) + f (ξ) 2 (x x(k) ) 2, (14) where ξ is some point in the interval (x, x (k) ). Neglecting the second-order term in equation (14) we obtain a linear equation f (x (k) ) + f (x (k) )(x (k+1) x (k) ) = 0. (15) Choosing the solution of the equation (15) as the next approximation x (k+1), we get the same formula (13). University of Zurich, I Math 10/03/2016 Nonlinear equations Page 28

29 Convergence Theorem Let x be a simple root of the equation f (x) = 0 and assume that in some neighbourhood of x the function f is continuously differentiable up to its second derivative. Then there exists a σ-neighbourhood of x such that with any choice of the initial value x (0) from this neighbourhood the Newton method has quadratic convergence: or, equivalently, x (k+1) x σ 1 x (k) x 2, k 0, (16) x (k+1) x lim k (x (k) x) = f ( x) 2 2f ( x). (17) A consequence of (16) is an a-priori error estimate where q = σ 1 x (0) x. x (k) x σq 2k, k 0, (18) Remark Note that the quadratic convergence is local: it can be observed only in the neighbourhood of the exact root x, but might not hold globally. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 29

30 The following theorem gives an a-posteriori error estimate for the Newton method. Theorem If the assumptions of the previous theorem are satisfied and x (0) x < σ/2, then for all k 1 x (k) x x (k) x (k 1). (19) This theorem provides a reliable termination criterion which is used in practice for the Newton method. Tor the target tolerance ε the iterations can be stopped as soon as x (k) x (k 1) < ε. (20) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 30

31 Example Using the Newton method, construct an iterative process to compute p a for a > 0 and p = 1, 2, 3,.... By definition, x = p a is a nonnegative number satisfying the equation x p = a. Hence, the problem reduces to the estimation of the positive root of the nonlinear equation f (x) = 0 with f (x) = x p a. (21) The Newton method (13) applied to the equation f (x) = 0 with f (x) given by (21) takes the form x (k+1) = x (k) (x(k) ) p a p(x (k) ) = p 1 a p 1 p x(k) + p(x (k) ). p 1 For p = 2 this formula gives an iterative method to compute a: x (k+1) = 1 ( x (k) + a ). (22) 2 x (k) With x (0) = 2 the Newton method (22) gives in 4 iterations with tolerance ε = University of Zurich, I Math 10/03/2016 Nonlinear equations Page 31

32 Roots with multiplicity m > 1 Note that if the exact root x has multiplicity m > 1, i.e. if f ( x) = 0,..., f (m 1) ( x), then the Newton method converges with first order only for properly chosen x (0) and only if f (x) 0 for all x in the neighbourhood of x. In this case one can recover the second order of convergence by modifying the original method to Problem: m might be unknown a-priori. x (k+1) = x (k) m f (x(k) ), k 0. (23) f (x (k) ) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 32

33 Drawbacks of Newton s method 1 The Newton method in general does not converge for all possible choices of x (0), but only for those which are sufficiently close to x. Therefore an inaccurate choice of the initial guess might lead to a divergent sequence of approximations. In practice, a suitable guess x (0) can be obtained by implementing a few iterations of the bisection method, or, alternatively, through an investigation of the graph of f. 2 The Newton method might stop converging if at the k-th iteration f (x (k) ) 0. 3 Another difficulty consists of the computation of the derivative f (x) which is needed in formula (13). Very often it is simply impossible to find an analytic expression for f (x), while the approximate computation of the derivative with high accuracy might be, in general, unstable. The computation of the derivative, if possible, might as well be very expensive. In this cases a common practice is to use the modifications of the Newton method which avoid the direct computation of f (x). University of Zurich, I Math 10/03/2016 Nonlinear equations Page 33

34 Simplified Newton s method If the derivative f (x) is continuous, then in the neighbourhood of x f (x) f (x (0) ). Therefore one can replace the values f (x (k) ) in the formula (13) by f (x (0) ). This leads to a simplified Newton s method x (k+1) = x (k) f (x(k) ), k 0. (24) f (x (0) ) M (0) 5 4 y M (2) M (1) 0 x (2) x (1) x (0) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 34 x

35 Fault location method The basis for this modification of the Newton method is an approximate equality f (x (k) ) f (z(k) ) f (x (k) ) z (k) x (k), (25) which is valid for z (k) x (k) and is a consequence of the definition of the derivative f f (z) f (x) (x) = lim. z x z x Let c be some fixed point in the neighbourhood of the root x. Replacing f (x (k) ) in (13) by the right-hand side of (25) with z (k) = c we obtain the formula for the fault location method: x (k+1) = x (k) c x(k) f (c) f (x (k) ) f (x(k) ), k 0. (26) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 35

36 Geometric interpretation 10 9 M M (0) 5 y M (1) 1 M (2) 0 x (2) x (1) x (0) c x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 36

37 The secant method Setting in Newton s method (13) we obtain the secant method x (k+1) = x (k) f (x (k) ) f (x(k 1) ) f (x (k) ) x (k 1) x (k), x(k 1) x (k) f (x (k 1) ) f (x (k) ) f (x(k) ), k 0. (27) Note that the secant method needs two previous approximations x (k) and x (k 1) to compute the next approximation x (k+1) and therefore requires two guess values x (0) and x (1) to start the iterative process. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 37

38 Geometric interpretation M (0) y M (1) 2 1 M (2) M (3) 0 x (3) x (2) x (1) x (0) x University of Zurich, I Math 10/03/2016 Nonlinear equations Page 38

39 Convergence The following convergence result is valid for the secant method. Theorem Let x be a simple root of the equation f (x) = 0 and assume that f is continuously differentiable twice in some neighbourhood of x and f ( x) 0. Then there exists a σ-neighbourhood of x such that for any choice of the guess values x (0) and x (1) from this neighbourhood the secant method converges with order p = , that is, 2 x (k+1) x C x (k) x p 5 + 1, p =, k 1. (28) 2 University of Zurich, I Math 10/03/2016 Nonlinear equations Page 39

40 Quadratic convergence of Newton s method Theorem Let x be a simple root of the equation f (x) = 0 and assume that in some neighbourhood of x the function f is continuously differentiable up to its second derivative. Then there exists a σ-neighbourhood of x such that with any choice of the initial value x (0) from this neighbourhood the Newton method has quadratic convergence: or, equivalently, x (k+1) x σ 1 x (k) x 2, k 0, (29) x (k+1) x lim k (x (k) x) = f ( x) 2 2f ( x). (30) A consequence of (16) is an a-priori error estimate where q = σ 1 x (0) x. x (k) x σq 2k, k 0, (31) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 40

41 Proof. Since x is a simple root of f (x) = 0, we have f ( x) 0 (by definition of a simple root). Since f and f are continuous, δ 0 -neighborhood of x such that for some constant α R and β R we can write for x ( x δ 0, x + δ 0 ): 0 < α f (x) (f continuous and f ( x) 0) f (x) β (f continuous and hence bounded) Assume x (k) ( x σ, x + σ), where σ = min{δ 0, 2α/β}. Taylor expansion of f (x) at x (k) : f (x) = f (x (k) ) + f (x (k) )(x x (k) ) + f (ξ) 2 (x x(k) ) 2, (32) where ξ ( x σ, x + σ). Substituting x = x in (32) gives 0 = f (x (k) ) + f (x (k) )( x x (k) ) + f (ξ) 2 ( x x(k) ) 2. (33) Recall that Newton s method was defined from the linearized equation 0 = f (x (k) ) + f (x (k) )(x (k+1) x (k) ). (34) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 41

42 Proof (Cont.) Taking the difference between (33) and (34) we obtain f (x (k) )(x (k+1) x) = f (ξ) 2 ( x x(k) ) 2. (35) Estimating the modulus of left- and right-hand sides of (35) and taking into account the bounds on f and f we get and hence α x (k+1) x β 2 x x(k) 2 (36) x (k+1) x β 2α x x(k) 2 σ 1 x x (k) 2, (37) which means that the Newton method has a local quadratic convergence. The condition x (k+1) ( x σ, x + σ) is satisfied since x (k+1) x β 2α x x(k) 2 σ 1 σ 2 = σ, (38) meaning that the next approximation x (k+1) remains in the same neighborhood of x. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 42

43 Steffensen s method Iterations given by where x (k+1) = x (k) f (x(k) ), k 0, (39) g(x (k) ) g(x) = f ( x + f (x) ) f (x) f (x) f (x). This method can be interpreted as a fault location method with c = x (k) + f (x (k) ). It has quadratic convergence. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 43

44 Halley s method with cubic convergence We solve f (x) = 0 and assume x simple root. Halley s method: x (k+1) = x (k) u(x (k) 1 ), v(x(k) ) k 0, (40) where u(x (k) ) = f (x(k) ) f (x (k) ), v(xk ) = f (x(k) )f (x (k) ) [f (x (k) )] 2. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 44

45 Derivation. Assume for simplicity f (x) > 0 and consider the function g(x) = f (x) f (x). Since x is a simple root, f ( x) = 0 and f ( x) 0, therefore g( x) = 0. We can therefore apply Newton s method to the function g(x): g (x) = then the iterative process is f (x) f (x) f (x) f (x) 2 f (x) f (x) = 2[f (x)] 2 f (x)f (x) 2f (x), f (x) x (k+1) = x (k) g(x(k) ) g (x (k) ) = = 2f (x (k) )f (x (k) ) x(k) 2[f (x (k) )] 2 f (x (k) )f (x (k) ), which is equivalent to (40). University of Zurich, I Math 10/03/2016 Nonlinear equations Page 45

46 Householder s method We solve f (x) = 0 assuming that f is (p + 1) times continuously differentiable, and that x is a simple root. Householder s method of order p > 0 reads: and it has a convergence rate p + 1, i.e. x (k+1) = x (k) + p (1/f )(p 1) (x (k) ) (1/f ) (p) (x (k) ), (41) x (k+1) x C x (k) x p+1, k 0. (42) Special cases: p = 1 Newton s method; p = 2 Halley s method. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 46

47 Algebraic polynomials Consider a polynomial of degree n: p n(x) = a 0 + a 1 x + a 2 x a nx n. (43) Equivalent nested representation of p n(x): p n(x) = a 0 + x(a 1 + a 2 x + a 3 x a nx n 1 ) = a 0 + x ( a 1 + x(a 2 + a 3 x + + a nx n 2 ) ) =... ( = a 0 + x a 1 + x ( a x(a n 1 + a )) nx). (44) Form (44) gives an algorithm (Hörner s algorithm) to evaluate p n at some point x = z: b n := a n, b k := a k + b k+1 z, k = n 1, n 2,..., 0, p n(z) := b 0. Formula (43) requires n sums and 2n 1 products while formula (44) only n sums and n products. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 47

48 Finding the roots of p n Introduce the associated polynomial q n 1 (x; z) of degree (n 1): depending on z via b k coefficients. Division of p n(x) by (x z) gives q n 1 (x; z) = b 1 + b 2 x + + b nx n 1, p n(x) = b 0 + (x z)q n 1 (x; z). (45) If z is a root of p n, i.e. p n(z) = 0, then b 0 = p n(z) = 0 and In this case the algebraic equation p n(x) = (x z)q n 1 (x, z). q n 1 (x, z) = 0 provides the n 1 remaining roots of the polynomial p n. University of Zurich, I Math 10/03/2016 Nonlinear equations Page 48

49 Newton-Hörner method Algorithm for finding all roots of p n : for m = n, n 1,..., 1 find an approximation of the root r m for p m with Newton s method; compute q m 1 (x; r m) using Hörner s algorithm; set p m 1 = q m 1. For given m, if q m 1 is the polynomial associated with p m, then p m(x) = ( (x z)q m 1 (x, z) ) = q m 1 (x, z) + (x z)q m 1(x, z) (46) and with x = z Thanks to (47) the Newton method takes the form: r (k+1) j p m(z) = q m 1 (z, z). (47) = r (k) j pm(r (k) ) p m(r (k) ) = r (k) p m(r (k) ) j, k 0. (48) q m 1 (r (k), r (k) ) University of Zurich, I Math 10/03/2016 Nonlinear equations Page 49

4.3 Lagrange Approximation

4.3 Lagrange Approximation 206 CHAP. 4 INTERPOLATION AND POLYNOMIAL APPROXIMATION Lagrange Polynomial Approximation 4.3 Lagrange Approximation Interpolation means to estimate a missing function value by taking a weighted average

More information

G.A. Pavliotis. Department of Mathematics. Imperial College London

G.A. Pavliotis. Department of Mathematics. Imperial College London EE1 MATHEMATICS NUMERICAL METHODS G.A. Pavliotis Department of Mathematics Imperial College London 1. Numerical solution of nonlinear equations (iterative processes). 2. Numerical evaluation of integrals.

More information

Roots of Equations (Chapters 5 and 6)

Roots of Equations (Chapters 5 and 6) Roots of Equations (Chapters 5 and 6) Problem: given f() = 0, find. In general, f() can be any function. For some forms of f(), analytical solutions are available. However, for other functions, we have

More information

Nonlinear Algebraic Equations. Lectures INF2320 p. 1/88

Nonlinear Algebraic Equations. Lectures INF2320 p. 1/88 Nonlinear Algebraic Equations Lectures INF2320 p. 1/88 Lectures INF2320 p. 2/88 Nonlinear algebraic equations When solving the system u (t) = g(u), u(0) = u 0, (1) with an implicit Euler scheme we have

More information

Solutions of Equations in One Variable. Fixed-Point Iteration II

Solutions of Equations in One Variable. Fixed-Point Iteration II Solutions of Equations in One Variable Fixed-Point Iteration II Numerical Analysis (9th Edition) R L Burden & J D Faires Beamer Presentation Slides prepared by John Carroll Dublin City University c 2011

More information

A three point formula for finding roots of equations by the method of least squares

A three point formula for finding roots of equations by the method of least squares A three point formula for finding roots of equations by the method of least squares Ababu Teklemariam Tiruneh 1 ; William N. Ndlela 1 ; Stanley J. Nkambule 1 1 Lecturer, Department of Environmental Health

More information

Zeros of Polynomial Functions

Zeros of Polynomial Functions Zeros of Polynomial Functions The Rational Zero Theorem If f (x) = a n x n + a n-1 x n-1 + + a 1 x + a 0 has integer coefficients and p/q (where p/q is reduced) is a rational zero, then p is a factor of

More information

PUTNAM TRAINING POLYNOMIALS. Exercises 1. Find a polynomial with integral coefficients whose zeros include 2 + 5.

PUTNAM TRAINING POLYNOMIALS. Exercises 1. Find a polynomial with integral coefficients whose zeros include 2 + 5. PUTNAM TRAINING POLYNOMIALS (Last updated: November 17, 2015) Remark. This is a list of exercises on polynomials. Miguel A. Lerma Exercises 1. Find a polynomial with integral coefficients whose zeros include

More information

Real Roots of Univariate Polynomials with Real Coefficients

Real Roots of Univariate Polynomials with Real Coefficients Real Roots of Univariate Polynomials with Real Coefficients mostly written by Christina Hewitt March 22, 2012 1 Introduction Polynomial equations are used throughout mathematics. When solving polynomials

More information

Roots of Polynomials

Roots of Polynomials Roots of Polynomials (Com S 477/577 Notes) Yan-Bin Jia Sep 24, 2015 A direct corollary of the fundamental theorem of algebra is that p(x) can be factorized over the complex domain into a product a n (x

More information

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes

3.3. Solving Polynomial Equations. Introduction. Prerequisites. Learning Outcomes Solving Polynomial Equations 3.3 Introduction Linear and quadratic equations, dealt within Sections 3.1 and 3.2, are members of a class of equations, called polynomial equations. These have the general

More information

Taylor and Maclaurin Series

Taylor and Maclaurin Series Taylor and Maclaurin Series In the preceding section we were able to find power series representations for a certain restricted class of functions. Here we investigate more general problems: Which functions

More information

JUST THE MATHS UNIT NUMBER 1.8. ALGEBRA 8 (Polynomials) A.J.Hobson

JUST THE MATHS UNIT NUMBER 1.8. ALGEBRA 8 (Polynomials) A.J.Hobson JUST THE MATHS UNIT NUMBER 1.8 ALGEBRA 8 (Polynomials) by A.J.Hobson 1.8.1 The factor theorem 1.8.2 Application to quadratic and cubic expressions 1.8.3 Cubic equations 1.8.4 Long division of polynomials

More information

THE FUNDAMENTAL THEOREM OF ALGEBRA VIA PROPER MAPS

THE FUNDAMENTAL THEOREM OF ALGEBRA VIA PROPER MAPS THE FUNDAMENTAL THEOREM OF ALGEBRA VIA PROPER MAPS KEITH CONRAD 1. Introduction The Fundamental Theorem of Algebra says every nonconstant polynomial with complex coefficients can be factored into linear

More information

FIRST YEAR CALCULUS. Chapter 7 CONTINUITY. It is a parabola, and we can draw this parabola without lifting our pencil from the paper.

FIRST YEAR CALCULUS. Chapter 7 CONTINUITY. It is a parabola, and we can draw this parabola without lifting our pencil from the paper. FIRST YEAR CALCULUS WWLCHENW L c WWWL W L Chen, 1982, 2008. 2006. This chapter originates from material used by the author at Imperial College, University of London, between 1981 and 1990. It It is is

More information

Inner Product Spaces

Inner Product Spaces Math 571 Inner Product Spaces 1. Preliminaries An inner product space is a vector space V along with a function, called an inner product which associates each pair of vectors u, v with a scalar u, v, and

More information

November 16, 2015. Interpolation, Extrapolation & Polynomial Approximation

November 16, 2015. Interpolation, Extrapolation & Polynomial Approximation Interpolation, Extrapolation & Polynomial Approximation November 16, 2015 Introduction In many cases we know the values of a function f (x) at a set of points x 1, x 2,..., x N, but we don t have the analytic

More information

1 if 1 x 0 1 if 0 x 1

1 if 1 x 0 1 if 0 x 1 Chapter 3 Continuity In this chapter we begin by defining the fundamental notion of continuity for real valued functions of a single real variable. When trying to decide whether a given function is or

More information

Polynomials. Dr. philippe B. laval Kennesaw State University. April 3, 2005

Polynomials. Dr. philippe B. laval Kennesaw State University. April 3, 2005 Polynomials Dr. philippe B. laval Kennesaw State University April 3, 2005 Abstract Handout on polynomials. The following topics are covered: Polynomial Functions End behavior Extrema Polynomial Division

More information

3.3 Real Zeros of Polynomials

3.3 Real Zeros of Polynomials 3.3 Real Zeros of Polynomials 69 3.3 Real Zeros of Polynomials In Section 3., we found that we can use synthetic division to determine if a given real number is a zero of a polynomial function. This section

More information

Sequences and Series

Sequences and Series Sequences and Series Consider the following sum: 2 + 4 + 8 + 6 + + 2 i + The dots at the end indicate that the sum goes on forever. Does this make sense? Can we assign a numerical value to an infinite

More information

Rolle s Theorem. q( x) = 1

Rolle s Theorem. q( x) = 1 Lecture 1 :The Mean Value Theorem We know that constant functions have derivative zero. Is it possible for a more complicated function to have derivative zero? In this section we will answer this question

More information

INTERPOLATION. Interpolation is a process of finding a formula (often a polynomial) whose graph will pass through a given set of points (x, y).

INTERPOLATION. Interpolation is a process of finding a formula (often a polynomial) whose graph will pass through a given set of points (x, y). INTERPOLATION Interpolation is a process of finding a formula (often a polynomial) whose graph will pass through a given set of points (x, y). As an example, consider defining and x 0 =0, x 1 = π 4, x

More information

Higher Education Math Placement

Higher Education Math Placement Higher Education Math Placement Placement Assessment Problem Types 1. Whole Numbers, Fractions, and Decimals 1.1 Operations with Whole Numbers Addition with carry Subtraction with borrowing Multiplication

More information

Rootfinding for Nonlinear Equations

Rootfinding for Nonlinear Equations > 3. Rootfinding Rootfinding for Nonlinear Equations > 3. Rootfinding Calculating the roots of an equation is a common problem in applied mathematics. f(x) = 0 (7.1) We will explore some simple numerical

More information

Introduction to Algebraic Geometry. Bézout s Theorem and Inflection Points

Introduction to Algebraic Geometry. Bézout s Theorem and Inflection Points Introduction to Algebraic Geometry Bézout s Theorem and Inflection Points 1. The resultant. Let K be a field. Then the polynomial ring K[x] is a unique factorisation domain (UFD). Another example of a

More information

Numerical Solution of Differential

Numerical Solution of Differential Chapter 13 Numerical Solution of Differential Equations We have considered numerical solution procedures for two kinds of equations: In chapter 10 the unknown was a real number; in chapter 6 the unknown

More information

An important theme in this book is to give constructive definitions of mathematical objects. Thus, for instance, if you needed to evaluate.

An important theme in this book is to give constructive definitions of mathematical objects. Thus, for instance, if you needed to evaluate. Chapter 10 Series and Approximations An important theme in this book is to give constructive definitions of mathematical objects. Thus, for instance, if you needed to evaluate 1 0 e x2 dx, you could set

More information

Application. Outline. 3-1 Polynomial Functions 3-2 Finding Rational Zeros of. Polynomial. 3-3 Approximating Real Zeros of.

Application. Outline. 3-1 Polynomial Functions 3-2 Finding Rational Zeros of. Polynomial. 3-3 Approximating Real Zeros of. Polynomial and Rational Functions Outline 3-1 Polynomial Functions 3-2 Finding Rational Zeros of Polynomials 3-3 Approximating Real Zeros of Polynomials 3-4 Rational Functions Chapter 3 Group Activity:

More information

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year.

Algebra Unpacked Content For the new Common Core standards that will be effective in all North Carolina schools in the 2012-13 school year. This document is designed to help North Carolina educators teach the Common Core (Standard Course of Study). NCDPI staff are continually updating and improving these tools to better serve teachers. Algebra

More information

Basics of Polynomial Theory

Basics of Polynomial Theory 3 Basics of Polynomial Theory 3.1 Polynomial Equations In geodesy and geoinformatics, most observations are related to unknowns parameters through equations of algebraic (polynomial) type. In cases where

More information

South Carolina College- and Career-Ready (SCCCR) Algebra 1

South Carolina College- and Career-Ready (SCCCR) Algebra 1 South Carolina College- and Career-Ready (SCCCR) Algebra 1 South Carolina College- and Career-Ready Mathematical Process Standards The South Carolina College- and Career-Ready (SCCCR) Mathematical Process

More information

6 EXTENDING ALGEBRA. 6.0 Introduction. 6.1 The cubic equation. Objectives

6 EXTENDING ALGEBRA. 6.0 Introduction. 6.1 The cubic equation. Objectives 6 EXTENDING ALGEBRA Chapter 6 Extending Algebra Objectives After studying this chapter you should understand techniques whereby equations of cubic degree and higher can be solved; be able to factorise

More information

Indiana State Core Curriculum Standards updated 2009 Algebra I

Indiana State Core Curriculum Standards updated 2009 Algebra I Indiana State Core Curriculum Standards updated 2009 Algebra I Strand Description Boardworks High School Algebra presentations Operations With Real Numbers Linear Equations and A1.1 Students simplify and

More information

MA107 Precalculus Algebra Exam 2 Review Solutions

MA107 Precalculus Algebra Exam 2 Review Solutions MA107 Precalculus Algebra Exam 2 Review Solutions February 24, 2008 1. The following demand equation models the number of units sold, x, of a product as a function of price, p. x = 4p + 200 a. Please write

More information

Core Maths C2. Revision Notes

Core Maths C2. Revision Notes Core Maths C Revision Notes November 0 Core Maths C Algebra... Polnomials: +,,,.... Factorising... Long division... Remainder theorem... Factor theorem... 4 Choosing a suitable factor... 5 Cubic equations...

More information

SOLVING POLYNOMIAL EQUATIONS

SOLVING POLYNOMIAL EQUATIONS C SOLVING POLYNOMIAL EQUATIONS We will assume in this appendix that you know how to divide polynomials using long division and synthetic division. If you need to review those techniques, refer to an algebra

More information

CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA

CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA We Can Early Learning Curriculum PreK Grades 8 12 INSIDE ALGEBRA, GRADES 8 12 CORRELATED TO THE SOUTH CAROLINA COLLEGE AND CAREER-READY FOUNDATIONS IN ALGEBRA April 2016 www.voyagersopris.com Mathematical

More information

MATH 132: CALCULUS II SYLLABUS

MATH 132: CALCULUS II SYLLABUS MATH 32: CALCULUS II SYLLABUS Prerequisites: Successful completion of Math 3 (or its equivalent elsewhere). Math 27 is normally not a sufficient prerequisite for Math 32. Required Text: Calculus: Early

More information

The degree of a polynomial function is equal to the highest exponent found on the independent variables.

The degree of a polynomial function is equal to the highest exponent found on the independent variables. DETAILED SOLUTIONS AND CONCEPTS - POLYNOMIAL FUNCTIONS Prepared by Ingrid Stewart, Ph.D., College of Southern Nevada Please Send Questions and Comments to ingrid.stewart@csn.edu. Thank you! PLEASE NOTE

More information

3.2 The Factor Theorem and The Remainder Theorem

3.2 The Factor Theorem and The Remainder Theorem 3. The Factor Theorem and The Remainder Theorem 57 3. The Factor Theorem and The Remainder Theorem Suppose we wish to find the zeros of f(x) = x 3 + 4x 5x 4. Setting f(x) = 0 results in the polynomial

More information

Lectures 5-6: Taylor Series

Lectures 5-6: Taylor Series Math 1d Instructor: Padraic Bartlett Lectures 5-: Taylor Series Weeks 5- Caltech 213 1 Taylor Polynomials and Series As we saw in week 4, power series are remarkably nice objects to work with. In particular,

More information

Algebra and Geometry Review (61 topics, no due date)

Algebra and Geometry Review (61 topics, no due date) Course Name: Math 112 Credit Exam LA Tech University Course Code: ALEKS Course: Trigonometry Instructor: Course Dates: Course Content: 159 topics Algebra and Geometry Review (61 topics, no due date) Properties

More information

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks

Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Thnkwell s Homeschool Precalculus Course Lesson Plan: 36 weeks Welcome to Thinkwell s Homeschool Precalculus! We re thrilled that you ve decided to make us part of your homeschool curriculum. This lesson

More information

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates

www.mathsbox.org.uk ab = c a If the coefficients a,b and c are real then either α and β are real or α and β are complex conjugates Further Pure Summary Notes. Roots of Quadratic Equations For a quadratic equation ax + bx + c = 0 with roots α and β Sum of the roots Product of roots a + b = b a ab = c a If the coefficients a,b and c

More information

AP CALCULUS AB 2009 SCORING GUIDELINES

AP CALCULUS AB 2009 SCORING GUIDELINES AP CALCULUS AB 2009 SCORING GUIDELINES Question 5 x 2 5 8 f ( x ) 1 4 2 6 Let f be a function that is twice differentiable for all real numbers. The table above gives values of f for selected points in

More information

HOMEWORK 5 SOLUTIONS. n!f n (1) lim. ln x n! + xn x. 1 = G n 1 (x). (2) k + 1 n. (n 1)!

HOMEWORK 5 SOLUTIONS. n!f n (1) lim. ln x n! + xn x. 1 = G n 1 (x). (2) k + 1 n. (n 1)! Math 7 Fall 205 HOMEWORK 5 SOLUTIONS Problem. 2008 B2 Let F 0 x = ln x. For n 0 and x > 0, let F n+ x = 0 F ntdt. Evaluate n!f n lim n ln n. By directly computing F n x for small n s, we obtain the following

More information

Average rate of change of y = f(x) with respect to x as x changes from a to a + h:

Average rate of change of y = f(x) with respect to x as x changes from a to a + h: L15-1 Lecture 15: Section 3.4 Definition of the Derivative Recall the following from Lecture 14: For function y = f(x), the average rate of change of y with respect to x as x changes from a to b (on [a,

More information

Representation of functions as power series

Representation of functions as power series Representation of functions as power series Dr. Philippe B. Laval Kennesaw State University November 9, 008 Abstract This document is a summary of the theory and techniques used to represent functions

More information

Calculus. Contents. Paul Sutcliffe. Office: CM212a.

Calculus. Contents. Paul Sutcliffe. Office: CM212a. Calculus Paul Sutcliffe Office: CM212a. www.maths.dur.ac.uk/~dma0pms/calc/calc.html Books One and several variables calculus, Salas, Hille & Etgen. Calculus, Spivak. Mathematical methods in the physical

More information

BookTOC.txt. 1. Functions, Graphs, and Models. Algebra Toolbox. Sets. The Real Numbers. Inequalities and Intervals on the Real Number Line

BookTOC.txt. 1. Functions, Graphs, and Models. Algebra Toolbox. Sets. The Real Numbers. Inequalities and Intervals on the Real Number Line College Algebra in Context with Applications for the Managerial, Life, and Social Sciences, 3rd Edition Ronald J. Harshbarger, University of South Carolina - Beaufort Lisa S. Yocco, Georgia Southern University

More information

Math 120 Final Exam Practice Problems, Form: A

Math 120 Final Exam Practice Problems, Form: A Math 120 Final Exam Practice Problems, Form: A Name: While every attempt was made to be complete in the types of problems given below, we make no guarantees about the completeness of the problems. Specifically,

More information

The Heat Equation. Lectures INF2320 p. 1/88

The Heat Equation. Lectures INF2320 p. 1/88 The Heat Equation Lectures INF232 p. 1/88 Lectures INF232 p. 2/88 The Heat Equation We study the heat equation: u t = u xx for x (,1), t >, (1) u(,t) = u(1,t) = for t >, (2) u(x,) = f(x) for x (,1), (3)

More information

The Steepest Descent Algorithm for Unconstrained Optimization and a Bisection Line-search Method

The Steepest Descent Algorithm for Unconstrained Optimization and a Bisection Line-search Method The Steepest Descent Algorithm for Unconstrained Optimization and a Bisection Line-search Method Robert M. Freund February, 004 004 Massachusetts Institute of Technology. 1 1 The Algorithm The problem

More information

Mathematics Course 111: Algebra I Part IV: Vector Spaces

Mathematics Course 111: Algebra I Part IV: Vector Spaces Mathematics Course 111: Algebra I Part IV: Vector Spaces D. R. Wilkins Academic Year 1996-7 9 Vector Spaces A vector space over some field K is an algebraic structure consisting of a set V on which are

More information

TOPIC 4: DERIVATIVES

TOPIC 4: DERIVATIVES TOPIC 4: DERIVATIVES 1. The derivative of a function. Differentiation rules 1.1. The slope of a curve. The slope of a curve at a point P is a measure of the steepness of the curve. If Q is a point on the

More information

correct-choice plot f(x) and draw an approximate tangent line at x = a and use geometry to estimate its slope comment The choices were:

correct-choice plot f(x) and draw an approximate tangent line at x = a and use geometry to estimate its slope comment The choices were: Topic 1 2.1 mode MultipleSelection text How can we approximate the slope of the tangent line to f(x) at a point x = a? This is a Multiple selection question, so you need to check all of the answers that

More information

ALGEBRA 2 CRA 2 REVIEW - Chapters 1-6 Answer Section

ALGEBRA 2 CRA 2 REVIEW - Chapters 1-6 Answer Section ALGEBRA 2 CRA 2 REVIEW - Chapters 1-6 Answer Section MULTIPLE CHOICE 1. ANS: C 2. ANS: A 3. ANS: A OBJ: 5-3.1 Using Vertex Form SHORT ANSWER 4. ANS: (x + 6)(x 2 6x + 36) OBJ: 6-4.2 Solving Equations by

More information

Continued Fractions and the Euclidean Algorithm

Continued Fractions and the Euclidean Algorithm Continued Fractions and the Euclidean Algorithm Lecture notes prepared for MATH 326, Spring 997 Department of Mathematics and Statistics University at Albany William F Hammond Table of Contents Introduction

More information

Polynomials and Factoring

Polynomials and Factoring Lesson 2 Polynomials and Factoring A polynomial function is a power function or the sum of two or more power functions, each of which has a nonnegative integer power. Because polynomial functions are built

More information

Factoring Polynomials

Factoring Polynomials Factoring Polynomials Hoste, Miller, Murieka September 12, 2011 1 Factoring In the previous section, we discussed how to determine the product of two or more terms. Consider, for instance, the equations

More information

Chapter 4, Arithmetic in F [x] Polynomial arithmetic and the division algorithm.

Chapter 4, Arithmetic in F [x] Polynomial arithmetic and the division algorithm. Chapter 4, Arithmetic in F [x] Polynomial arithmetic and the division algorithm. We begin by defining the ring of polynomials with coefficients in a ring R. After some preliminary results, we specialize

More information

South Carolina College- and Career-Ready (SCCCR) Pre-Calculus

South Carolina College- and Career-Ready (SCCCR) Pre-Calculus South Carolina College- and Career-Ready (SCCCR) Pre-Calculus Key Concepts Arithmetic with Polynomials and Rational Expressions PC.AAPR.2 PC.AAPR.3 PC.AAPR.4 PC.AAPR.5 PC.AAPR.6 PC.AAPR.7 Standards Know

More information

(Quasi-)Newton methods

(Quasi-)Newton methods (Quasi-)Newton methods 1 Introduction 1.1 Newton method Newton method is a method to find the zeros of a differentiable non-linear function g, x such that g(x) = 0, where g : R n R n. Given a starting

More information

Numerical Analysis An Introduction

Numerical Analysis An Introduction Walter Gautschi Numerical Analysis An Introduction 1997 Birkhauser Boston Basel Berlin CONTENTS PREFACE xi CHAPTER 0. PROLOGUE 1 0.1. Overview 1 0.2. Numerical analysis software 3 0.3. Textbooks and monographs

More information

Tim Kerins. Leaving Certificate Honours Maths - Algebra. Tim Kerins. the date

Tim Kerins. Leaving Certificate Honours Maths - Algebra. Tim Kerins. the date Leaving Certificate Honours Maths - Algebra the date Chapter 1 Algebra This is an important portion of the course. As well as generally accounting for 2 3 questions in examination it is the basis for many

More information

Mathematics 31 Pre-calculus and Limits

Mathematics 31 Pre-calculus and Limits Mathematics 31 Pre-calculus and Limits Overview After completing this section, students will be epected to have acquired reliability and fluency in the algebraic skills of factoring, operations with radicals

More information

Solving Quadratic Equations

Solving Quadratic Equations 9.3 Solving Quadratic Equations by Using the Quadratic Formula 9.3 OBJECTIVES 1. Solve a quadratic equation by using the quadratic formula 2. Determine the nature of the solutions of a quadratic equation

More information

Copyrighted Material. Chapter 1 DEGREE OF A CURVE

Copyrighted Material. Chapter 1 DEGREE OF A CURVE Chapter 1 DEGREE OF A CURVE Road Map The idea of degree is a fundamental concept, which will take us several chapters to explore in depth. We begin by explaining what an algebraic curve is, and offer two

More information

MOP 2007 Black Group Integer Polynomials Yufei Zhao. Integer Polynomials. June 29, 2007 Yufei Zhao yufeiz@mit.edu

MOP 2007 Black Group Integer Polynomials Yufei Zhao. Integer Polynomials. June 29, 2007 Yufei Zhao yufeiz@mit.edu Integer Polynomials June 9, 007 Yufei Zhao yufeiz@mit.edu We will use Z[x] to denote the ring of polynomials with integer coefficients. We begin by summarizing some of the common approaches used in dealing

More information

Høgskolen i Narvik Sivilingeniørutdanningen STE6237 ELEMENTMETODER. Oppgaver

Høgskolen i Narvik Sivilingeniørutdanningen STE6237 ELEMENTMETODER. Oppgaver Høgskolen i Narvik Sivilingeniørutdanningen STE637 ELEMENTMETODER Oppgaver Klasse: 4.ID, 4.IT Ekstern Professor: Gregory A. Chechkin e-mail: chechkin@mech.math.msu.su Narvik 6 PART I Task. Consider two-point

More information

The Point-Slope Form

The Point-Slope Form 7. The Point-Slope Form 7. OBJECTIVES 1. Given a point and a slope, find the graph of a line. Given a point and the slope, find the equation of a line. Given two points, find the equation of a line y Slope

More information

5 Numerical Differentiation

5 Numerical Differentiation D. Levy 5 Numerical Differentiation 5. Basic Concepts This chapter deals with numerical approximations of derivatives. The first questions that comes up to mind is: why do we need to approximate derivatives

More information

Critical points of once continuously differentiable functions are important because they are the only points that can be local maxima or minima.

Critical points of once continuously differentiable functions are important because they are the only points that can be local maxima or minima. Lecture 0: Convexity and Optimization We say that if f is a once continuously differentiable function on an interval I, and x is a point in the interior of I that x is a critical point of f if f (x) =

More information

Zeros of Polynomial Functions

Zeros of Polynomial Functions Review: Synthetic Division Find (x 2-5x - 5x 3 + x 4 ) (5 + x). Factor Theorem Solve 2x 3-5x 2 + x + 2 =0 given that 2 is a zero of f(x) = 2x 3-5x 2 + x + 2. Zeros of Polynomial Functions Introduction

More information

Answer Key for California State Standards: Algebra I

Answer Key for California State Standards: Algebra I Algebra I: Symbolic reasoning and calculations with symbols are central in algebra. Through the study of algebra, a student develops an understanding of the symbolic language of mathematics and the sciences.

More information

LINEAR EQUATIONS IN TWO VARIABLES

LINEAR EQUATIONS IN TWO VARIABLES 66 MATHEMATICS CHAPTER 4 LINEAR EQUATIONS IN TWO VARIABLES The principal use of the Analytic Art is to bring Mathematical Problems to Equations and to exhibit those Equations in the most simple terms that

More information

Algebra 1 Course Title

Algebra 1 Course Title Algebra 1 Course Title Course- wide 1. What patterns and methods are being used? Course- wide 1. Students will be adept at solving and graphing linear and quadratic equations 2. Students will be adept

More information

Efficient Curve Fitting Techniques

Efficient Curve Fitting Techniques 15/11/11 Life Conference and Exhibition 11 Stuart Carroll, Christopher Hursey Efficient Curve Fitting Techniques - November 1 The Actuarial Profession www.actuaries.org.uk Agenda Background Outline of

More information

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data.

In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. MATHEMATICS: THE LEVEL DESCRIPTIONS In mathematics, there are four attainment targets: using and applying mathematics; number and algebra; shape, space and measures, and handling data. Attainment target

More information

POLYNOMIAL FUNCTIONS

POLYNOMIAL FUNCTIONS POLYNOMIAL FUNCTIONS Polynomial Division.. 314 The Rational Zero Test.....317 Descarte s Rule of Signs... 319 The Remainder Theorem.....31 Finding all Zeros of a Polynomial Function.......33 Writing a

More information

Assessment Schedule 2013

Assessment Schedule 2013 NCEA Level Mathematics (9161) 013 page 1 of 5 Assessment Schedule 013 Mathematics with Statistics: Apply algebraic methods in solving problems (9161) Evidence Statement ONE Expected Coverage Merit Excellence

More information

6.4 Logarithmic Equations and Inequalities

6.4 Logarithmic Equations and Inequalities 6.4 Logarithmic Equations and Inequalities 459 6.4 Logarithmic Equations and Inequalities In Section 6.3 we solved equations and inequalities involving exponential functions using one of two basic strategies.

More information

Understanding Basic Calculus

Understanding Basic Calculus Understanding Basic Calculus S.K. Chung Dedicated to all the people who have helped me in my life. i Preface This book is a revised and expanded version of the lecture notes for Basic Calculus and other

More information

Aim. Decimal Search. An Excel 'macro' was used to do the calculations. A copy of the script can be found in Appendix A.

Aim. Decimal Search. An Excel 'macro' was used to do the calculations. A copy of the script can be found in Appendix A. Aim The aim of this investigation is to use and compare three different methods of finding specific solutions to polynomials that cannot be solved algebraically. The methods that will be considered are;

More information

4.5 Chebyshev Polynomials

4.5 Chebyshev Polynomials 230 CHAP. 4 INTERPOLATION AND POLYNOMIAL APPROXIMATION 4.5 Chebyshev Polynomials We now turn our attention to polynomial interpolation for f (x) over [ 1, 1] based on the nodes 1 x 0 < x 1 < < x N 1. Both

More information

Section 3.7. Rolle s Theorem and the Mean Value Theorem. Difference Equations to Differential Equations

Section 3.7. Rolle s Theorem and the Mean Value Theorem. Difference Equations to Differential Equations Difference Equations to Differential Equations Section.7 Rolle s Theorem and the Mean Value Theorem The two theorems which are at the heart of this section draw connections between the instantaneous rate

More information

Slope and Rate of Change

Slope and Rate of Change Chapter 1 Slope and Rate of Change Chapter Summary and Goal This chapter will start with a discussion of slopes and the tangent line. This will rapidly lead to heuristic developments of limits and the

More information

New Higher-Proposed Order-Combined Approach. Block 1. Lines 1.1 App. Vectors 1.4 EF. Quadratics 1.1 RC. Polynomials 1.1 RC

New Higher-Proposed Order-Combined Approach. Block 1. Lines 1.1 App. Vectors 1.4 EF. Quadratics 1.1 RC. Polynomials 1.1 RC New Higher-Proposed Order-Combined Approach Block 1 Lines 1.1 App Vectors 1.4 EF Quadratics 1.1 RC Polynomials 1.1 RC Differentiation-but not optimisation 1.3 RC Block 2 Functions and graphs 1.3 EF Logs

More information

7.6 Approximation Errors and Simpson's Rule

7.6 Approximation Errors and Simpson's Rule WileyPLUS: Home Help Contact us Logout Hughes-Hallett, Calculus: Single and Multivariable, 4/e Calculus I, II, and Vector Calculus Reading content Integration 7.1. Integration by Substitution 7.2. Integration

More information

Mean value theorem, Taylors Theorem, Maxima and Minima.

Mean value theorem, Taylors Theorem, Maxima and Minima. MA 001 Preparatory Mathematics I. Complex numbers as ordered pairs. Argand s diagram. Triangle inequality. De Moivre s Theorem. Algebra: Quadratic equations and express-ions. Permutations and Combinations.

More information

2013 MBA Jump Start Program

2013 MBA Jump Start Program 2013 MBA Jump Start Program Module 2: Mathematics Thomas Gilbert Mathematics Module Algebra Review Calculus Permutations and Combinations [Online Appendix: Basic Mathematical Concepts] 2 1 Equation of

More information

Roots of equation fx are the values of x which satisfy the above expression. Also referred to as the zeros of an equation

Roots of equation fx are the values of x which satisfy the above expression. Also referred to as the zeros of an equation LECTURE 20 SOLVING FOR ROOTS OF NONLINEAR EQUATIONS Consider the equation f = 0 Roots of equation f are the values of which satisfy the above epression. Also referred to as the zeros of an equation f()

More information

FACTORING POLYNOMIALS IN THE RING OF FORMAL POWER SERIES OVER Z

FACTORING POLYNOMIALS IN THE RING OF FORMAL POWER SERIES OVER Z FACTORING POLYNOMIALS IN THE RING OF FORMAL POWER SERIES OVER Z DANIEL BIRMAJER, JUAN B GIL, AND MICHAEL WEINER Abstract We consider polynomials with integer coefficients and discuss their factorization

More information

DRAFT. Algebra 1 EOC Item Specifications

DRAFT. Algebra 1 EOC Item Specifications DRAFT Algebra 1 EOC Item Specifications The draft Florida Standards Assessment (FSA) Test Item Specifications (Specifications) are based upon the Florida Standards and the Florida Course Descriptions as

More information

SECTION 2.5: FINDING ZEROS OF POLYNOMIAL FUNCTIONS

SECTION 2.5: FINDING ZEROS OF POLYNOMIAL FUNCTIONS SECTION 2.5: FINDING ZEROS OF POLYNOMIAL FUNCTIONS Assume f ( x) is a nonconstant polynomial with real coefficients written in standard form. PART A: TECHNIQUES WE HAVE ALREADY SEEN Refer to: Notes 1.31

More information

FACTORING QUADRATICS 8.1.1 and 8.1.2

FACTORING QUADRATICS 8.1.1 and 8.1.2 FACTORING QUADRATICS 8.1.1 and 8.1.2 Chapter 8 introduces students to quadratic equations. These equations can be written in the form of y = ax 2 + bx + c and, when graphed, produce a curve called a parabola.

More information

Estimated Pre Calculus Pacing Timeline

Estimated Pre Calculus Pacing Timeline Estimated Pre Calculus Pacing Timeline 2010-2011 School Year The timeframes listed on this calendar are estimates based on a fifty-minute class period. You may need to adjust some of them from time to

More information

3.6 The Real Zeros of a Polynomial Function

3.6 The Real Zeros of a Polynomial Function SECTION 3.6 The Real Zeros of a Polynomial Function 219 3.6 The Real Zeros of a Polynomial Function PREPARING FOR THIS SECTION Before getting started, review the following: Classification of Numbers (Appendix,

More information

Course Outlines. 1. Name of the Course: Algebra I (Standard, College Prep, Honors) Course Description: ALGEBRA I STANDARD (1 Credit)

Course Outlines. 1. Name of the Course: Algebra I (Standard, College Prep, Honors) Course Description: ALGEBRA I STANDARD (1 Credit) Course Outlines 1. Name of the Course: Algebra I (Standard, College Prep, Honors) Course Description: ALGEBRA I STANDARD (1 Credit) This course will cover Algebra I concepts such as algebra as a language,

More information