Math 112 Lab 8: More with Series

Size: px
Start display at page:

Download "Math 112 Lab 8: More with Series"

Transcription

1 Manipulating Series Math 112 Lab 8: More with Series Various operations can be done to obtain a new series from an old (well-known) series: the basic operations of arithmetic, as well as substitution, differentiation, and integration. We will look at some examples of these operations in this section. The operations will be done with Taylor polynomials, the structures we studied in Lab 7. In the homework we will write the Taylor expansion of a product of two functions: cosÿsinÿx ' lnÿ1 x Example 1. Starting with some familiar series (such as sinÿx, cosÿx, e x,1/ÿ1 x, etc.) obtain the tenth degree Taylor polynomial for lnÿ1 x 2 cosÿcosÿx in powers of x (i.e., about x 0). Solution: We will begin with determining the series for lnÿ1 x 2. This series can be obtained by starting with the series for 1/Ÿ1 t. In case we can t recall the series expansion for this function, we can ask Maple to help us. f1 : taylor(1 / (1 t), t 0, 6); Maple determines the fifth degree Taylor polynomial as f1 : 1 " t t 2 " t 3 t 4 " t 5 OŸt 6. In order to determine the series for lnÿ1 t, we just need to find the antiderivative of the above series f1. We do this in Maple with the int command. f2 : int(f1, t); The sixth degree Taylor polynomial for lnÿ1 t is f2 : t " 1 2 t2 1 3 t3 " 1 4 t4 1 5 t5 " 1 6 t6 OŸt 7. (Note that Maple did not add the constant C to the antiderivative, which turns out to be ok since if we calculate C, it has the value 0.) Recall from Lab 6 we must now convert f2 to a polynomial before substituting t x 2. This is done in Maple with the statements: f2 : convert(f2, polynom); f3 : subs(t x ^2, f2); The resulting Taylor polynomial for lnÿ1 x 2 is x 2 " 1 2 x4 1 3 x6 " 1 4 x8 1 5 x10 " 1 6 x12 OŸx 14. Now we need to determine the series for cosÿcosÿx. We know the series for cosÿx. We can have Maple determine it for us up to the tenth term. g1 : taylor(cos(x), x 0, 11); The tenth degree Taylor polynomial for cosÿx is: 1

2 g1 : 1 " 1 2 x x4 " x x8 " x10 OŸx 11. To get cosÿcosÿx, we want to substitute g1 into a series for cosÿt. But it shouldn t be the series in powers of t because cosÿt is not near 0 when t is near 0, and OŸx 11 would not be small. Instead, we need to use the series for cosÿt in powers of t " 1, because cosÿ0 1. We will let g2 be the series expansion for cosÿt about t 1. g2 : taylor(cos(t), t 1, 11); We obtain g2as cosÿ1 " sinÿ1 Ÿt " 1 " 1 2 cosÿ1 Ÿt " sinÿ1 Ÿt " cosÿ1 Ÿt " 1 4 " sinÿ1 Ÿt " 1 5 O Ÿt " After converting g1 and g2 into polynomials, we can substitute t g1 into g2. g1 : convert(g1, polynom); g2 : convert(g2, polynom); g3 : subs(t g1, g2); The resulting series is a little overwhelming and contains many more terms than we are interested in. It is cosÿ1 " sinÿ1 A " 1 2 cosÿ1 A2 1 6 sinÿ1 A cosÿ1 A4 " sinÿ1 A5, where A " 1 2 x x4 " x x8 " x10. Since we are only interested in the first ten terms of this polynomial, we can use the taylor command to extract only the terms we want. g4 : taylor(g3, x 0, 11); The much less frightening Taylor polynomial for g4is g4 : ŸcosŸ1 1 2 sinÿ1 x2 " 24 1 sinÿ1 " 1 8 cosÿ1 x4 " sinÿ1 1/48 cosÿ1 x sinÿ cosÿ1 x8 " sinÿ1 " cosÿ1 x10 OŸx 12. Finally, we convert g4 to a polynomial and multiply it by f3, the twelfth degree Taylor polynomial for lnÿ1 x 2. Last, we extract the tenth degree polynomial for lnÿ1 x 2 cosÿcosÿx. The final Maple statements g4 : convert(g4, polynom); h1 : f3 * g4; finalpoly : taylor(h1, x 0, 11); convert(finalpoly, polynom); 2

3 produce the result cosÿ1 x sinÿ1 " 1 2 cosÿ1 x4 " 7 24 sinÿ cosÿ1 x sinÿ1 " 1/6 cosÿ1 x Now you ll be glad to know that the statement taylor(ln(1 x ^2) * cos(cos(x)), x 0, 11); cosÿ1 " sinÿ1 x10. produces the same result! But say you are stranded in the Australian Outback and don t have a handy copy of Maple available the good news is that you could derive this crazy polynomial on your own (given that you know the series expansions for your basic functions and rules of integration). Using Series to Solve Differential Equations Many differential equations (DE s) can t be solved explicitly in terms of simple familiar functions. So, one application of series approximation formulas, like the Maclaurin series, is in the solution of DE s. Example 2. Consider the differential equation y U x y with initial condition yÿ0 2. This DE cannot be solved by separating variables. So instead find a third degree polynomial that approximates the solution y X fÿx for x X 0. Solution: Let y fÿx be the solution to the DE: y U x y with initial condition yÿ0 2. Our goal will be to obtain an approximation formula of the form fÿx X a 0 a 1 x a 2 x 2 a 3 x 3. Thus we need to determine the numerical values of a 0, a 1, a 2, and a 3. From Lab 7, given fÿx X a 0 a 1 x a 2 x 2 a 3 x 3 is the Maclaurin series for y near x 0, recall that: a 0 fÿ0, a 1 f U Ÿ0, a 2 f UU Ÿ0 /2, a 3 f UUU Ÿ0 /6. 1) Find a 0. The initial condition yÿ0 2 means that Thus, at this point we know that a 0 fÿ0 2. fÿx X 2 a 1 x a 2 x 2 a 3 x 3. 2) Find a 1. Since fÿx must satisfy the DE y U x y, then f U Ÿx x fÿx. Thus, f U Ÿ0 0 fÿ Hence, a 2 2 and fÿx X 2 2x a 2 x 2 a 3 x 3. 3

4 3) Find a 2. We need a formula for computing f UU Ÿx since a 2 f UU Ÿ0 /2. We can obtain a formula for f UU Ÿx from item 2) above where we know f U Ÿx x fÿx. Differentiating both sides of this equation yields: f UU Ÿx 1 f U Ÿx. and so f UU Ÿ0 1 f U Ÿ Therefore we have a 2 3/2 and fÿx X 2 2x 3 2 x2 a 3 x 3. 4) Find a 3. We need to find f UUU Ÿx in order to determine a 3, since a 3 f UUU Ÿ0 /6. We can obtain such a formula from the fact that f UU Ÿx 1 f U Ÿx. Differentiating this equation yields f UUU Ÿx f UU Ÿx, and so f UUU Ÿ0 f UU Ÿ0 3 and a 3 3/6 1/2. Hence, fÿx X 2 2x 3 2 x2 1 2 x3. It is important to note that the above approximation is only valid for x X 0. In order to solve this DE in Maple, we just need to follow the process outlined above and proceed with the appropriate Maple commands. First define f as the third degree approximation polynomial. Since we know fÿ0 2, we can immediately substitute in 2 for a 0. f : a_0 a_1 * x a_2 * x ^2 a_3 * x ^3; f : subs(a_0 2, f); Since f satisfies the DE y U x y, then f satisfies the DE diff(f, x) x f. Call this DE Eq1, and substitute x 0 into Eq1 to determine the coefficient a 1. Eq1 : diff(f, x) x f; subs(x 0, Eq1); f : subs(a_1 2, f); Taking the derivative of diff(f, x) x f gives us an expression for calculating the second derivative f UU Ÿx and determining f UU Ÿ0. The first two statements determine the value for a 2, and the third statement substitutes the value of a 2 into f. Eq2 : diff(f, x$2) 1 diff(f, x); subs(x 0, Eq2); f : subs(a_2 3 / 2, f); Last, taking the derivative of diff(f, x$2) 1 diff(f, x) gives us an expression for calculating the third derivative f UUU Ÿx and determining f UUU Ÿ0. The final expression for f is then revealed. Eq3 : diff(f, x$3) diff(f, x$2); subs(x 0, Eq3); f : subs(a_3 1 / 2, f); Now that we have written out the step-by-step process to determine the approximating polynomial f, 4

5 we see that Maple actually will determine the exact solution for this differential equation. Use the dsolve command as demonstrated in Lab 6. DE1 : diff(y(x), x) x y(x); dsolve({de1, y(0) 2}, y(x)); y : -x * exp(x); We can determine the third degree Taylor polynomial for y to check that we obtained the correct approximation function fÿx. Also, we can plot the graphs of both the actual solution y and the approximation polynomial fÿx near x 0. The statements that do this are: taylor(y, x 0, 4); actualplot : plot(y, x , color red): cubicplot : plot(f, x , color blue): plots[display]({actualplot, cubicplot}); Example 3. Consider the DE y U xy 1 with initial condition yÿ0 1. Find an approximation formula of the form fÿx a 0 a 1 x a 2 x 2 a 3 x 3 for x X 0. [Hint: Finding f UU Ÿx and f UUU Ÿx will involve the product rule!] Solution: Define f to be a third degree polynomial again and follow the same process in Maple as discussed in Example 1. It is important to remember to use the product rule when determining the equations for f UU Ÿx and f UUU Ÿx. restart; f : a_0 a_1 * x a_2 * x ^2 a_3 * x ^3; f : subs(a_0 1, f); Eq1 : diff(f, x) x * f 1; subs(x 0, Eq1); f : subs(a_1 1, f); Eq2 : diff(f, x$2) x * diff(f, x) 1 * f; subs(x 0, Eq2); f : subs(a_2 1 / 2, f); Eq3 : diff(f, x$3) 1 * diff(f, x) x * diff(f, x$2) diff(f, x); subs(x 0, Eq3); f : subs(a_3 1 / 3, f); 5

6 These statements produce the approximation formula for f as: for x X 0. fÿx 1 x 1 2 x2 1 3 x3 We can also use Maple s dsolve command to solve the DE y U xy 1 with initial condition yÿ0 1: DE2 : diff(y(x), x) x * y(x) 1; dsolve({de2, y(0) 1}, y(x)); y : rhs(%); Maple returns a result for y with an unfamiliar erf expression in it: y : 1 2 = 2 erfÿ x 1 e 1/2x2. In Maple, erf(x) is defined as: erfÿx 2 ; x e "t 2 dt. = 0 Although erf(x) is an intimidating expression, we can still plot and evaluate the function y in Maple. To plot the actual solution and approximation polynomial, use the statements: actualplot : plot(y, x , color red): cubicplot : plot(f, x , color blue): plots[display]({actualplot, cubicplot}); The plots of y and its cubic approximation are displayed in Figure 1 below. The third degree Taylor polynomial for y about x 0 can also be obtained with the statement: taylor(y, x 0, 4); Figure 1: The graphs of the actual and approximate solutions to the DE y U xy 1 with initial condition yÿ0 1. 6

7 Figure1: The graphs of the actual and approximate solutions to the DE y U xy 1 with initial condition yÿ0 1. References Israel, Robert B. (2000), Calculus the Maple Way, Addison Wesley. 7

8 Lab 8 Homework Assignment: Due at the BEGINNING of the next lab class. Please come to class with your lab ready to hand in. Directions: Work the following problems using Maple, unless indicated otherwise. Print out your entire Maple worksheet and hand it in. What you hand in must show the exact Maple commands that you used to solve a given problem. 1. Use the well-known Maclaurin series for fÿx e x to obtain the seventh degree Maclaurin series for gÿx e 3x. [Hint: You will need to use the Maple subs command.] 2. Use a Taylor series to evaluate the following limit: lim xv0 x " arctanÿx x 3 [Hint: You can check your result with Maple s limit command. Go to the Maple help menu if you have forgotten how to use the limit command.] 3. Find the first three nonzero terms in the Maclaurin series for the function y e x lnÿ1 " x. Use the series expansions for e x and lnÿ1 " x. [Hint: Don t forget to use convert to rewrite your polynomials before performing any operations on them.] 4. Starting with well-known series, obtain the 9th degree Maclaurin polynomial for fÿx cosÿsinÿx lnÿ1 x about x Consider the DE y U 2y with initial condition yÿ0 1. (a) Find an approximation formula of the form for x X 0. fÿx a 0 a 1 x a 2 x 2 a 3 x 3 (b) Check your approximation from part (a) by using dsolve and then finding the third degree Taylor polynomial for that solution. Your answers for parts (a) and (b) should be the same! 6. Consider the DE with initial conditions yÿ0 1 and y U Ÿ0 0. (a) Find an approximation formula of the form y UU " xy U " y 0 fÿx a 0 a 1 x a 2 x 2 a 3 x 3 8

9 for x X 0. [Hint: Finding f UUU Ÿx will involve the product rule!) (b) Check your approximation from part (a) by using dsolve and then finding the third degree Taylor polynomial for that solution. Because of the two initial conditions, the dsolve command to solve this equation is: dsolve({diff(y(x), x$2) - x * diff(y(x), x) - y(x) 0, y(0) 1, D(y)(0) 0}, y(x)); 9

Power, Taylor, & Maclaurin Series Page 1

Power, Taylor, & Maclaurin Series Page 1 Power, Taylor, & Maclaurin Series Page 1 Directions: Solve the following problems using the available space for scratchwork. Indicate your answers on the front page. Do not spend too much time on any one

More information

exact for polynomials of degree two using the following methods: Ÿ0 1 Ÿ0 " 2

exact for polynomials of degree two using the following methods: Ÿ0 1 Ÿ0  2 Math 0 Homework 4. a) Derive a derivative approximation formula of the form f U Ÿ0 X AfŸ" BfŸ0 CfŸ exact for polynomials of degree two using the following methods: i) Lagrange polynomial interpolation

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

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

Homework Solutions: , plus Substitutions

Homework Solutions: , plus Substitutions Homework Solutions: 2.-2.2, plus Substitutions Section 2. I have not included any drawings/direction fields. We can see them using Maple or by hand, so we ll be focusing on getting the analytic solutions

More information

Unit #11 - Integration by Parts, Average of a Function

Unit #11 - Integration by Parts, Average of a Function Unit # - Integration by Parts, Average of a Function Some problems and solutions selected or adapted from Hughes-Hallett Calculus. Integration by Parts. For each of the following integrals, indicate whether

More information

AMS 27L LAB #6 Winter 2009

AMS 27L LAB #6 Winter 2009 AMS 27L LAB #6 Winter 2009 Symbolically Solving Differential Equations Objectives: 1. To learn about the MATLAB Symbolic Solver 2. To expand knowledge of solutions to Diff-EQs 1 Symbolically Solving Differential

More information

Completion Date: Monday February 11, 2008

Completion Date: Monday February 11, 2008 MATH 4 (R) Winter 8 Intermediate Calculus I Solutions to Problem Set #4 Completion Date: Monday February, 8 Department of Mathematical and Statistical Sciences University of Alberta Question. [Sec..9,

More information

Math Numerical Analysis

Math Numerical Analysis Math 541 - Numerical Analysis Joseph M. Mahaffy, jmahaffy@mail.sdsu.edu Department of Mathematics and Statistics Dynamical Systems Group Computational Sciences Research Center San Diego State University

More information

POLYNOMIAL EXPRESSIONS PART 1

POLYNOMIAL EXPRESSIONS PART 1 POLYNOMIAL EXPRESSIONS PART 1 A polynomial is an expression that is a sum of one or more terms. Each term consists of one or more variables multiplied by a coefficient. Coefficients can be negative, so

More information

Math 5a Reading Assignments for Sections

Math 5a Reading Assignments for Sections Math 5a Reading Assignments for Sections 4.1 4.5 Due Dates for Reading Assignments Note: There will be a very short online reading quiz (WebWork) on each reading assignment due one hour before class on

More information

Lecture 7: Differential Equations

Lecture 7: Differential Equations Math 94 Professor: Padraic Bartlett Lecture 7: Differential Equations Week 7 UCSB 205 This is the seventh week of the Mathematics Subject Test GRE prep course; here, we review various techniques used to

More information

STAT 111 Recitation 7

STAT 111 Recitation 7 STAT 111 Recitation 7 Xin Lu Tan xtan@wharton.upenn.edu October 25, 2013 1 / 13 Miscellaneous Please turn in homework 6. Please pick up homework 7 and the graded homework 5. Please check your grade and

More information

Mon Jan Improved acceleration models: linear and quadratic drag forces. Announcements: Warm-up Exercise:

Mon Jan Improved acceleration models: linear and quadratic drag forces. Announcements: Warm-up Exercise: Math 2250-004 Week 4 notes We will not necessarily finish the material from a given day's notes on that day. We may also add or subtract some material as the week progresses, but these notes represent

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

Review for Final Exam, MATH , Fall 2010

Review for Final Exam, MATH , Fall 2010 Review for Final Exam, MATH 170-002, Fall 2010 The test will be on Wednesday December 15 in ILC 404 (usual class room), 8:00 a.m - 10:00 a.m. Please bring a non-graphing calculator for the test. No other

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

Solutions of Math 53 Midterm Exam I

Solutions of Math 53 Midterm Exam I Solutions of Math 53 Midterm Exam I Problem 1: (1) [8 points] Draw a direction field for the given differential equation y 0 = t + y. (2) [8 points] Based on the direction field, determine the behavior

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

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

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

Derivatives in 2D. Outline. James K. Peterson. November 9, Derivatives in 2D! Chain Rule

Derivatives in 2D. Outline. James K. Peterson. November 9, Derivatives in 2D! Chain Rule Derivatives in 2D James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University November 9, 2016 Outline Derivatives in 2D! Chain Rule Let s go back to

More information

derivatives of a function at a point. The formulas will be in terms of function data; in our case

derivatives of a function at a point. The formulas will be in terms of function data; in our case Math 220 Spring 200 Prof. Diamond Approximation of derivatives Here we develop formulas, and accompanying error estimates, for approximating derivatives of a function at a point. The formulas will be in

More information

Section 8.7. Taylor and MacLaurin Series. (1) Definitions, (2) Common Maclaurin Series, (3) Taylor Polynomials, (4) Applications.

Section 8.7. Taylor and MacLaurin Series. (1) Definitions, (2) Common Maclaurin Series, (3) Taylor Polynomials, (4) Applications. Section 8.7 Taylor and MacLaurin Series (1) Definitions, (2) Common Maclaurin Series, (3) Taylor Polynomials, (4) Applications. MATH 126 (Section 8.7) Taylor and MacLaurin Series The University of Kansas

More information

First Order ODEs, Part I

First Order ODEs, Part I Craig J. Sutton craig.j.sutton@dartmouth.edu Department of Mathematics Dartmouth College Math 23 Differential Equations Winter 2013 Outline 1 2 in General 3 The Definition & Technique Example Test for

More information

Taylor series. Chapter Introduction From geometric series to Taylor polynomials

Taylor series. Chapter Introduction From geometric series to Taylor polynomials Chapter 2 Taylor series 2. Introduction The topic of this chapter is find approximations of functions in terms of power series, also called Taylor series. Such series can be described informally as infinite

More information

AP CALCULUS BC 2009 SCORING GUIDELINES

AP CALCULUS BC 2009 SCORING GUIDELINES AP CALCULUS BC 009 SCORING GUIDELINES Question 6 The Maclaurin series for by f( x) = x e is 3 n x x x x e = 1 + x + + + + +. The continuous function f is defined 6 n! ( x 1) e 1 for x 1 and f () 1 = 1.

More information

Math Real Analysis II

Math Real Analysis II Math 432 - Real Analysis II Solutions to Homework due February 3 In class, we learned that the n-th remainder for a smooth function f(x) defined on some open interval containing is given by f (k) () R

More information

Lecture 7 - Separable Equations

Lecture 7 - Separable Equations Lecture 7 - Separable Equations Separable equations is a very special type of differential equations where you can separate the terms involving only y on one side of the equation and terms involving only

More information

Math Homework 3 Solutions. (1 y sin x) dx + (cos x) dy = 0. = sin x =

Math Homework 3 Solutions. (1 y sin x) dx + (cos x) dy = 0. = sin x = 2.6 #10: Determine if the equation is exact. If so, solve it. Math 315-01 Homework 3 Solutions (1 y sin x) dx + (cos x) dy = 0 Solution: Let P (x, y) = 1 y sin x and Q(x, y) = cos x. Note P = sin x = Q

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

Northwest High School s Algebra 1

Northwest High School s Algebra 1 Northwest High School s Algebra 1 Summer Review Packet 2015 DUE THE FIRST DAY OF SCHOOL Student Name This packet has been designed to help you review various mathematical topics that will be necessary

More information

1 Lesson 13: Methods of Integration

1 Lesson 13: Methods of Integration Lesson 3: Methods of Integration Chapter 6 Material: pages 273-294 in the textbook: Lesson 3 reviews integration by parts and presents integration via partial fraction decomposition as the third of the

More information

Higher-Order Equations: Extending First-Order Concepts

Higher-Order Equations: Extending First-Order Concepts 11 Higher-Order Equations: Extending First-Order Concepts Let us switch our attention from first-order differential equations to differential equations of order two or higher. Our main interest will be

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

LIMITS AT INFINITY MR. VELAZQUEZ AP CALCULUS

LIMITS AT INFINITY MR. VELAZQUEZ AP CALCULUS LIMITS AT INFINITY MR. VELAZQUEZ AP CALCULUS RECALL: VERTICAL ASYMPTOTES Remember that for a rational function, vertical asymptotes occur at values of x = a which have infinite its (either positive or

More information

MAT137 Calculus! Lecture 45

MAT137 Calculus! Lecture 45 official website http://uoft.me/mat137 MAT137 Calculus! Lecture 45 Today: Taylor Polynomials Taylor Series Next: Taylor Series Power Series Definition (Power Series) A power series is a series of the form

More information

Sample Questions, Exam 1 Math 244 Spring 2007

Sample Questions, Exam 1 Math 244 Spring 2007 Sample Questions, Exam Math 244 Spring 2007 Remember, on the exam you may use a calculator, but NOT one that can perform symbolic manipulation (remembering derivative and integral formulas are a part of

More information

POWER SERIES REVIEW SOLUTIONS

POWER SERIES REVIEW SOLUTIONS POWER SERIES REVIEW SOLUTIONS 1. Convergence of power series: For the following, find the radius of convergence: a) (m + 1)mx m In CME 10, we only teach you the ratio test, so that is the only test you

More information

Solution Guide for Chapter 10

Solution Guide for Chapter 10 Solution Guide for Chapter 10 Here are the solutions for the Doing the Math exercises in Kiss My Math! DTM from p.133-4 2. 8 7 + 3 =? So, let s distribute the to each term inside the parentheses. In order

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

Module Two: Differential Calculus(continued) synopsis of results and problems (student copy)

Module Two: Differential Calculus(continued) synopsis of results and problems (student copy) Module Two: Differential Calculus(continued) synopsis of results and problems (student copy) Srikanth K S 1 Syllabus Taylor s and Maclaurin s theorems for function of one variable(statement only)- problems.

More information

Northwest High School s Algebra 1

Northwest High School s Algebra 1 Northwest High School s Algebra 1 Summer Review Packet 2011 DUE WEDNESDAY, SEPTEMBER 2, 2011 Student Name This packet has been designed to help you review various mathematical topics that will be necessary

More information

University of Connecticut Department of Mathematics

University of Connecticut Department of Mathematics University of Connecticut Department of Mathematics Math 1131 Sample Exam 1 Fall 2013 Name: This sample exam is just a guide to prepare for the actual exam. Questions on the actual exam may or may not

More information

1 Antiderivatives graphically and numerically

1 Antiderivatives graphically and numerically Math B - Calculus by Hughes-Hallett, et al. Chapter 6 - Constructing antiderivatives Prepared by Jason Gaddis Antiderivatives graphically and numerically Definition.. The antiderivative of a function f

More information

171, Calculus 1. Summer 1, CRN 50248, Section 001. Time: MTWR, 6:30 p.m. 8:30 p.m. Room: BR-43. CRN 50248, Section 002

171, Calculus 1. Summer 1, CRN 50248, Section 001. Time: MTWR, 6:30 p.m. 8:30 p.m. Room: BR-43. CRN 50248, Section 002 171, Calculus 1 Summer 1, 018 CRN 5048, Section 001 Time: MTWR, 6:0 p.m. 8:0 p.m. Room: BR-4 CRN 5048, Section 00 Time: MTWR, 11:0 a.m. 1:0 p.m. Room: BR-4 CONTENTS Syllabus Reviews for tests 1 Review

More information

Final exam (practice) UCLA: Math 31B, Spring 2017

Final exam (practice) UCLA: Math 31B, Spring 2017 Instructor: Noah White Date: Final exam (practice) UCLA: Math 31B, Spring 2017 This exam has 8 questions, for a total of 80 points. Please print your working and answers neatly. Write your solutions in

More information

MATH 1231 MATHEMATICS 1B Calculus Section 4.4: Taylor & Power series.

MATH 1231 MATHEMATICS 1B Calculus Section 4.4: Taylor & Power series. MATH 1231 MATHEMATICS 1B 2010. For use in Dr Chris Tisdell s lectures. Calculus Section 4.4: Taylor & Power series. 1. What is a Taylor series? 2. Convergence of Taylor series 3. Common Maclaurin series

More information

Chemical Engineering 436 Laplace Transforms (1)

Chemical Engineering 436 Laplace Transforms (1) Chemical Engineering 436 Laplace Transforms () Why Laplace Transforms?? ) Converts differential equations to algebraic equations- facilitates combination of multiple components in a system to get the total

More information

Classroom Activity to Make Fraction Strips

Classroom Activity to Make Fraction Strips Classroom Activity to Make Fraction Strips This resource provides instructions on teaching your students how to make fraction strips out of paper. Fraction strips made from copy paper are an excellent

More information

Review of Power Series

Review of Power Series Review of Power Series MATH 365 Ordinary Differential Equations J. Robert Buchanan Department of Mathematics Fall 2018 Introduction In addition to the techniques we have studied so far, we may use power

More information

University of Connecticut Department of Mathematics

University of Connecticut Department of Mathematics University of Connecticut Department of Mathematics Math 1131 Sample Exam 2 Fall 2015 Name: Instructor Name: Section: TA Name: Discussion Section: This sample exam is just a guide to prepare for the actual

More information

1-D Convection-Diffusion Lab

1-D Convection-Diffusion Lab Computational Fluid Dynamics -D Convection-Diffusion Lab The lab. uses scientificworkplace symbolic calculus and maths editor software (SWP) This file Concevtion-Diffusion-Lab is available from Blackboard

More information

June Dear prospective Pre-Calculus student,

June Dear prospective Pre-Calculus student, Dear prospective Pre-Calculus student, June 017 We are pleased that you have decided to take Pre-Calculus next year. Pre-Calculus is a challenging class that requires that you have mastered the concepts

More information

Experiment 4 Free Fall

Experiment 4 Free Fall PHY9 Experiment 4: Free Fall 8/0/007 Page Experiment 4 Free Fall Suggested Reading for this Lab Bauer&Westfall Ch (as needed) Taylor, Section.6, and standard deviation rule ( t < ) rule in the uncertainty

More information

Unit 3 Day 13 Review 1

Unit 3 Day 13 Review 1 Unit 3 Day 13 Review 1 Warm-up! Graph the following functions, with at least 4 points. Find the domain and range. Then, tell how they are changed from their parent graph. (Hint: Remember that the order

More information

Dynamical Systems. August 13, 2013

Dynamical Systems. August 13, 2013 Dynamical Systems Joshua Wilde, revised by Isabel Tecu, Takeshi Suzuki and María José Boccardi August 13, 2013 Dynamical Systems are systems, described by one or more equations, that evolve over time.

More information

Worksheet 9. Math 1B, GSI: Andrew Hanlon. 1 Ce 3t 1/3 1 = Ce 3t. 4 Ce 3t 1/ =

Worksheet 9. Math 1B, GSI: Andrew Hanlon. 1 Ce 3t 1/3 1 = Ce 3t. 4 Ce 3t 1/ = Worksheet 9 Math B, GSI: Andrew Hanlon. Show that for each of the following pairs of differential equations and functions that the function is a solution of a differential equation. (a) y 2 y + y 2 ; Ce

More information

Separable Differential Equations

Separable Differential Equations Separable Differential Equations MATH 6 Calculus I J. Robert Buchanan Department of Mathematics Fall 207 Background We have previously solved differential equations of the forms: y (t) = k y(t) (exponential

More information

MA 510 ASSIGNMENT SHEET Spring 2009 Text: Vector Calculus, J. Marsden and A. Tromba, fifth edition

MA 510 ASSIGNMENT SHEET Spring 2009 Text: Vector Calculus, J. Marsden and A. Tromba, fifth edition MA 510 ASSIGNMENT SHEET Spring 2009 Text: Vector Calculus, J. Marsden and A. Tromba, fifth edition This sheet will be updated as the semester proceeds, and I expect to give several quizzes/exams. the calculus

More information

Solutions to Second Midterm(pineapple)

Solutions to Second Midterm(pineapple) Math 125 Solutions to Second Midterm(pineapple) 1. Compute each of the derivatives below as indicated. 4 points (a) f(x) = 3x 8 5x 4 + 4x e 3. Solution: f (x) = 24x 7 20x + 4. Don t forget that e 3 is

More information

Northwest High School s Geometry

Northwest High School s Geometry Northwest High School s Geometry Summer Math Packet (For 2013-2014) DUE THE FIRST DAY OF SCHOOL Student Name: - 1 - This packet has been designed to help you review various mathematical topics that will

More information

Lecture 19: Solving linear ODEs + separable techniques for nonlinear ODE s

Lecture 19: Solving linear ODEs + separable techniques for nonlinear ODE s Lecture 19: Solving linear ODEs + separable techniques for nonlinear ODE s Geoffrey Cowles Department of Fisheries Oceanography School for Marine Science and Technology University of Massachusetts-Dartmouth

More information

Practice problems from old exams for math 132 William H. Meeks III

Practice problems from old exams for math 132 William H. Meeks III Practice problems from old exams for math 32 William H. Meeks III Disclaimer: Your instructor covers far more materials that we can possibly fit into a four/five questions exams. These practice tests are

More information

Section 2.4: Add and Subtract Rational Expressions

Section 2.4: Add and Subtract Rational Expressions CHAPTER Section.: Add and Subtract Rational Expressions Section.: Add and Subtract Rational Expressions Objective: Add and subtract rational expressions with like and different denominators. You will recall

More information

2tdt 1 y = t2 + C y = which implies C = 1 and the solution is y = 1

2tdt 1 y = t2 + C y = which implies C = 1 and the solution is y = 1 Lectures - Week 11 General First Order ODEs & Numerical Methods for IVPs In general, nonlinear problems are much more difficult to solve than linear ones. Unfortunately many phenomena exhibit nonlinear

More information

MAT137 Calculus! Lecture 48

MAT137 Calculus! Lecture 48 official website http://uoft.me/mat137 MAT137 Calculus! Lecture 48 Today: Taylor Series Applications Next: Final Exams Important Taylor Series and their Radii of Convergence 1 1 x = e x = n=0 n=0 x n n!

More information

Note-Taking Guides. How to use these documents for success

Note-Taking Guides. How to use these documents for success 1 Note-Taking Guides How to use these documents for success Print all the pages for the module. Open the first lesson on the computer. Fill in the guide as you read. Do the practice problems on notebook

More information

Integrals. D. DeTurck. January 1, University of Pennsylvania. D. DeTurck Math A: Integrals 1 / 61

Integrals. D. DeTurck. January 1, University of Pennsylvania. D. DeTurck Math A: Integrals 1 / 61 Integrals D. DeTurck University of Pennsylvania January 1, 2018 D. DeTurck Math 104 002 2018A: Integrals 1 / 61 Integrals Start with dx this means a little bit of x or a little change in x If we add up

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

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

Prelim 2 Math Please show your reasoning and all your work. This is a 90 minute exam. Calculators are not needed or permitted. Good luck!

Prelim 2 Math Please show your reasoning and all your work. This is a 90 minute exam. Calculators are not needed or permitted. Good luck! April 4, Prelim Math Please show your reasoning and all your work. This is a 9 minute exam. Calculators are not needed or permitted. Good luck! Trigonometric Formulas sin x sin x cos x cos (u + v) cos

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

WebAssign Lesson 6-3 Taylor Series (Homework)

WebAssign Lesson 6-3 Taylor Series (Homework) WebAssign Lesson 6-3 Taylor Series (Homework) Current Score : / 56 Due : Tuesday, August 5 204 0:59 AM MDT Jaimos Skriletz Math 75, section 3, Summer 2 204 Instructor: Jaimos Skriletz. /4 points Consider

More information

Math 230 Mock Final Exam Detailed Solution

Math 230 Mock Final Exam Detailed Solution Name: Math 30 Mock Final Exam Detailed Solution Disclaimer: This mock exam is for practice purposes only. No graphing calulators TI-89 is allowed on this test. Be sure that all of your work is shown and

More information

c n (x a) n c 0 c 1 (x a) c 2 (x a) 2...

c n (x a) n c 0 c 1 (x a) c 2 (x a) 2... 3 CHAPTER 6 SERIES SOLUTIONS OF LINEAR EQUATIONS 6. REVIEW OF POWER SERIES REVIEW MATERIAL Infinite series of constants, p-series, harmonic series, alternating harmonic series, geometric series, tests

More information

To factor an expression means to write it as a product of factors instead of a sum of terms. The expression 3x

To factor an expression means to write it as a product of factors instead of a sum of terms. The expression 3x Factoring trinomials In general, we are factoring ax + bx + c where a, b, and c are real numbers. To factor an expression means to write it as a product of factors instead of a sum of terms. The expression

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

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

Worksheet Week 7 Section

Worksheet Week 7 Section Worksheet Week 7 Section 8.. 8.4. This worksheet is for improvement of your mathematical writing skill. Writing using correct mathematical epression and steps is really important part of doing math. Please

More information

2015 Math Camp Calculus Exam Solution

2015 Math Camp Calculus Exam Solution 015 Math Camp Calculus Exam Solution Problem 1: x = x x +5 4+5 = 9 = 3 1. lim We also accepted ±3, even though it is not according to the prevailing convention 1. x x 4 x+4 =. lim 4 4+4 = 4 0 = 4 0 = We

More information

REVIEW OF DIFFERENTIAL CALCULUS

REVIEW OF DIFFERENTIAL CALCULUS REVIEW OF DIFFERENTIAL CALCULUS DONU ARAPURA 1. Limits and continuity To simplify the statements, we will often stick to two variables, but everything holds with any number of variables. Let f(x, y) be

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

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

1. (4 % each, total 20 %) Answer each of the following. (No need to show your work for this problem). 3 n. n!? n=1

1. (4 % each, total 20 %) Answer each of the following. (No need to show your work for this problem). 3 n. n!? n=1 NAME: EXAM 4 - Math 56 SOlutions Instruction: Circle your answers and show all your work CLEARLY Partial credit will be given only when you present what belongs to part of a correct solution (4 % each,

More information

Practice Midterm Solutions

Practice Midterm Solutions Practice Midterm Solutions Math 4B: Ordinary Differential Equations Winter 20 University of California, Santa Barbara TA: Victoria Kala DO NOT LOOK AT THESE SOLUTIONS UNTIL YOU HAVE ATTEMPTED EVERY PROBLEM

More information

More Techniques. for Solving First Order ODE'S. and. a Classification Scheme for Techniques

More Techniques. for Solving First Order ODE'S. and. a Classification Scheme for Techniques A SERIES OF CLASS NOTES FOR 2005-2006 TO INTRODUCE LINEAR AND NONLINEAR PROBLEMS TO ENGINEERS, SCIENTISTS, AND APPLIED MATHEMATICIANS DE CLASS NOTES 1 A COLLECTION OF HANDOUTS ON FIRST ORDER ORDINARY DIFFERENTIAL

More information

Final exam (practice) UCLA: Math 31B, Spring 2017

Final exam (practice) UCLA: Math 31B, Spring 2017 Instructor: Noah White Date: Final exam (practice) UCLA: Math 3B, Spring 207 This exam has 8 questions, for a total of 80 points. Please print your working and answers neatly. Write your solutions in the

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

Calculus I Review Solutions

Calculus I Review Solutions Calculus I Review Solutions. Compare and contrast the three Value Theorems of the course. When you would typically use each. The three value theorems are the Intermediate, Mean and Extreme value theorems.

More information

1. Pace yourself. Make sure you write something on every problem to get partial credit. 2. If you need more space, use the back of the previous page.

1. Pace yourself. Make sure you write something on every problem to get partial credit. 2. If you need more space, use the back of the previous page. ***THIS TIME I DECIDED TO WRITE A LOT OF EXTRA PROBLEMS TO GIVE MORE PRACTICE. The actual midterm will have about 6 problems. If you want to practice something with approximately the same length as the

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

Mathematics with Maple

Mathematics with Maple Mathematics with Maple A Comprehensive E-Book Harald Pleym Preface The main objective of these Maple worksheets, organized for use with all Maple versions from Maple 14, is to show how the computer algebra

More information

Chapter 5: Integrals

Chapter 5: Integrals Chapter 5: Integrals Section 5.3 The Fundamental Theorem of Calculus Sec. 5.3: The Fundamental Theorem of Calculus Fundamental Theorem of Calculus: Sec. 5.3: The Fundamental Theorem of Calculus Fundamental

More information

Exam 3 MATH Calculus I

Exam 3 MATH Calculus I Trinity College December 03, 2015 MATH 131-01 Calculus I By signing below, you attest that you have neither given nor received help of any kind on this exam. Signature: Printed Name: Instructions: Show

More information

Math Exam III - Spring

Math Exam III - Spring Math 3 - Exam III - Spring 8 This exam contains 5 multiple choice questions and hand graded questions. The multiple choice questions are worth 5 points each and the hand graded questions are worth a total

More information

Mathematics for Health and Physical Sciences

Mathematics for Health and Physical Sciences 1 Mathematics for Health and Physical Sciences Collection edited by: Wendy Lightheart Content authors: Wendy Lightheart, OpenStax, Wade Ellis, Denny Burzynski, Jan Clayton, and John Redden Online:

More information

Math 1552: Integral Calculus Final Exam Study Guide, Spring 2018

Math 1552: Integral Calculus Final Exam Study Guide, Spring 2018 Math 55: Integral Calculus Final Exam Study Guide, Spring 08 PART : Concept Review (Note: concepts may be tested on the exam in the form of true/false or short-answer questions.). Complete each statement

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