Computer Algebra Systems Approach to Teaching Taylor Polynomials

Size: px
Start display at page:

Download "Computer Algebra Systems Approach to Teaching Taylor Polynomials"

Transcription

1 Computer Algebra Systems Approach to Teaching Taylor Polynomials John H. Mathews Department of Mathematics, California State University, Fullerton, CA Computer algebra systems (CAS's) such as DERIVE, MACSYMA, MAPLE, mumath and Mathematica can be used as powerful assistants for performing symbol manipulations in algebra and calculus. It has been suggested that these systems will benefit undergraduates in mathematics by keeping track of the details in complicated manipulations (see Cromer, 1987 ; Freese, Lounesto & Stegenga, 1986 ; Small & Hosack, 1986 ; Woof & Hodgkinson, 1987 ; and Zorn, 1986). This article shows howthe symbolic calculus and graphics capabilities of the two CAS systems MAPLE and Mathematica can be used to enrich the understanding of both the theoretical and computational aspects oftaylor series. Both systems are available on Macintosh computers, and to fully utilize their capabilities requires several megabytes of RAM memory. The Mathematics Department at CSUF uses a satellite computer laboratory in our School of Natural Science and Mathematics. It currently includes 19 students work stations. The Taylor series expansion of a function f(x) is a familiar topic of sophomore calculus. It is the foundation of much theory in analysis and applied mathematics. Unfortunately, it is often viewed by students to be difficult to understand. Using assistance from CAS to construct the coefficients of the series, draw graphs and manipulate polynomials of high degree, gives us more time to focus our attention on the underlying principles. Using MAPLE and Mathematica has generated enthusiasm for both students and teachers. THEOREM [Taylor]. Let f be infinitely differentiable on an interval containing the numbersxo andx. Then, for eachpositive integer n, f(x) can be represented as the sum (1) f(x) = Pn (x) + Rn(x), where n f(k) (XO)(X -XO)k (2) Pn(X) = ~ kt k=0 John earned his PhD in mathematics from Michigan State University under the direction of Peter Lappan. He has been a member of the mathematics faculty of California State University, Fullerton, for twenty years, and keeps active in the areas of complex analysis, numerical analysis and computer algebra. f(n+l)(c )(X- XO)n+l (3) Rn(X ) (n+l)t where c = c(x) lies somewhere between x0 andx. The MAPLE syntax for initiating the computation of a Taylor series is taylor(f, x =x0, n + 1) ; which returns the n-th degree Taylor series for f with respect to the variable x expanded about the value x0. For example, the Maclaurin series of order n=7 for sin(x), cos(x), exp(x) and ln(1 +x) are found byissuing the commands : taylor(sin(x),x =0,8) ; x - 1/6x3 + 1/120 xs - 1/5040 x7 + O(x$) taylor(cos(x),x =0, 8) ; 1-1/2x2 + 1/24x4-1/720x6 + O(X8) taylor(exp(x), x =0, 8) ; 1 +x +1/2x2 +1/6x3 +1/24x x5 +1/720X 6 + 1/5040 x7 +0(X8) taylor(log(l+x), x =0, 8) ; X-1/2x2+1/3x3-1/4x4+1/5x5-1/6x6+1/7X7+0(X8) MAPLE has included the terms O(x8), which means that the coefficients of the Taylor series have been computed up to x7 and that an error term must be included and it involves several factors, one of which isx8. In order to do computations with the Taylor series, we must use MAPLE's command to convert them to polynomial form, i.e. we must dig out the polynomial part. For example, suppose that we want to view the polynomial approximations of degree n=3,5,7,9 to sin(x) over the interval [- 2ar,2n]. Then we issue the MAPLE commands : p3 := convert(taylor(sin(x),x=0,4),polynom) ; P3 : = x - 1/6x3 61

2 p5 := convert(taylor(sin (x),x=0, 6),polynom) ; p5 : = x - 1/6x3 + 1/120 x5 p7 := convert(taylor(sin(x), x=0, 8),polynom) ; P7 : = x - 1/6 x 3 + 1/120 x5-1/5040x7 p9 := convert(taylor(sin(x),x=0, 10),polynom) ; p9 : = x-1/6 x3 + 1/120 x5-1/5040 x7 + 1/ x9 it and see that it produces an approximation that is not symmetric about the origin (see Figure 2). We are now ready to look at the four polynomial approximations P3(X)1 PS (x), Nx) and P9 (x) to f(x) _ sin(x) (see Figure 1). Figure 2 Figure 1 Looking at Figure 1 reveals that the approximations of higher degree track the curve y = sin(x) closer over a wider interval. Further investigations can be made by the students. The details for expanding f in a Taylor series about xo # 0 usually requires more work than a Maclaurin series and is error prone. Let us switch to Mathematica and continue our CAS investigations. We expand sin(x) in a Taylor series of degree n =5 about x0 =,7r/3 by issuing the Mathematica command : t5 = Series [Sin [x1,fx,pi/3,5j1 S rt3 3l +x Sgrt[3] 3' +x 2-3l+x~ Sgrt[3] 4 5 -Pi -Pi + x + x 6 ( x1 Notice that Mathematica has used the notation Pi and Sgrt[3] for ac and 31/2, respectively. Notational conventions such as these are typical for CAS and it is best to stare at the output until it becomes familiar. After we convert the Taylor series to a polynomial, we can graph Students immediately find that using CAS is a powerful tool for doing homework problems. However, in order to understand the theory they must learn how the coefficients and error term are derived. This too can be assisted with Mathematica, but it is necessary to write a short program that prints out the intermediate steps. The syntax for this new Mathematica procedure is Taylor[f, x0, n] ; and the listing is given in the appendix at the end of the article. It produces more information and helps students understand the underlying principleswhen the details are messy. EXAMPLE 1. Find the Taylor polynomial of degree n = 8 and the corresponding error term for the function f(x) _ exp(-x)sin(x) expanded about the valuex0 = 0. SOLUTION. First, we can place sin(x) in the variable F by typing : F = Exp[-x] Sin[x] and the computer responds Issue the new Mathematica command : Taylor[F, 0, 8] ; Then Mathematica will print the following information : 62

3 Formulas for the Numerical values for derivatives : the derivatives : SOLUTION. First, we can place x1/3 in the variable F with the command: f<t)[x] Cosx - EY f(2) = -2 Cos [x] Sin Ex f (0)[0] = 0 ftl)[0] = 1 f( 2 )[0] = -2 and the computer's response is i x' Then issue the Mathematica command : Taylor [F, 8, 91 ; f(3) [x] = 2 Cos + 2 Sin f(3)[0] = 2 Again, a complete list of formulas and values of the Ex EX derivatives will be printed by Mathematica. For brevity, we have edited this printout. f(4)[x] = -4 Si f(5)[x] f(4 )[0] = 0 Formulas for the Numerical values for derivatives : the derivatives : - -4 Cos + 4 Sin f(5)[0] = -4 f(1) Ex Ex 1X] f (1) [8] 12 f(6) = 8 Cosx [x] f( 6)[0] = 8 _ 1. f EX (2)[8] - (144) sh 3 _ -8 Cos - 8 Sin f(7)[x] F)[0] = Ex Ex f(3) [x] =! f (3) [8] x3 (8) 16 Sin f(8)[0] = 0 The Taylor polynomial is : The function is : F[x] =Sin Ex -8 +x -8 +X) x 3 P91x] = The Taylor polynomial is: _ X)4 11(-8 + x)5 _ 77 (-8 + x) P81x1 =x - x (-8 + x)7 _ 935 (-8 + x)8 (-8 + x) The Lagrange form of the remainder term is: x9 16 Cos c - 16 Sin c R8[x] = E c E c where c lies somewhere between 0 and x. In this example, the pattern for the derivatives appears to involve multiples of the sequence {0, 1, -2, 2}, a fact that can now be proven by induction. EXAMPLE 2. Find the Taylor polynomial of degree n=9 and the corresponding error term for the function f(x) _ x1/3 expanded about the value x0 = The Lagrange form of the remainder term is : R9 [x] _ xio LIJ c 3 where c lies somewhere between 8 and x. Sincexl/3 is not symmetric aboutx o = 8, it is interesting to view this approximation. For convenience, we use the interval [0,27] (see Figure 3).

4 f = 1/(x ^ 2 + 1) Figure 3. Interval of Convergence. Another important topic about infinite series is the interval of convergence. For illustrative purposes, we shall consider the Runge function f(x) = 1(x2 + 1). The Taylor polynomials of degree n =10 and n =12 expanded about x=0 are obtained when we issue the commands : p10 = Normal [Series [f, {x, 0, X 2 + x4 _X6 + X8 -x10 Figure 4. Why do the approximations P10 and P 12 diverge away from f near x = 1 and x=-1? Because, P10( 1) = P10(-1 ) = 0, P12( 1 ) = P12( -1 ) = 1 and f(1) = f(-1) = 1/2. The error for all ofthese cases is ± 1/2. This pattern is continued with all of the partial sums of the infinite Taylor series. The Taylor series will converge to f(x) when -1 < x < 1 but will not converge at the endpoints x = ± 1. The theoretical approach is to investigate the error term E10(x) = W1) (c)x11/11! We can gain insights after we plot the function g(x) = f( 11 ) (x)/11! (see Figure 5). g = Together [ (D[f, {x, 11}])/11!] 12x - 220x X5-792x x11 plot[g, {x, -1.5,1.5}] and p12 = Normal[Series [f, {x, 0,13 }]] 1 _X2 + x4 _X6 + X8 -x10 + x12 We can visually inspect how close these approximations are to f(x) when we plot the graphs of f, P 10 (x) and P12(x) (see Figure 4). Figure 5. Looking at the graph of g(x) we can see that I g(x) I < 0.95 and since Ixll I < 1 when IxI < 1, we have established the error bound 64

5 I E1o(x) I = I g(c) I Ix 11 I < * 1 = Investigations such as these take some of the mystery out of mathematical analysis. The Calculus of Power Series The study of power series should be viewed as the extension of the study of polynomials. The connection can be madewhen we use the symbol manipulation power of Mathematica to investigate meaningful examples. cosine = Normal [Series [Cos[x],{x, 0, 13}]] x 2 x 4 X6 X8 x10 x The termwise derivative of this polynomial is easily found: D [cosine, x] x.3 xs x7 x9 x11 - x This can be compared with the series for sin x. sine = Normal [Series [Sin [x], {x, 0,12}]] x x3 xs x7 x9 x The conclusion to be drawn is that d/dz cos(x) = - sin(x). A well known identity from trigonometry can be attempted when we issue the command Normal[sine^2 + cosine^2] x14 x 16 x x The interpretation to be made is that this is a good approximation to 1 whenx is small or even when Ix I < 1. This can be contrasted with the series manipulation ap proach given in Example 3 below, but be prepared to answer some sticky questions. The Cauchy Product CAS can be usedto illustrate abstract ideals byfinding the Taylor series of the product f(x)g(x). It is known that the formula involves a linear combination of derivates and binomial coefficients. First, we can discover the pattern for the higher derivates of the product h(x) _ f(x)g(x) with the following dialogue. D[f[x] g[x],x] g[x] f' [x] + fjx] g' [x] The second derivative of the product is : D[f[x] g[xl, {x, 2}] 2 f' [x] g' [x] + g[x] f" [x] + f[x] g"[x] Similarly, the third and fourth derivatives are : D[f[x] g [x], {x, 3}] 3 g'[x] f"[x] + 3 f'[x] g" [x] + g[x] f( 3 ) [x] + f[x] g(3) [X] and D[f[x] g [x], {x, 4}] 6 f"[x]g"[x]+4g'[x]f(3)[x]+4f'[x]g(3) [x] +g[x] f(4) [x] + qx] g (4 )[x] A regrettable feature of CAS is that the answer might not appear in a format that the user expects or wants ; i.e., the previous results are illuminated when they are rewritten as fg'+f'g fg"+2f'g'+f"g f g"' +3Fg"+3f"g'+f"'g f g"" +4f'g"'+6f"g"+4f"' g'+f""g The pattern of binomial coefficients can now be recognized. Therefore, our Mathematica experimentation led us to the conjecture h(k)(x) =, I (~ ) (x)g(k-j) (x), which can be proven with mathematical induction. Therefore, the Taylor polynomial Pn (x) of degree n for the product h(x) is 65

6 ( 4 ) Pn(x) = 2 kt n h(k) ( x p) (x-xo)k k=0 h(k) (xo) = E (k) f(j) (xo)g( k-j) (xv), j=0 J EXAMPLE 3. Verify that formulas (4) and (5) can be used to find the Taylor polynomial of degree n = 4 for the function h(x) = exp(x)cos(x). SOLUTION. we know that Let f(x) = exp(x) and g(x) = cos(x), then f(0) =1, f'(0) =1, f"(0) =1, f"'(0) =1 and f....(0) =1 g(0) =1, g'(0) =0, g"(0) = -1, g"' (0) = 0 and g.... (0) Therefore, h(0) = 1(1) (1) = 1 h'(0) = 1(1) (0) + 1(1) (1) = 1 h"(0) = 1(1)(-1) + 2(1) (0) + 1(1) (1) = 0 h"'(0) =1(1) (0) + 3(1) (-1) + 3(1) (0) + 1(1)(1) = -2 h"" (0) =1(1)(1)+4(1)(0)+6(1)(-1)+4(1)(0) + 1(1)(1) =-4 Hence, the desired Taylor polynomial is P4 (x) = 1 + 1/1! x + 0/2! x2-2/3! x3-4/4!x4 = 1 + x - x3/3 - x4/6 Of course, this can be verified with the Mathematica cosx = Series [Cos [x], {x, 0, 4 } ] O[x]5 expx = Series [Exp [x], {x, 0, 4 }] l+x [x] 5 coax expx l+x-3-6 +O[x]5 Notice that Mathematica has multiplied the two series together and ignored terms involving powers ofx larger than 4. After all, this is to be expected, because if you do not yet know the coefficients forx 5 in the series for cos(x) and exp(x) then you cannot compute it in their product. Conclusion We have seen how shifting the burden of computing to CAS leaves more time to explore more meaningful problems, rather than studying only a few routine exercises. Details involving error analysis can be obtained for several complicated functions. Graphs of functions and their higher derivatives are easy to obtain. The obstacle of not enough time is erased and implementing an experimental approach is feasible. It does open up the door to asking questions, many of which cannot be answered on the spot. Ifan attitude of encouragement is used then the situation makes students active participants in mathematical exploration, rather than passive recipients of a fixed body of facts. Appendix The Mathematica program listing which prints out the details for a Taylor series is : Taylor[f,x0_,n j : = {Print ["Formulas for the derivatives:"], Do[{Der = D[f, {x, k1l, Print["r,Superscript["(",k,")"], "[x] Der], Print[" {k, 0, n}l, Print["Numerical values for the derivatives:"], Do[{Der = D[f, {x, k}], Val = ReplaceAll]Der,x-+x0], Print["r,Superscript["(",k,")"], "[",x0,"] Val], Print[" {k, 0, n]], Print["The function is :","\n"," F[x] _ ",fl, Print["The Taylor polynomial is:"], S = Normal [Series [f, {x, x0, n}]], Print ["P",Subscript[n],"[x] S], m=n+1, Der = D[f, {x, m1l, Err = ReplaceAll[Der,x-c]c^m/m!, Print["The Lagrange form of the remainder term is :"], Print["R",Subscript[n],"[xl Err], Print["where c lies somewhere between ", x0," and x."] } References Cromer, T. (1987). Some applications of computer algebra. Colleagiate Microcomputer, 5(2), Freese, K, Lounesto, P., & Stegenga, D. (1986). The use of mumath in the calculus classroom. Journal of Computers in Mathematics and Science Teaching, 6, Small, D., & Hosack, J. (1986). Computer algebra systems, tools for reforming calculus instruction. MAA Notes, 6, Mathematical Association of America, Woof, C., & Hodgkinson, D. (1987). mumath. A microcomputer algebra system. New York : Academic Press. Zom,P.(1986). Coputersymbolicmanipulation inelementary calculus. MAA Notes, 6, Mathematical Association ofamerica,

The Tangent Parabola The AMATYC Review, Vol. 23, No. 1, Fall 2001, pp

The Tangent Parabola The AMATYC Review, Vol. 23, No. 1, Fall 2001, pp The Tangent Parabola The AMATYC Review, Vol. 3, No., Fall, pp. 5-3. John H. Mathews California State University Fullerton Fullerton, CA 9834 By Russell W. Howell Westmont College Santa Barbara, CA 938

More information

JUST THE MATHS UNIT NUMBER DIFFERENTIATION APPLICATIONS 5 (Maclaurin s and Taylor s series) A.J.Hobson

JUST THE MATHS UNIT NUMBER DIFFERENTIATION APPLICATIONS 5 (Maclaurin s and Taylor s series) A.J.Hobson JUST THE MATHS UNIT NUMBER.5 DIFFERENTIATION APPLICATIONS 5 (Maclaurin s and Taylor s series) by A.J.Hobson.5. Maclaurin s series.5. Standard series.5.3 Taylor s series.5.4 Exercises.5.5 Answers to exercises

More information

MATH 1231 MATHEMATICS 1B CALCULUS. Section 5: - Power Series and Taylor Series.

MATH 1231 MATHEMATICS 1B CALCULUS. Section 5: - Power Series and Taylor Series. MATH 1231 MATHEMATICS 1B CALCULUS. Section 5: - Power Series and Taylor Series. The objective of this section is to become familiar with the theory and application of power series and Taylor series. By

More information

11.10a Taylor and Maclaurin Series

11.10a Taylor and Maclaurin Series 11.10a 1 11.10a Taylor and Maclaurin Series Let y = f(x) be a differentiable function at x = a. In first semester calculus we saw that (1) f(x) f(a)+f (a)(x a), for all x near a The right-hand side of

More information

1 Question related to polynomials

1 Question related to polynomials 07-08 MATH00J Lecture 6: Taylor Series Charles Li Warning: Skip the material involving the estimation of error term Reference: APEX Calculus This lecture introduced Taylor Polynomial and Taylor Series

More information

TAYLOR AND MACLAURIN SERIES

TAYLOR AND MACLAURIN SERIES TAYLOR AND MACLAURIN SERIES. Introduction Last time, we were able to represent a certain restricted class of functions as power series. This leads us to the question: can we represent more general functions

More information

8.5 Taylor Polynomials and Taylor Series

8.5 Taylor Polynomials and Taylor Series 8.5. TAYLOR POLYNOMIALS AND TAYLOR SERIES 50 8.5 Taylor Polynomials and Taylor Series Motivating Questions In this section, we strive to understand the ideas generated by the following important questions:

More information

Math 651 Introduction to Numerical Analysis I Fall SOLUTIONS: Homework Set 1

Math 651 Introduction to Numerical Analysis I Fall SOLUTIONS: Homework Set 1 ath 651 Introduction to Numerical Analysis I Fall 2010 SOLUTIONS: Homework Set 1 1. Consider the polynomial f(x) = x 2 x 2. (a) Find P 1 (x), P 2 (x) and P 3 (x) for f(x) about x 0 = 0. What is the relation

More information

Sequences and Series

Sequences and Series Sequences and Series What do you think of when you read the title of our next unit? In case your answers are leading us off track, let's review the following IB problems. 1 November 2013 HL 2 3 November

More information

Lecture 32: Taylor Series and McLaurin series We saw last day that some functions are equal to a power series on part of their domain.

Lecture 32: Taylor Series and McLaurin series We saw last day that some functions are equal to a power series on part of their domain. Lecture 32: Taylor Series and McLaurin series We saw last day that some functions are equal to a power series on part of their domain. For example f(x) = 1 1 x = 1 + x + x2 + x 3 + = ln(1 + x) = x x2 2

More information

Ma 530 Power Series II

Ma 530 Power Series II Ma 530 Power Series II Please note that there is material on power series at Visual Calculus. Some of this material was used as part of the presentation of the topics that follow. Operations on Power Series

More information

Taylor and Maclaurin Series

Taylor and Maclaurin Series Taylor and Maclaurin Series MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Background We have seen that some power series converge. When they do, we can think of them as

More information

Chapter 11. Taylor Series. Josef Leydold Mathematical Methods WS 2018/19 11 Taylor Series 1 / 27

Chapter 11. Taylor Series. Josef Leydold Mathematical Methods WS 2018/19 11 Taylor Series 1 / 27 Chapter 11 Taylor Series Josef Leydold Mathematical Methods WS 2018/19 11 Taylor Series 1 / 27 First-Order Approximation We want to approximate function f by some simple function. Best possible approximation

More information

SOLVED PROBLEMS ON TAYLOR AND MACLAURIN SERIES

SOLVED PROBLEMS ON TAYLOR AND MACLAURIN SERIES SOLVED PROBLEMS ON TAYLOR AND MACLAURIN SERIES TAYLOR AND MACLAURIN SERIES Taylor Series of a function f at x = a is ( f k )( a) ( x a) k k! It is a Power Series centered at a. Maclaurin Series of a function

More information

Taylor and Maclaurin Series. Copyright Cengage Learning. All rights reserved.

Taylor and Maclaurin Series. Copyright Cengage Learning. All rights reserved. 11.10 Taylor and Maclaurin Series Copyright Cengage Learning. All rights reserved. We start by supposing that f is any function that can be represented by a power series f(x)= c 0 +c 1 (x a)+c 2 (x a)

More information

8.7 Taylor s Inequality Math 2300 Section 005 Calculus II. f(x) = ln(1 + x) f(0) = 0

8.7 Taylor s Inequality Math 2300 Section 005 Calculus II. f(x) = ln(1 + x) f(0) = 0 8.7 Taylor s Inequality Math 00 Section 005 Calculus II Name: ANSWER KEY Taylor s Inequality: If f (n+) is continuous and f (n+) < M between the center a and some point x, then f(x) T n (x) M x a n+ (n

More information

Fourier and Partial Differential Equations

Fourier and Partial Differential Equations Chapter 5 Fourier and Partial Differential Equations 5.1 Fourier MATH 294 SPRING 1982 FINAL # 5 5.1.1 Consider the function 2x, 0 x 1. a) Sketch the odd extension of this function on 1 x 1. b) Expand the

More information

MATH 118, LECTURES 27 & 28: TAYLOR SERIES

MATH 118, LECTURES 27 & 28: TAYLOR SERIES MATH 8, LECTURES 7 & 8: TAYLOR SERIES Taylor Series Suppose we know that the power series a n (x c) n converges on some interval c R < x < c + R to the function f(x). That is to say, we have f(x) = a 0

More information

e x = 1 + x + x2 2! + x3 If the function f(x) can be written as a power series on an interval I, then the power series is of the form

e x = 1 + x + x2 2! + x3 If the function f(x) can be written as a power series on an interval I, then the power series is of the form Taylor Series Given a function f(x), we would like to be able to find a power series that represents the function. For example, in the last section we noted that we can represent e x by the power series

More information

AP Calculus Testbank (Chapter 9) (Mr. Surowski)

AP Calculus Testbank (Chapter 9) (Mr. Surowski) AP Calculus Testbank (Chapter 9) (Mr. Surowski) Part I. Multiple-Choice Questions n 1 1. The series will converge, provided that n 1+p + n + 1 (A) p > 1 (B) p > 2 (C) p >.5 (D) p 0 2. The series

More information

Mathematics - High School Algebra II

Mathematics - High School Algebra II Mathematics - High School Algebra II All West Virginia teachers are responsible for classroom instruction that integrates content standards and mathematical habits of mind. Students in this course will

More information

Algebra 2 and Mathematics 3 Critical Areas of Focus

Algebra 2 and Mathematics 3 Critical Areas of Focus Critical Areas of Focus Ohio s Learning Standards for Mathematics include descriptions of the Conceptual Categories. These descriptions have been used to develop critical areas for each of the courses

More information

Taylor and Maclaurin Series. Approximating functions using Polynomials.

Taylor and Maclaurin Series. Approximating functions using Polynomials. Taylor and Maclaurin Series Approximating functions using Polynomials. Approximating f x = e x near x = 0 In order to approximate the function f x = e x near x = 0, we can use the tangent line (The Linear

More information

ALGEBRA 2/MATH 3 COURSE 1

ALGEBRA 2/MATH 3 COURSE 1 ALGEBRA 2/MATH 3 COURSE 1 TABLE OF CONTENTS NUMBER AND QUANTITY 6 THE REAL NUMBER SYSTEM (N.RN) 6 EXTEND THE PROPERTIES OF EXPONENTS TO RATIONAL EXPONENTS. (N.RN.1-2) 6 Expectations for Learning 6 Content

More information

MATH III CCR MATH STANDARDS

MATH III CCR MATH STANDARDS INFERENCES AND CONCLUSIONS FROM DATA M.3HS.1 Use the mean and standard deviation of a data set to fit it to a normal distribution and to estimate population percentages. Recognize that there are data sets

More information

COURSE OF STUDY MATHEMATICS

COURSE OF STUDY MATHEMATICS COURSE OF STUDY MATHEMATICS Name of Course: Honors PreCalculus Course Number: 341 Grade Level: 11 Length of Course: 180 Days Type of Offering: Academic Credit Value: 1 credit Prerequisite/s: Honors Geometry

More information

INFINITE SEQUENCES AND SERIES

INFINITE SEQUENCES AND SERIES 11 INFINITE SEQUENCES AND SERIES INFINITE SEQUENCES AND SERIES In section 11.9, we were able to find power series representations for a certain restricted class of functions. INFINITE SEQUENCES AND SERIES

More information

Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series

Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series Section 9.7 and 9.10: Taylor Polynomials and Approximations/Taylor and Maclaurin Series Power Series for Functions We can create a Power Series (or polynomial series) that can approximate a function around

More information

Calculus : Summer Study Guide Mr. Kevin Braun Bishop Dunne Catholic School. Calculus Summer Math Study Guide

Calculus : Summer Study Guide Mr. Kevin Braun Bishop Dunne Catholic School. Calculus Summer Math Study Guide 1 Calculus 2018-2019: Summer Study Guide Mr. Kevin Braun (kbraun@bdcs.org) Bishop Dunne Catholic School Name: Calculus Summer Math Study Guide After you have practiced the skills on Khan Academy (list

More information

Series Solutions. 8.1 Taylor Polynomials

Series Solutions. 8.1 Taylor Polynomials 8 Series Solutions 8.1 Taylor Polynomials Polynomial functions, as we have seen, are well behaved. They are continuous everywhere, and have continuous derivatives of all orders everywhere. It also turns

More information

Taylor and Maclaurin Series. Approximating functions using Polynomials.

Taylor and Maclaurin Series. Approximating functions using Polynomials. Taylor and Maclaurin Series Approximating functions using Polynomials. Approximating f x = e x near x = 0 In order to approximate the function f x = e x near x = 0, we can use the tangent line (The Linear

More information

Topics from Algebra and Pre-Calculus. (Key contains solved problems)

Topics from Algebra and Pre-Calculus. (Key contains solved problems) Topics from Algebra and Pre-Calculus (Key contains solved problems) Note: The purpose of this packet is to give you a review of basic skills. You are asked not to use the calculator, except on p. (8) and

More information

Introduction and Review of Power Series

Introduction and Review of Power Series Introduction and Review of Power Series Definition: A power series in powers of x a is an infinite series of the form c n (x a) n = c 0 + c 1 (x a) + c 2 (x a) 2 +...+c n (x a) n +... If a = 0, this is

More information

Study # 1 11, 15, 19

Study # 1 11, 15, 19 Goals: 1. Recognize Taylor Series. 2. Recognize the Maclaurin Series. 3. Derive Taylor series and Maclaurin series representations for known functions. Study 11.10 # 1 11, 15, 19 f (n) (c)(x c) n f(c)+

More information

Chapter 11 - Sequences and Series

Chapter 11 - Sequences and Series Calculus and Analytic Geometry II Chapter - Sequences and Series. Sequences Definition. A sequence is a list of numbers written in a definite order, We call a n the general term of the sequence. {a, a

More information

Math 113 (Calculus 2) Exam 4

Math 113 (Calculus 2) Exam 4 Math 3 (Calculus ) Exam 4 November 0 November, 009 Sections 0, 3 7 Name Student ID Section Instructor In some cases a series may be seen to converge or diverge for more than one reason. For such problems

More information

Traditional Pathway: Algebra II

Traditional Pathway: Algebra II Traditional Pathway: Algebra II Building on their work with linear, quadratic, and exponential functions, students extend their repertoire of functions to include polynomial, rational, and radical functions.

More information

MODULE 1: FOUNDATIONS OF MATHEMATICS

MODULE 1: FOUNDATIONS OF MATHEMATICS MODULE 1: FOUNDATIONS OF MATHEMATICS GENERAL OBJECTIVES On completion of this Module, students should: 1. acquire competency in the application of algebraic techniques; 2. appreciate the role of exponential

More information

Common Core State Standards. Clusters and Instructional Notes Perform arithmetic operations with complex numbers. 5.6

Common Core State Standards. Clusters and Instructional Notes Perform arithmetic operations with complex numbers. 5.6 Algebra II Unit 1: Polynomial, Rational, and Radical Relationships This unit develops the structural similarities between the system of polynomials and the system of integers. Students draw on analogies

More information

Analysis II: Basic knowledge of real analysis: Part V, Power Series, Differentiation, and Taylor Series

Analysis II: Basic knowledge of real analysis: Part V, Power Series, Differentiation, and Taylor Series .... Analysis II: Basic knowledge of real analysis: Part V, Power Series, Differentiation, and Taylor Series Kenichi Maruno Department of Mathematics, The University of Texas - Pan American March 4, 20

More information

Let s Get Series(ous)

Let s Get Series(ous) Department of Mathematics, Computer Science, and Statistics Bloomsburg University Bloomsburg, Pennsylvania 785 Let s Get Series(ous) Summary Presenting infinite series can be (used to be) a tedious and

More information

Power series and Taylor series

Power series and Taylor series Power series and Taylor series D. DeTurck University of Pennsylvania March 29, 2018 D. DeTurck Math 104 002 2018A: Series 1 / 42 Series First... a review of what we have done so far: 1 We examined series

More information

Section Taylor and Maclaurin Series

Section Taylor and Maclaurin Series Section.0 Taylor and Maclaurin Series Ruipeng Shen Feb 5 Taylor and Maclaurin Series Main Goal: How to find a power series representation for a smooth function us assume that a smooth function has a power

More information

Calculus Summer Math Practice. 1. Find inverse functions Describe in words how you use algebra to determine the inverse function.

Calculus Summer Math Practice. 1. Find inverse functions Describe in words how you use algebra to determine the inverse function. 1 Calculus 2017-2018: Summer Study Guide Mr. Kevin Braun (kbraun@bdcs.org) Bishop Dunne Catholic School Calculus Summer Math Practice Please see the math department document for instructions on setting

More information

correlated to the Indiana Academic Standards for Precalculus CC2

correlated to the Indiana Academic Standards for Precalculus CC2 correlated to the Indiana Academic Standards for Precalculus CC2 6/2003 2003 Introduction to Advanced Mathematics 2003 by Richard G. Brown Advanced Mathematics offers comprehensive coverage of precalculus

More information

Table of Contents. Module 1

Table of Contents. Module 1 Table of Contents Module Order of operations 6 Signed Numbers Factorization of Integers 7 Further Signed Numbers 3 Fractions 8 Power Laws 4 Fractions and Decimals 9 Introduction to Algebra 5 Percentages

More information

Curriculum Map for Mathematics HL (DP1)

Curriculum Map for Mathematics HL (DP1) Curriculum Map for Mathematics HL (DP1) Unit Title (Time frame) Sequences and Series (8 teaching hours or 2 weeks) Permutations & Combinations (4 teaching hours or 1 week) Standards IB Objectives Knowledge/Content

More information

Academic Content Standard MATHEMATICS. MA 51 Advanced Placement Calculus BC

Academic Content Standard MATHEMATICS. MA 51 Advanced Placement Calculus BC Academic Content Standard MATHEMATICS MA 51 Advanced Placement Calculus BC Course #: MA 51 Grade Level: High School Course Name: Advanced Placement Calculus BC Level of Difficulty: High Prerequisites:

More information

Chapter 4: More Applications of Differentiation

Chapter 4: More Applications of Differentiation Chapter 4: More Applications of Differentiation Autumn 2017 Department of Mathematics Hong Kong Baptist University 1 / 68 In the fall of 1972, President Nixon announced that, the rate of increase of inflation

More information

WHCSD Grade Content Area

WHCSD Grade Content Area Course Overview and Timing This section is to help you see the flow of the unit/topics across the entire school year. Quarter Unit Description Unit Length Early First Quarter Unit 1: Investigations and

More information

Section Properties of Rational Expressions

Section Properties of Rational Expressions 88 Section. - Properties of Rational Expressions Recall that a rational number is any number that can be written as the ratio of two integers where the integer in the denominator cannot be. Rational Numbers:

More information

Mathematical Methods 2019 v1.2

Mathematical Methods 2019 v1.2 181295 Examination short response This sample has been compiled by the QCAA to assist and support teachers in planning and developing assessment instruments for individual school settings. Schools develop

More information

Common Core State Standards for Mathematics

Common Core State Standards for Mathematics A Correlation of Pearson to the Standards for Mathematics Appendix A, Integrated Pathway High School A Correlation of Pearson, Appendix A Introduction This document demonstrates how Pearson,, meets the

More information

Chapter 8: Taylor s theorem and L Hospital s rule

Chapter 8: Taylor s theorem and L Hospital s rule Chapter 8: Taylor s theorem and L Hospital s rule Theorem: [Inverse Mapping Theorem] Suppose that a < b and f : [a, b] R. Given that f (x) > 0 for all x (a, b) then f 1 is differentiable on (f(a), f(b))

More information

Introduction Derivation General formula Example 1 List of series Convergence Applications Test SERIES 4 INU0114/514 (MATHS 1)

Introduction Derivation General formula Example 1 List of series Convergence Applications Test SERIES 4 INU0114/514 (MATHS 1) MACLAURIN SERIES SERIES 4 INU0114/514 (MATHS 1) Dr Adrian Jannetta MIMA CMath FRAS Maclaurin Series 1/ 19 Adrian Jannetta Background In this presentation you will be introduced to the concept of a power

More information

Taylor Series. Math114. March 1, Department of Mathematics, University of Kentucky. Math114 Lecture 18 1/ 13

Taylor Series. Math114. March 1, Department of Mathematics, University of Kentucky. Math114 Lecture 18 1/ 13 Taylor Series Math114 Department of Mathematics, University of Kentucky March 1, 2017 Math114 Lecture 18 1/ 13 Given a function, can we find a power series representation? Math114 Lecture 18 2/ 13 Given

More information

COURSE OF STUDY MATHEMATICS

COURSE OF STUDY MATHEMATICS COURSE OF STUDY MATHEMATICS Name of Course: Pre-Calculus Course Number: 340 Grade Level: 12 Length of Course: 180 Days Type of Offering: Academic/Elective Credit Value: 1 credit Prerequisite/s: Algebra

More information

Achieve Recommended Pathway: Algebra II

Achieve Recommended Pathway: Algebra II Units Standard Clusters Mathematical Practice Standards Perform arithmetic operations with complex numbers. Use complex numbers in polynomial identities and equations. Interpret the structure of expressions.

More information

CHALLENGE! (0) = 5. Construct a polynomial with the following behavior at x = 0:

CHALLENGE! (0) = 5. Construct a polynomial with the following behavior at x = 0: TAYLOR SERIES Construct a polynomial with the following behavior at x = 0: CHALLENGE! P( x) = a + ax+ ax + ax + ax 2 3 4 0 1 2 3 4 P(0) = 1 P (0) = 2 P (0) = 3 P (0) = 4 P (4) (0) = 5 Sounds hard right?

More information

Quadratics and Other Polynomials

Quadratics and Other Polynomials Algebra 2, Quarter 2, Unit 2.1 Quadratics and Other Polynomials Overview Number of instructional days: 15 (1 day = 45 60 minutes) Content to be learned Know and apply the Fundamental Theorem of Algebra

More information

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section.

Students should read Sections of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. Chapter 3 Differentiation ü 3.1 The Derivative Students should read Sections 3.1-3.5 of Rogawski's Calculus [1] for a detailed discussion of the material presented in this section. ü 3.1.1 Slope of Tangent

More information

B553 Lecture 1: Calculus Review

B553 Lecture 1: Calculus Review B553 Lecture 1: Calculus Review Kris Hauser January 10, 2012 This course requires a familiarity with basic calculus, some multivariate calculus, linear algebra, and some basic notions of metric topology.

More information

MTAEA Differentiation

MTAEA Differentiation School of Economics, Australian National University February 5, 2010 Basic Properties of the Derivative. Secant Tangent Applet l 3 l 2 l 1 a a 3 a 2 a 1 Figure: The derivative of f at a is the limiting

More information

AP Calculus BC. Course Overview. Course Outline and Pacing Guide

AP Calculus BC. Course Overview. Course Outline and Pacing Guide AP Calculus BC Course Overview AP Calculus BC is designed to follow the topic outline in the AP Calculus Course Description provided by the College Board. The primary objective of this course is to provide

More information

8.7 MacLaurin Polynomials

8.7 MacLaurin Polynomials 8.7 maclaurin polynomials 67 8.7 MacLaurin Polynomials In this chapter you have learned to find antiderivatives of a wide variety of elementary functions, but many more such functions fail to have an antiderivative

More information

CALCULUS JIA-MING (FRANK) LIOU

CALCULUS JIA-MING (FRANK) LIOU CALCULUS JIA-MING (FRANK) LIOU Abstract. Contents. Power Series.. Polynomials and Formal Power Series.2. Radius of Convergence 2.3. Derivative and Antiderivative of Power Series 4.4. Power Series Expansion

More information

5.6 Logarithmic and Exponential Equations

5.6 Logarithmic and Exponential Equations SECTION 5.6 Logarithmic and Exponential Equations 305 5.6 Logarithmic and Exponential Equations PREPARING FOR THIS SECTION Before getting started, review the following: Solving Equations Using a Graphing

More information

Rational Functions. Elementary Functions. Algebra with mixed fractions. Algebra with mixed fractions

Rational Functions. Elementary Functions. Algebra with mixed fractions. Algebra with mixed fractions Rational Functions A rational function f (x) is a function which is the ratio of two polynomials, that is, Part 2, Polynomials Lecture 26a, Rational Functions f (x) = where and are polynomials Dr Ken W

More information

Chapter 4 Sequences and Series

Chapter 4 Sequences and Series Chapter 4 Sequences and Series 4.1 Sequence Review Sequence: a set of elements (numbers or letters or a combination of both). The elements of the set all follow the same rule (logical progression). The

More information

March Algebra 2 Question 1. March Algebra 2 Question 1

March Algebra 2 Question 1. March Algebra 2 Question 1 March Algebra 2 Question 1 If the statement is always true for the domain, assign that part a 3. If it is sometimes true, assign it a 2. If it is never true, assign it a 1. Your answer for this question

More information

Calculus II Lecture Notes

Calculus II Lecture Notes Calculus II Lecture Notes David M. McClendon Department of Mathematics Ferris State University 206 edition Contents Contents 2 Review of Calculus I 5. Limits..................................... 7.2 Derivatives...................................3

More information

19. TAYLOR SERIES AND TECHNIQUES

19. TAYLOR SERIES AND TECHNIQUES 19. TAYLOR SERIES AND TECHNIQUES Taylor polynomials can be generated for a given function through a certain linear combination of its derivatives. The idea is that we can approximate a function by a polynomial,

More information

Optimization using Calculus. Optimization of Functions of Multiple Variables subject to Equality Constraints

Optimization using Calculus. Optimization of Functions of Multiple Variables subject to Equality Constraints Optimization using Calculus Optimization of Functions of Multiple Variables subject to Equality Constraints 1 Objectives Optimization of functions of multiple variables subjected to equality constraints

More information

Analyzing Power Series using Computer Algebra and Precalculus Techniques

Analyzing Power Series using Computer Algebra and Precalculus Techniques Analyzing Power Series using Computer Algebra and Precalculus Techniques Dr. Ken Collins Chair, Mathematics Department Charlotte Latin School Charlotte, North Carolina, USA kcollins@charlottelatin.org

More information

Algebra II Introduction 1

Algebra II Introduction 1 Introduction 1 Building on their work with linear, quadratic, and exponential functions, students extend their repertoire of functions to include logarithmic, polynomial, rational, and radical functions

More information

Algebra II. Algebra II Higher Mathematics Courses 77

Algebra II. Algebra II Higher Mathematics Courses 77 Algebra II Building on their work with linear, quadratic, and exponential functions, students extend their repertoire of functions to include logarithmic, polynomial, rational, and radical functions in

More information

Introduction Derivation General formula List of series Convergence Applications Test SERIES 4 INU0114/514 (MATHS 1)

Introduction Derivation General formula List of series Convergence Applications Test SERIES 4 INU0114/514 (MATHS 1) MACLAURIN SERIES SERIES 4 INU0114/514 (MATHS 1) Dr Adrian Jannetta MIMA CMath FRAS Maclaurin Series 1/ 21 Adrian Jannetta Recap: Binomial Series Recall that some functions can be rewritten as a power series

More information

Investigation of Tangent Polynomials with a Computer Algebra System The AMATYC Review, Vol. 14, No. 1, Fall 1992, pp

Investigation of Tangent Polynomials with a Computer Algebra System The AMATYC Review, Vol. 14, No. 1, Fall 1992, pp Investigation of Tangent Polynomials wit a Computer Algebra System Te AMATYC Review, Vol. 14, No. 1, Fall 199, pp. -7. Jon H. Matews California State University Fullerton Fullerton, CA 9834 By Russell

More information

Chapter 1: Limits and Continuity

Chapter 1: Limits and Continuity Chapter 1: Limits and Continuity Winter 2015 Department of Mathematics Hong Kong Baptist University 1/69 1.1 Examples where limits arise Calculus has two basic procedures: differentiation and integration.

More information

Calculus. Weijiu Liu. Department of Mathematics University of Central Arkansas 201 Donaghey Avenue, Conway, AR 72035, USA

Calculus. Weijiu Liu. Department of Mathematics University of Central Arkansas 201 Donaghey Avenue, Conway, AR 72035, USA Calculus Weijiu Liu Department of Mathematics University of Central Arkansas 201 Donaghey Avenue, Conway, AR 72035, USA 1 Opening Welcome to your Calculus I class! My name is Weijiu Liu. I will guide you

More information

AP Calculus Chapter 9: Infinite Series

AP Calculus Chapter 9: Infinite Series AP Calculus Chapter 9: Infinite Series 9. Sequences a, a 2, a 3, a 4, a 5,... Sequence: A function whose domain is the set of positive integers n = 2 3 4 a n = a a 2 a 3 a 4 terms of the sequence Begin

More information

California Common Core State Standards for Mathematics Standards Map Mathematics III

California Common Core State Standards for Mathematics Standards Map Mathematics III A Correlation of Pearson Integrated High School Mathematics Mathematics III Common Core, 2014 to the California Common Core State s for Mathematics s Map Mathematics III Copyright 2017 Pearson Education,

More information

Chapter 7: Techniques of Integration

Chapter 7: Techniques of Integration Chapter 7: Techniques of Integration MATH 206-01: Calculus II Department of Mathematics University of Louisville last corrected September 14, 2013 1 / 43 Chapter 7: Techniques of Integration 7.1. Integration

More information

SECONDARY MATHEMATICS III

SECONDARY MATHEMATICS III SECONDARY MATHEMATICS III IN SECONDARY MATHEMATICS III students pull together and apply the accumulation of learning that they have from their previous courses, with content grouped into four critical

More information

Quarter 2 400, , , , , , ,000 50,000

Quarter 2 400, , , , , , ,000 50,000 Algebra 2 Quarter 2 Quadratic Functions Introduction to Polynomial Functions Hybrid Electric Vehicles Since 1999, there has been a growing trend in the sales of hybrid electric vehicles. These data show

More information

Chapter II.B. The Chain Rule

Chapter II.B. The Chain Rule Chapter IIB The Chain Rule x x Preface: To find the derivative of f (x) = [sin(x)] and g (x) = exp(x) = e = [e ] you could x x view these functions as the products, sin(x) sin(x) or e e With this view

More information

Homework and Computer Problems for Math*2130 (W17).

Homework and Computer Problems for Math*2130 (W17). Homework and Computer Problems for Math*2130 (W17). MARCUS R. GARVIE 1 December 21, 2016 1 Department of Mathematics & Statistics, University of Guelph NOTES: These questions are a bare minimum. You should

More information

Convergence of sequences and series

Convergence of sequences and series Convergence of sequences and series A sequence f is a map from N the positive integers to a set. We often write the map outputs as f n rather than f(n). Often we just list the outputs in order and leave

More information

Section 10.7 Taylor series

Section 10.7 Taylor series Section 10.7 Taylor series 1. Common Maclaurin series 2. s and approximations with Taylor polynomials 3. Multiplication and division of power series Math 126 Enhanced 10.7 Taylor Series The University

More information

b n x n + b n 1 x n b 1 x + b 0

b n x n + b n 1 x n b 1 x + b 0 Math Partial Fractions Stewart 7.4 Integrating basic rational functions. For a function f(x), we have examined several algebraic methods for finding its indefinite integral (antiderivative) F (x) = f(x)

More information

Indiana Academic Standards for Precalculus

Indiana Academic Standards for Precalculus PRECALCULUS correlated to the Indiana Academic Standards for Precalculus CC2 6/2003 2004 Introduction to Precalculus 2004 by Roland E. Larson and Robert P. Hostetler Precalculus thoroughly explores topics

More information

n=1 ( 2 3 )n (a n ) converges by direct comparison to

n=1 ( 2 3 )n (a n ) converges by direct comparison to . (a) n = a n converges, so we know that a n =. Therefore, for n large enough we know that a n

More information

MIAMI-DADE COUNTY PUBLIC SCHOOLS District Pacing Guide

MIAMI-DADE COUNTY PUBLIC SCHOOLS District Pacing Guide Topic IV: Polynomial Functions, Expressions, and Equations Pacing Date(s) Traditional 19 12/12/16 01/20/17 Block 9 12/12/16 01/20/17 Topic IV Assessment Window 01/17/17 01/20/17 MATHEMATICS FLORIDA STATE

More information

Polynomial Approximations and Power Series

Polynomial Approximations and Power Series Polynomial Approximations and Power Series June 24, 206 Tangent Lines One of the first uses of the derivatives is the determination of the tangent as a linear approximation of a differentiable function

More information

What students need to know for CALCULUS (Regular, AB and BC) Students expecting to take Calculus should demonstrate the ability to:

What students need to know for CALCULUS (Regular, AB and BC) Students expecting to take Calculus should demonstrate the ability to: What students need to know for CALCULUS (Regular, AB and BC) Students expecting to take Calculus should demonstrate the ability to: General: keep an organized notebook take good notes complete homework

More information

Sample Questions PREPARING FOR THE AP (BC) CALCULUS EXAMINATION. tangent line, a+h. a+h

Sample Questions PREPARING FOR THE AP (BC) CALCULUS EXAMINATION. tangent line, a+h. a+h Sample Questions PREPARING FOR THE AP (BC) CALCULUS EXAMINATION B B A B tangent line,, a f '(a) = lim h 0 f(a + h) f(a) h a+h a b b f(x) dx = lim [f(x ) x + f(x ) x + f(x ) x +...+ f(x ) x ] n a n B B

More information

MORE APPLICATIONS OF DERIVATIVES. David Levermore. 17 October 2000

MORE APPLICATIONS OF DERIVATIVES. David Levermore. 17 October 2000 MORE APPLICATIONS OF DERIVATIVES David Levermore 7 October 2000 This is a review of material pertaining to local approximations and their applications that are covered sometime during a year-long calculus

More information

Precalculus Graphical, Numerical, Algebraic Media Update 7th Edition 2010, (Demana, et al)

Precalculus Graphical, Numerical, Algebraic Media Update 7th Edition 2010, (Demana, et al) A Correlation of Precalculus Graphical, Numerical, Algebraic Media Update To the Virginia Standards of Learning for Mathematical Analysis February 2009 INTRODUCTION This document demonstrates how, meets

More information

Mathematics 1 Lecture Notes Chapter 1 Algebra Review

Mathematics 1 Lecture Notes Chapter 1 Algebra Review Mathematics 1 Lecture Notes Chapter 1 Algebra Review c Trinity College 1 A note to the students from the lecturer: This course will be moving rather quickly, and it will be in your own best interests to

More information

AP Calculus (BC) Chapter 9 Test No Calculator Section Name: Date: Period:

AP Calculus (BC) Chapter 9 Test No Calculator Section Name: Date: Period: WORKSHEET: Series, Taylor Series AP Calculus (BC) Chapter 9 Test No Calculator Section Name: Date: Period: 1 Part I. Multiple-Choice Questions (5 points each; please circle the correct answer.) 1. The

More information