Problem Set 1 October 30, 2017

Size: px
Start display at page:

Download "Problem Set 1 October 30, 2017"

Transcription

1 1. e π can be calculated from e x = x n. But that s not a good approximation method. The n! reason is that π is not small compared to 1. If you want O(0.1) accuracy, then the last term you need to include must satisfy xn < 0.1 (why?). What is the minimum n required to achieve this n! accuracy? A better approach is to expand e 3+x near x = 0. However, you will need to know e How many terms do you need to get O(0.1) accuracy now? Solution. The Taylor expansion of e x can be truncated at order N with an error of order N + 1 e x = N x n n! + O(xN+1 ) (1) where the leading term in O(x N+1 x ) is N+1. if we want the accuracy of the truncated (N+1)! Taylor expansion to be of the order 0.1 (i.e. error be of order less than O(0.1)), we should have x N (N)! < 0.1. In our case, this translates into finding N s.t. π N N! < 0.1. () Since π 3, we can see that the first term satisfying eq. is corresponding to N = 9 ( π 0.3! but π9 0.0). 9! However, if we expand e π as e x+3, we ll get [ N ] [ e π = e 3 x n N ] n! + x n O(xN+1 ) 0.1 n! + O(xN+1 ). (3) So, we need (0.1 xn ) < 0.1 where x You will see that in this case only 4 terms N! (N = 0,, 3) is sufficient to reach the desired accuracy since ( ) The first few terms of e x = 1 x + x + usually provide pretty good approximations. So what s wrong with ] e x = [x x + x3 + = (4) Solution. 0 This should be clear even with your high school knowledge! The first thing to notice is that this expansion is designed to work for x 1 and it is definitely not a good idea to use it in order to calculate the value of the function as x (especially when we are truncating the expansion after the third term). Another way of looking at it is that in eq. 4 we are adding and subtracting infinities which is vague and cannot be manipulated in the form written here. 1 0

2 3. For each of the following functions find the maximum n Z such that f(x) = O(x n ) as x 0. (In some cases no such n exists, and when it does f(x) = Θ(x n ) may be false.) (i) f(x) = e x Solution. Whenever a function has a Taylor expansion, f(x) is of the same order as the first term appearing in the expansion. In the case of e x we have e x = O(1) and n = 0. (ii) f(x) = sin(x) x e x = Solution. The Taylor expansion of sin(x) can be written as sin(x) = x n n! = 1 + x + x +. (5) ( 1) n x n+1 (n + 1)! = x x3 + x5 5! +. (6) Using eq. 6, the first term appearing in the Taylor expansion of f(x) = sin(x) x will be x 3. Therefore, sin(x) x = O(x3 ) and n = 3. (iii) f(x) = log(x) Solution. As x 0, log(x) slower than any negative power of x, i.e. log(x) = o(x 1 ) = O(x 1 ) and n = 1. (iv) f(x) = x p log(x) lim x 0 log(x) x 1 = lim x 0 xlog(x) = 0. (7) Solution. As is stated in eq. 7, lim x 0 xlog(x) = 0. Therefore, lim x 0 x p log(x)/x (p 1) = 0, and n = p 1. (v) f(x) = (1 cos(x))/tan 1 (x) Solution. (1 cos(x))/tan 1 (x) has a Taylor expansion of the form Then, it is obvious from eq. that n = 1. (vi) f(x) = e 1/x 1 cos(x) tan 1 (x) = x + x3 41x O(x7 ). ()

3 Solution. lim x 0 e 1 x 1 = 0 for all n Z n Z ; e x xn = o(x n ). (9) n Z s.t. e 1 x = Θ(x n ). (vii) f(x) = x Solution. the maximum n is 0. x lim = 0 for n 0. (10) x 0 xn (viii) f(x) = x x = e x log x Solution. As we have already seen in eq. 7 lim x log x = 0. x 0 So, we have Using eq. 11, we see that Therefore, maximum n = 0. lim x 0 lim x 0 xx = 1. (11) x x = 0 for all n 0. (1) xn (ix) f(x) = 1 x ( 1 x 1)( 1 x ) ( 1 x 1 x + 1) Solution. For simplicity let us only work with values of x = 1/N for N N; then, f(x) = N! and the limit x 0 is equivalent to the limit N. Using Stirling s formula for N!, we have lim ln N! = N ln N N. N But, as N gets bigger and bigger we can even ignore the second term. So Using eq. 13, we can see that no such n Z exists s.t. lim ln N! N ln N N! N N. (13) N N N lim N N <. n 4. Find the first four coefficients a 0,1,,3 of the Taylor expansion sin 1 (x) = a nx n by plugging it in sin(sin 1 x) = x and using the Taylor series of sin x. Repeat the calculation starting from sin 1 (sin x) = x. 3

4 Solution. sin x has a Taylor expansion of the form sin x = ( 1) n x(n+1) (n + 1)! = x x3 + O(x5 ). (14) Therefore, assuming that sin 1 x has a Taylor expansion of the form a nx n and only keeping terms up to order 3, we get x = (a 0 + a 1 x + a x + a 3 x 3 ) 1 (a 0 + a 1 x + a x + a 3 x 3 ) 3 = (a 0 a3 0 ) + (a 1 3a 0a 1 )x So, we have +(a 3a 0a 1 a 0 a3 0 = a 0 (1 a 0 ) = 0, a 1 1 a 0a 1 = 1, a 1a 0a 1 1 a 0a = 0, a 3 1 a3 1 1 a 0a 3 = 0. 3a 0a )x + (a 3 a3 1 3a 0a 3 a 0 = 0, ±() 1, a 1 = (1 a 0 ) 1, a = 1 a 0a 3 1, a 3 = 1 a4 1. ) + O(x 4 ). It seems that we are in trouble! depending on the a 0 that we choose from the three possible options, we will get different Taylor expansions for sin 1 x. What comes to our rescue, as always, is the initial value; we want sin 1 (0) = 0, so we should choose a 0 = 0. Therefore (15) (16) sin 1 x = x + x3 + O(x4 ). (17) 5. Find the first three coefficients a 0,1, of the Taylor expansion log(1+x) = a nx n by plugging it in exp(log(1 + x)) = 1 + x and using the Taylor series of e x. Repeat the calculation starting from log(e x ) = x. Solution. We will proceed in the same manner as we did in the problem (a 0 + a 1 x + a x ) + (a 0 + a 1 x + a x ) + = 1 + x (a a 0) + (a 1 + a 0 a 1 )x a 0 = 0,, a 1 = (1 + a 0 ) 1, a = 1 a3 1. +(a + 1 a 1 + a 0 a )x = x. Using the same reasoning as in problem 4, we demand a 0 to be equal to 0. Therefore (1) (19) log(1 + x) = x 1 x + O(x 3 ). (0) 6. Find the first three non-zero terms in the power series of the following expressions. Don t use Taylor s formula for the expansion coefficients; rather manipulate series you already know. 4

5 (i) sin x/(1 x) as x 0. Solution. Let us assume that sin x/(1 x) has a power series expansion of the form We also know that Using eq. 1 and eq., we get x x3 + x5 5! + O(x 7 ) (1 x) = sin x = sin x (1 x) = a n x n. (1) ( 1) m x(m+1) (m + 1)!. () m=0 a n x n x x3 + x5 5! + O(x7 ) = a n x n a n x n+1. (3) eq. 3 can be solved for a n s by comparing the coefficients of x n s order by order x x3 + O(x5 ) = a 0 + (a 1 a 0 )x + (a a 1 )x + (a 3 a )x 3 + O(x 4 ) a 0 = 0, a 1 = 1, a = 1, a 3 = 5 6,. (4) Therefore sin x (1 x) = x + x x3 + O(x 4 ). (5) (ii) sin x/(1 x) as x π/. Solution. Let us introduce y x π/. sin x/(1 x) can be written is terms of y as sin( π + y) [1 ( π + y)] = cos y (1 π) y = a n y n. (6) Then, substituting the power series expansion of cos x in eq. 6, we get 1 + y! + y4 4! + O(y6 ) = (1 π )a 0 + (a n+1 (1 π )a n)y n+1. (7) a 0 = (1 π ) 1, a 1 = 1, a = (1 π ),. sin x (1 x) = (1 π ) 1 + (x π ) + (1 π )(x π ) + O(x 3 ). () 5

6 (iii) (x + 1)/(x 1) as x 1. Solution. We will proceed as we did in the previous part: we introduce y x + 1 and write (x + 1)/(x 1) in terms of y y y = a n y n y = a 0 + (a n a n+1 )y n+1. (9) a 0 = 0, a 1 = 1, a = 1, 4 a 3 = 1,. a n = n,. (x + 1) (x 1) = (x + 1) (x + 1) 4 (x + 1)3 (x + 1)n n. (30) (iv) e x log( + x/) as x 0. Solution. we start with rewriting e x log( + x/) as e x log( + x ) = ex log[(1 + x 4 )] = ex [log + log(1 + x )]. (31) 4 Plugging the standard Taylor expansions of exponential and logarithm functions into eq. 31, we get the final answer e x log( + x x ) = log (1 + x + + O(x3 )) + (1 + x + x + O(x3 ))( x 4 + x 16 + O(x3 )) = log + (log + 1 )x + (log )x + O(x 3 ). (3) 7. Visualize the solution to the equation x = ɛe x by plotting the intersection between the line y = x/ɛ and the curve y = e x. Now solve it perturbatively by writing x = a nɛ n and equating powers of ɛ on both sides. Find a 0,1,. Show that dx/dɛ > 0, so that as you increase ɛ the location of x moves to the right. Does this agree with what you have on your plot? Solution. Figure 1 Shows the intersection of the line y = x/ɛ and the curve y = e x for three different values of ɛ. In order to solve x = ɛe x perturbatively, we write x = a nɛ n and equating powers of ɛ on both sides a 0 + a 1 ɛ + a ɛ + O(ɛ 3 ) = ɛ[1 (a 0 + a 1 ɛ + a ɛ + O(ɛ 3 )) + (a 0 + a 1 ɛ + a ɛ + O(ɛ 3 )) + ]. (33) 6

7 Figure 1: We can visualize the solution to the equation x = ɛe x by plotting the intersection between the line y = x/ɛ and the curve y = e x. The red curve represents y = e x and the green, orange, and blue lines represent y = x/ɛ for ɛ = 0.01, 0.1, 1 respectively. As it is clear in this figure, as ɛ gets bigger the location of intersection (i.e. the solution to the equation) moves further to the right (x gets bigger). keeping only terms up to order of ɛ, we get a 0 + a 1 ɛ + a ɛ + O(ɛ 3 ) = (1 a a 0)ɛ + (a 1 a 0 a 1 )ɛ + O(ɛ 3 ). (34) a 0 = 0, a 1 = 1, a = 1. Also, note that taking derivative of equation 35 w.r.t. ɛ we get x = ɛ ɛ + O(ɛ 3 ). (35) d dɛ x = 1 ɛ + O(ɛ ), (36) for ɛ small enough so that keeping only two terms makes sense, we can see that this derivative is positive which is exactly the behaviour we saw in Fig. 1.. The equation of motion of a pendulum of length l is θ(t) + ω sin θ(t) = θ, where ω = g/l. For small oscillations, and with initial conditions θ(0) = θ 0, θ(0) = 0, this has solution θ(t) = θ 0 cos ωt, because sin θ θ. (i) Now we want to solve the original equation perturbatively. parameter of the problem? Plug What is the small expansion θ(t) = θ 0 cos ωt + T (t)θ 0 + T 3 (t)θ O(θ 4 0). (37) into the equation and obtain T,3 (t). Be careful about the initial conditions; we want θ(0) = θ 0 and θ(0) = 0 to still hold. 7

8 Solution. By now you should know the procedure! We start with Taylor expanding sin θ and then plug in eq. 37 d dt (θ 0 cos ωt + T (t)θ 0 + T 3 (t)θ O(θ 4 0)) + ω [(θ 0 cos ωt + T (t)θ 0 + T 3 (t)θ O(θ 4 0)) 1 (θ 0 cos ωt + T (t)θ 0 + T 3 (t)θ O(θ 4 0)) 3 ] = 0. (3) We need only to keep terms up to order θ 3 0 and also we know that the differential equation for the first order in θ 0 is already solved by design. So { [ T (t) + ω T (t)]θ0 = 0, [ T 3 (t) + ω T 3 (t) ω cos 3 ωt]θ 3 0 = 0. { T (t) + ω T (t) = 0, T 3 (t) + ω T 3 (t) ω cos 3 ωt = 0. (39) Solving the differential equation for T (t) is easy; we already know that T will be of the form T (t) = c 1 cos ωt + c sin ωt. (40) In order to solve the differential equation for T 3 (t) we note that the final solution will be the sum of complementary solution (the solution of the homogeneous part i.e. T3 (t)+ω T 3 (t) = 0) and the particular solution. The complementary solution is just the same as the solution of T (t) i.e. T 3 (t) = c 31 cos ωt + c 3 sin ωt + particular solution. (41) In order to solve for the particular solution, we first simplify the equation using trigonometric identities and then solve the differential equation with the method of undetermined coefficients T 3 (t) + ω T 3 (t) = ω ω cos ωt + cos 3ωt. (4) 4 Then, the particular solution will be the sum of two particular solutions of { T3 (t) + ω T 3 (t) = ω cos ωt, T 3 (t) + ω T 3 (t) = ω cos 3ωt. (43) 4 The particular solution of T 3 (t) + ω T 3 (t) = ω cos ωt is of the form (T 3 ) p1 = t(b 1 cos ωt + b sin ωt), (44) where (b 1 cos ωt + b sin ωt) was multiplied by t to account for cos ωt in the complementary solution. The particular solution to T 3 (t) + ω T 3 (t) = ω cos 3ωt is of the form 4 Adding eq. 44 and eq. 45, we get (T 3 ) p = b 3 cos 3ωt + b 4 sin 3ωt. (45) (T 3 ) p = b 1 t cos ωt + b t sin ωt + b 3 cos 3ωt + b 4 sin 3ωt. (46)

9 Taking the second derivative and plugging it in the original equation we can calculate the coefficients b 1,,3,4. T 3 (t) = c 31 cos ωt + c 3 sin ωt + ωt 1 sin ωt cos 3ωt. (47) Combining eq. 37, eq. 40, and eq. 47, we get θ(t) = θ 0 cos ωt + [c 1 cos ωt + c sin ωt] θ0 [ + c 31 cos ωt + c 3 sin ωt + ωt ] 1 sin ωt cos 3ωt θ0 3 + O(θ ). (4) Imposing the initial conditions θ(0) = θ 0 and θ(0) = 0, we get the final answer θ(t) = θ 0 cos ωt + [ ] 1 ωt 1 cos ωt + sin ωt cos 3ωt θ0 3 + O(θ ). (49) (ii) As time t increases, the correction you found grows, until it becomes greater than the leading term θ 0 cos ωt. This is where our approximation breaks down and we have to include higher order terms. At what time does this happen? Solution. In order to find the time that this approximation breaks down we have to find the time that correction term gets bigger than the leading term. Therefore, we should find the time t c for which the amplitude of the term θ3 0 ωt 16 sin ωt gets big enough to be equal to θ 0 (we don t care about the two other terms because they are just oscillating and their amplitude does not change with time) θ 3 0ωt c 16 = θ 0 t c = 16 θ 0ω. (50) 10. Solve θ(t) + ω sin θ(t) = 0 iteratively. To do so, write the equation as θ(t) + ω θ(t) = ω [θ(t) sin θ(t)]. This way, all linear terms are on the left and all non-linear terms are on the right (similar to x = f(x) that we solved in the class). Then plug θ 1 (t) = θ 0 cos ωt as your first guess in the right hand side and compute θ (t) from θ (t) + ω θ (t) = ω [θ 1 (t) sin θ 1 (t)].keep only terms that are at most O(θ 3 0) and compare with the result of problem. Solution. We will Taylor expand sin θ and will only keep terms up to order θ 3 0 θ (t) + ω θ (t) = ω [θ 1 (t) θ 1 (t) + 1 θ3 1 + O(θ0)] 5 θ (t) + ω θ (t) = θ3 0ω cos 3 ωt. (51) Which is exactly the differential equation we solved for T 3 (t) in problem (remember that T (t) vanished when we imposed the initial conditions). these two methods lead to the same answer. 9

Homework 1 Solutions Math 587

Homework 1 Solutions Math 587 Homework 1 Solutions Math 587 1) Find positive functions f(x),g(x), continuous on (0, ) so that f = O(g(x)) as x 0, but lim x 0 f(x)/g(x) does not exist. One can take f(x) = sin(1/x) and g(x) = 1, for

More information

1 + lim. n n+1. f(x) = x + 1, x 1. and we check that f is increasing, instead. Using the quotient rule, we easily find that. 1 (x + 1) 1 x (x + 1) 2 =

1 + lim. n n+1. f(x) = x + 1, x 1. and we check that f is increasing, instead. Using the quotient rule, we easily find that. 1 (x + 1) 1 x (x + 1) 2 = Chapter 5 Sequences and series 5. Sequences Definition 5. (Sequence). A sequence is a function which is defined on the set N of natural numbers. Since such a function is uniquely determined by its values

More information

Answers to Problem Set Number MIT (Fall 2005).

Answers to Problem Set Number MIT (Fall 2005). Answers to Problem Set Number 6. 18.305 MIT (Fall 2005). D. Margetis and R. Rosales (MIT, Math. Dept., Cambridge, MA 02139). December 12, 2005. Course TA: Nikos Savva, MIT, Dept. of Mathematics, Cambridge,

More information

Problem 1 Kaplan, p. 436: 2c,i

Problem 1 Kaplan, p. 436: 2c,i Mathematical Methods I - Fall 03 Homework Solutions Page Problem Kaplan, p 36: c,i Find the first three nonzero terms of the following Taylor series: c) ln + x) about x = 0 i) arctanh x about x = 0 The

More information

Physics 250 Green s functions for ordinary differential equations

Physics 250 Green s functions for ordinary differential equations Physics 25 Green s functions for ordinary differential equations Peter Young November 25, 27 Homogeneous Equations We have already discussed second order linear homogeneous differential equations, which

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

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

Section 5.8. Taylor Series

Section 5.8. Taylor Series Difference Equations to Differential Equations Section 5.8 Taylor Series In this section we will put together much of the work of Sections 5.-5.7 in the context of a discussion of Taylor series. We begin

More information

Math221: HW# 7 solutions

Math221: HW# 7 solutions Math22: HW# 7 solutions Andy Royston November 7, 25.3.3 let x = e u. Then ln x = u, x2 = e 2u, and dx = e 2u du. Furthermore, when x =, u, and when x =, u =. Hence x 2 ln x) 3 dx = e 2u u 3 e u du) = e

More information

Infinite series, improper integrals, and Taylor series

Infinite series, improper integrals, and Taylor series Chapter 2 Infinite series, improper integrals, and Taylor series 2. Introduction to series In studying calculus, we have explored a variety of functions. Among the most basic are polynomials, i.e. functions

More information

SET 1. (1) Solve for x: (a) e 2x = 5 3x

SET 1. (1) Solve for x: (a) e 2x = 5 3x () Solve for x: (a) e x = 5 3x SET We take natural log on both sides: ln(e x ) = ln(5 3x ) x = 3 x ln(5) Now we take log base on both sides: log ( x ) = log (3 x ln 5) x = log (3 x ) + log (ln(5)) x x

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

Solution of Algebric & Transcendental Equations

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

More information

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

Mathematics 104 Fall Term 2006 Solutions to Final Exam. sin(ln t) dt = e x sin(x) dx.

Mathematics 104 Fall Term 2006 Solutions to Final Exam. sin(ln t) dt = e x sin(x) dx. Mathematics 14 Fall Term 26 Solutions to Final Exam 1. Evaluate sin(ln t) dt. Solution. We first make the substitution t = e x, for which dt = e x. This gives sin(ln t) dt = e x sin(x). To evaluate the

More information

Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued)

Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued) Tangent Lines Sec. 2.1, 2.7, & 2.8 (continued) Prove this Result How Can a Derivative Not Exist? Remember that the derivative at a point (or slope of a tangent line) is a LIMIT, so it doesn t exist whenever

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

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

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Infinite

More information

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes

Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Sec 2.2: Infinite Limits / Vertical Asymptotes Sec 2.6: Limits At Infinity / Horizontal Asymptotes Infinite

More information

Asymptotic Expansions

Asymptotic Expansions Asymptotic Expansions V 1.5.4 217/1/3 Suppose we have a function f(x) of single real parameter x and we are interested in an approximation to f(x) for x close to x. The approximation might depend on whether

More information

Answers to Problem Set Number MIT (Fall 2005).

Answers to Problem Set Number MIT (Fall 2005). Answers to Problem Set Number 5. 18.305 MIT Fall 2005). D. Margetis and R. Rosales MIT, Math. Dept., Cambridge, MA 02139). November 23, 2005. Course TA: Nikos Savva, MIT, Dept. of Mathematics, Cambridge,

More information

1 What is numerical analysis and scientific computing?

1 What is numerical analysis and scientific computing? Mathematical preliminaries 1 What is numerical analysis and scientific computing? Numerical analysis is the study of algorithms that use numerical approximation (as opposed to general symbolic manipulations)

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

5.9 Representations of Functions as a Power Series

5.9 Representations of Functions as a Power Series 5.9 Representations of Functions as a Power Series Example 5.58. The following geometric series x n + x + x 2 + x 3 + x 4 +... will converge when < x

More information

Differentiation ( , 9.5)

Differentiation ( , 9.5) Chapter 2 Differentiation (8.1 8.3, 9.5) 2.1 Rate of Change (8.2.1 5) Recall that the equation of a straight line can be written as y = mx + c, where m is the slope or graient of the line, an c is the

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 1910 Limits Numerically and Graphically Introduction to Limits does not exist DNE DOES does not Finding Limits Numerically

MATH 1910 Limits Numerically and Graphically Introduction to Limits does not exist DNE DOES does not Finding Limits Numerically MATH 90 - Limits Numerically and Graphically Introduction to Limits The concept of a limit is our doorway to calculus. This lecture will explain what the limit of a function is and how we can find such

More information

MATH141: Calculus II Exam #4 review solutions 7/20/2017 Page 1

MATH141: Calculus II Exam #4 review solutions 7/20/2017 Page 1 MATH4: Calculus II Exam #4 review solutions 7/0/07 Page. The limaçon r = + sin θ came up on Quiz. Find the area inside the loop of it. Solution. The loop is the section of the graph in between its two

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

MATH 31B: MIDTERM 2 REVIEW. sin 2 x = 1 cos(2x) dx = x 2 sin(2x) 4. + C = x 2. dx = x sin(2x) + C = x sin x cos x

MATH 31B: MIDTERM 2 REVIEW. sin 2 x = 1 cos(2x) dx = x 2 sin(2x) 4. + C = x 2. dx = x sin(2x) + C = x sin x cos x MATH 3B: MIDTERM REVIEW JOE HUGHES. Evaluate sin x and cos x. Solution: Recall the identities cos x = + cos(x) Using these formulas gives cos(x) sin x =. Trigonometric Integrals = x sin(x) sin x = cos(x)

More information

Constructing Taylor Series

Constructing Taylor Series Constructing Taylor Series 8-8-200 The Taylor series for fx at x = c is fc + f cx c + f c 2! x c 2 + f c x c 3 + = 3! f n c x c n. By convention, f 0 = f. When c = 0, the series is called a Maclaurin series.

More information

Lecture 10: Powers of Matrices, Difference Equations

Lecture 10: Powers of Matrices, Difference Equations Lecture 10: Powers of Matrices, Difference Equations Difference Equations A difference equation, also sometimes called a recurrence equation is an equation that defines a sequence recursively, i.e. each

More information

1.4 Techniques of Integration

1.4 Techniques of Integration .4 Techniques of Integration Recall the following strategy for evaluating definite integrals, which arose from the Fundamental Theorem of Calculus (see Section.3). To calculate b a f(x) dx. Find a function

More information

Mu Sequences and Series Topic Test Solutions FAMAT State Convention 2018

Mu Sequences and Series Topic Test Solutions FAMAT State Convention 2018 . E The first term of the sum has a division by 0 and therefore the entire expression is undefined.. C We can pair off the elements in the sum, 008 008 ( (k + ) + (k + )) = 3. D We can once again pair

More information

εx 2 + x 1 = 0. (2) Suppose we try a regular perturbation expansion on it. Setting ε = 0 gives x 1 = 0,

εx 2 + x 1 = 0. (2) Suppose we try a regular perturbation expansion on it. Setting ε = 0 gives x 1 = 0, 4 Rescaling In this section we ll look at one of the reasons that our ε = 0 system might not have enough solutions, and introduce a tool that is fundamental to all perturbation systems. We ll start with

More information

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions.

Partial Fractions. June 27, In this section, we will learn to integrate another class of functions: the rational functions. Partial Fractions June 7, 04 In this section, we will learn to integrate another class of functions: the rational functions. Definition. A rational function is a fraction of two polynomials. For example,

More information

Chapter 5: Integrals

Chapter 5: Integrals Chapter 5: Integrals Section 5.5 The Substitution Rule (u-substitution) Sec. 5.5: The Substitution Rule We know how to find the derivative of any combination of functions Sum rule Difference rule Constant

More information

(x 3)(x + 5) = (x 3)(x 1) = x + 5. sin 2 x e ax bx 1 = 1 2. lim

(x 3)(x + 5) = (x 3)(x 1) = x + 5. sin 2 x e ax bx 1 = 1 2. lim SMT Calculus Test Solutions February, x + x 5 Compute x x x + Answer: Solution: Note that x + x 5 x x + x )x + 5) = x )x ) = x + 5 x x + 5 Then x x = + 5 = Compute all real values of b such that, for fx)

More information

221A Lecture Notes Convergence of Perturbation Theory

221A Lecture Notes Convergence of Perturbation Theory A Lecture Notes Convergence of Perturbation Theory Asymptotic Series An asymptotic series in a parameter ɛ of a function is given in a power series f(ɛ) = f n ɛ n () n=0 where the series actually does

More information

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n.

Power Series. x n. Using the ratio test. n n + 1. x n+1 n 3. = lim x. lim n + 1. = 1 < x < 1. Then r = 1 and I = ( 1, 1) ( 1) n 1 x n. .8 Power Series. n x n x n n Using the ratio test. lim x n+ n n + lim x n n + so r and I (, ). By the ratio test. n Then r and I (, ). n x < ( ) n x n < x < n lim x n+ n (n + ) x n lim xn n (n + ) x

More information

and lim lim 6. The Squeeze Theorem

and lim lim 6. The Squeeze Theorem Limits (day 3) Things we ll go over today 1. Limits of the form 0 0 (continued) 2. Limits of piecewise functions 3. Limits involving absolute values 4. Limits of compositions of functions 5. Limits similar

More information

LIMITS AND DERIVATIVES

LIMITS AND DERIVATIVES 2 LIMITS AND DERIVATIVES LIMITS AND DERIVATIVES 2.2 The Limit of a Function In this section, we will learn: About limits in general and about numerical and graphical methods for computing them. THE LIMIT

More information

Math 112 Rahman. Week Taylor Series Suppose the function f has the following power series:

Math 112 Rahman. Week Taylor Series Suppose the function f has the following power series: Math Rahman Week 0.8-0.0 Taylor Series Suppose the function f has the following power series: fx) c 0 + c x a) + c x a) + c 3 x a) 3 + c n x a) n. ) Can we figure out what the coefficients are? Yes, yes

More information

Lecture 9: Taylor Series

Lecture 9: Taylor Series Math 8 Instructor: Padraic Bartlett Lecture 9: Taylor Series Week 9 Caltech 212 1 Taylor Polynomials and Series When we first introduced the idea of the derivative, one of the motivations we offered was

More information

MATH 23 Exam 2 Review Solutions

MATH 23 Exam 2 Review Solutions MATH 23 Exam 2 Review Solutions Problem 1. Use the method of reduction of order to find a second solution of the given differential equation x 2 y (x 0.1875)y = 0, x > 0, y 1 (x) = x 1/4 e 2 x Solution

More information

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2

Math 181, Exam 2, Study Guide 2 Problem 1 Solution. 1 + dx. 1 + (cos x)2 dx. 1 + cos2 xdx. = π ( 1 + cos π 2 Math 8, Exam, Study Guide Problem Solution. Use the trapezoid rule with n to estimate the arc-length of the curve y sin x between x and x π. Solution: The arclength is: L b a π π + ( ) dy + (cos x) + cos

More information

Geometric Series and the Ratio and Root Test

Geometric Series and the Ratio and Root Test Geometric Series and the Ratio and Root Test James K. Peterson Department of Biological Sciences and Department of Mathematical Sciences Clemson University September 5, 2018 Outline 1 Geometric Series

More information

Infinite series, improper integrals, and Taylor series

Infinite series, improper integrals, and Taylor series Chapter Infinite series, improper integrals, and Taylor series. Determine which of the following sequences converge or diverge (a) {e n } (b) {2 n } (c) {ne 2n } (d) { 2 n } (e) {n } (f) {ln(n)} 2.2 Which

More information

f (r) (a) r! (x a) r, r=0

f (r) (a) r! (x a) r, r=0 Part 3.3 Differentiation v1 2018 Taylor Polynomials Definition 3.3.1 Taylor 1715 and Maclaurin 1742) If a is a fixed number, and f is a function whose first n derivatives exist at a then the Taylor polynomial

More information

Learn how to use Desmos

Learn how to use Desmos Learn how to use Desmos Maclaurin and Taylor series 1 Go to www.desmos.com. Create an account (click on bottom near top right of screen) Change the grid settings (click on the spanner) to 1 x 3, 1 y 12

More information

Math Assignment 5

Math Assignment 5 Math 2280 - Assignment 5 Dylan Zwick Fall 2013 Section 3.4-1, 5, 18, 21 Section 3.5-1, 11, 23, 28, 35, 47, 56 Section 3.6-1, 2, 9, 17, 24 1 Section 3.4 - Mechanical Vibrations 3.4.1 - Determine the period

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

CHAPTER 1. INTRODUCTION. ERRORS.

CHAPTER 1. INTRODUCTION. ERRORS. CHAPTER 1. INTRODUCTION. ERRORS. SEC. 1. INTRODUCTION. Frequently, in fact most commonly, practical problems do not have neat analytical solutions. As examples of analytical solutions to mathematical problems,

More information

The Derivative of a Function Measuring Rates of Change of a function. Secant line. f(x) f(x 0 ) Average rate of change of with respect to over,

The Derivative of a Function Measuring Rates of Change of a function. Secant line. f(x) f(x 0 ) Average rate of change of with respect to over, The Derivative of a Function Measuring Rates of Change of a function y f(x) f(x 0 ) P Q Secant line x 0 x x Average rate of change of with respect to over, " " " " - Slope of secant line through, and,

More information

PHYSICS 210 SOLUTION OF THE NONLINEAR PENDULUM EQUATION USING FDAS

PHYSICS 210 SOLUTION OF THE NONLINEAR PENDULUM EQUATION USING FDAS PHYSICS 210 SOLUTION OF THE NONLINEAR PENDULUM EQUATION USING FDAS 1. PHYSICAL & MATHEMATICAL FORMULATION O θ L r T m W 1 1.1 Derivation of the equation of motion O Consider idealized pendulum: Mass of

More information

Replacing the a in the definition of the derivative of the function f at a with a variable x, gives the derivative function f (x).

Replacing the a in the definition of the derivative of the function f at a with a variable x, gives the derivative function f (x). Definition of The Derivative Function Definition (The Derivative Function) Replacing the a in the definition of the derivative of the function f at a with a variable x, gives the derivative function f

More information

Math 222, Exam I, September 17, 2002 Answers

Math 222, Exam I, September 17, 2002 Answers Math, Exam I, September 7, 00 Answers I. (5 points.) (a) Evaluate (6x 5 x 4 7x + 3/x 5 + 4e x + 7 x ). Answer: (6x 5 x 4 7x + 3/x 5 + 4e x + 7 x ) = = x 6 + x 3 3 7x + 3 ln x 5x + 4ex + 7x ln 7 + C. Answer:

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

MATH 20B MIDTERM #2 REVIEW

MATH 20B MIDTERM #2 REVIEW MATH 20B MIDTERM #2 REVIEW FORMAT OF MIDTERM #2 The format will be the same as the practice midterms. There will be six main questions worth 0 points each. These questions will be similar to problems you

More information

Week 2 Techniques of Integration

Week 2 Techniques of Integration Week Techniques of Integration Richard Earl Mathematical Institute, Oxford, OX LB, October Abstract Integration by Parts. Substitution. Rational Functions. Partial Fractions. Trigonometric Substitutions.

More information

Math 20B Supplement. Bill Helton. September 23, 2004

Math 20B Supplement. Bill Helton. September 23, 2004 Math 0B Supplement Bill Helton September 3, 004 1 Supplement to Appendix G Supplement to Appendix G and Chapters 7 and 9 of Stewart Calculus Edition 5: August 003 Contents 1 Complex Exponentials: For Appendix

More information

Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions

Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions Math 111, Introduction to the Calculus, Fall 2011 Midterm I Practice Exam 1 Solutions For each question, there is a model solution (showing you the level of detail I expect on the exam) and then below

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

TOPIC 3. Taylor polynomials. Mathematica code. Here is some basic mathematica code for plotting functions.

TOPIC 3. Taylor polynomials. Mathematica code. Here is some basic mathematica code for plotting functions. TOPIC 3 Taylor polynomials Main ideas. Linear approximating functions: Review Approximating polynomials Key formulas: P n (x) =a 0 + a (x x )+ + a n (x x ) n P n (x + x) =a 0 + a ( x)+ + a n ( x) n where

More information

This Week. Professor Christopher Hoffman Math 124

This Week. Professor Christopher Hoffman Math 124 This Week Sections 2.1-2.3,2.5,2.6 First homework due Tuesday night at 11:30 p.m. Average and instantaneous velocity worksheet Tuesday available at http://www.math.washington.edu/ m124/ (under week 2)

More information

Final Exam Review Exercise Set A, Math 1551, Fall 2017

Final Exam Review Exercise Set A, Math 1551, Fall 2017 Final Exam Review Exercise Set A, Math 1551, Fall 2017 This review set gives a list of topics that we explored throughout this course, as well as a few practice problems at the end of the document. A complete

More information

Math 2233 Homework Set 7

Math 2233 Homework Set 7 Math 33 Homework Set 7 1. Find the general solution to the following differential equations. If initial conditions are specified, also determine the solution satisfying those initial conditions. a y 4

More information

Math Review for Exam Answer each of the following questions as either True or False. Circle the correct answer.

Math Review for Exam Answer each of the following questions as either True or False. Circle the correct answer. Math 22 - Review for Exam 3. Answer each of the following questions as either True or False. Circle the correct answer. (a) True/False: If a n > 0 and a n 0, the series a n converges. Soln: False: Let

More information

Assignment 16 Assigned Weds Oct 11

Assignment 16 Assigned Weds Oct 11 Assignment 6 Assigned Weds Oct Section 8, Problem 3 a, a 3, a 3 5, a 4 7 Section 8, Problem 4 a, a 3, a 3, a 4 3 Section 8, Problem 9 a, a, a 3, a 4 4, a 5 8, a 6 6, a 7 3, a 8 64, a 9 8, a 0 56 Section

More information

Math 1B Final Exam, Solution. Prof. Mina Aganagic Lecture 2, Spring (6 points) Use substitution and integration by parts to find:

Math 1B Final Exam, Solution. Prof. Mina Aganagic Lecture 2, Spring (6 points) Use substitution and integration by parts to find: Math B Final Eam, Solution Prof. Mina Aganagic Lecture 2, Spring 20 The eam is closed book, apart from a sheet of notes 8. Calculators are not allowed. It is your responsibility to write your answers clearly..

More information

Honors Calculus II [ ] Midterm II

Honors Calculus II [ ] Midterm II Honors Calculus II [3-00] Midterm II PRINT NAME: SOLUTIONS Q]...[0 points] Evaluate the following expressions and its. Since you don t have a calculator, square roots, fractions etc. are allowed in your

More information

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2

3. On the grid below, sketch and label graphs of the following functions: y = sin x, y = cos x, and y = sin(x π/2). π/2 π 3π/2 2π 5π/2 AP Physics C Calculus C.1 Name Trigonometric Functions 1. Consider the right triangle to the right. In terms of a, b, and c, write the expressions for the following: c a sin θ = cos θ = tan θ =. Using

More information

Solutions 2: Simple Harmonic Oscillator and General Oscillations

Solutions 2: Simple Harmonic Oscillator and General Oscillations Massachusetts Institute of Technology MITES 2017 Physics III Solutions 2: Simple Harmonic Oscillator and General Oscillations Due Wednesday June 21, at 9AM under Rene García s door Preface: This problem

More information

PLC Papers. Created For:

PLC Papers. Created For: PLC Papers Created For: Algebra and proof 2 Grade 8 Objective: Use algebra to construct proofs Question 1 a) If n is a positive integer explain why the expression 2n + 1 is always an odd number. b) Use

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

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

Further Mathematical Methods (Linear Algebra) 2002

Further Mathematical Methods (Linear Algebra) 2002 Further Mathematical Methods (Linear Algebra) Solutions For Problem Sheet 9 In this problem sheet, we derived a new result about orthogonal projections and used them to find least squares approximations

More information

z = x + iy ; x, y R rectangular or Cartesian form z = re iθ ; r, θ R polar form. (1)

z = x + iy ; x, y R rectangular or Cartesian form z = re iθ ; r, θ R polar form. (1) 11 Complex numbers Read: Boas Ch. Represent an arb. complex number z C in one of two ways: z = x + iy ; x, y R rectangular or Cartesian form z = re iθ ; r, θ R polar form. (1) Here i is 1, engineers call

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

The above statement is the false product rule! The correct product rule gives g (x) = 3x 4 cos x+ 12x 3 sin x. for all angles θ.

The above statement is the false product rule! The correct product rule gives g (x) = 3x 4 cos x+ 12x 3 sin x. for all angles θ. Math 7A Practice Midterm III Solutions Ch. 6-8 (Ebersole,.7-.4 (Stewart DISCLAIMER. This collection of practice problems is not guaranteed to be identical, in length or content, to the actual exam. You

More information

Math Practice Exam 3 - solutions

Math Practice Exam 3 - solutions Math 181 - Practice Exam 3 - solutions Problem 1 Consider the function h(x) = (9x 2 33x 25)e 3x+1. a) Find h (x). b) Find all values of x where h (x) is zero ( critical values ). c) Using the sign pattern

More information

LECTURE 11 - PARTIAL DIFFERENTIATION

LECTURE 11 - PARTIAL DIFFERENTIATION LECTURE 11 - PARTIAL DIFFERENTIATION CHRIS JOHNSON Abstract Partial differentiation is a natural generalization of the differentiation of a function of a single variable that you are familiar with 1 Introduction

More information

Assignment 13 Assigned Mon Oct 4

Assignment 13 Assigned Mon Oct 4 Assignment 3 Assigned Mon Oct 4 We refer to the integral table in the back of the book. Section 7.5, Problem 3. I don t see this one in the table in the back of the book! But it s a very easy substitution

More information

MIT Weakly Nonlinear Things: Oscillators.

MIT Weakly Nonlinear Things: Oscillators. 18.385 MIT Weakly Nonlinear Things: Oscillators. Department of Mathematics Massachusetts Institute of Technology Cambridge, Massachusetts MA 02139 Abstract When nonlinearities are small there are various

More information

2t t dt.. So the distance is (t2 +6) 3/2

2t t dt.. So the distance is (t2 +6) 3/2 Math 8, Solutions to Review for the Final Exam Question : The distance is 5 t t + dt To work that out, integrate by parts with u t +, so that t dt du The integral is t t + dt u du u 3/ (t +) 3/ So the

More information

C. Finding roots of trinomials: 1st Example: x 2 5x = 14 x 2 5x 14 = 0 (x 7)(x + 2) = 0 Answer: x = 7 or x = -2

C. Finding roots of trinomials: 1st Example: x 2 5x = 14 x 2 5x 14 = 0 (x 7)(x + 2) = 0 Answer: x = 7 or x = -2 AP Calculus Students: Welcome to AP Calculus. Class begins in approimately - months. In this packet, you will find numerous topics that were covered in your Algebra and Pre-Calculus courses. These are

More information

Physics 200 Lecture 4. Integration. Lecture 4. Physics 200 Laboratory

Physics 200 Lecture 4. Integration. Lecture 4. Physics 200 Laboratory Physics 2 Lecture 4 Integration Lecture 4 Physics 2 Laboratory Monday, February 21st, 211 Integration is the flip-side of differentiation in fact, it is often possible to write a differential equation

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

Notes on the Periodically Forced Harmonic Oscillator

Notes on the Periodically Forced Harmonic Oscillator Notes on the Periodically orced Harmonic Oscillator Warren Weckesser Math 38 - Differential Equations 1 The Periodically orced Harmonic Oscillator. By periodically forced harmonic oscillator, we mean the

More information

1.2 Finite Precision Arithmetic

1.2 Finite Precision Arithmetic MACM Assignment Solutions.2 Finite Precision Arithmetic.2:e Rounding Arithmetic Use four-digit rounding arithmetic to perform the following calculation. Compute the absolute error and relative error with

More information

f (x) = k=0 f (0) = k=0 k=0 a k k(0) k 1 = a 1 a 1 = f (0). a k k(k 1)x k 2, k=2 a k k(k 1)(0) k 2 = 2a 2 a 2 = f (0) 2 a k k(k 1)(k 2)x k 3, k=3

f (x) = k=0 f (0) = k=0 k=0 a k k(0) k 1 = a 1 a 1 = f (0). a k k(k 1)x k 2, k=2 a k k(k 1)(0) k 2 = 2a 2 a 2 = f (0) 2 a k k(k 1)(k 2)x k 3, k=3 1 M 13-Lecture Contents: 1) Taylor Polynomials 2) Taylor Series Centered at x a 3) Applications of Taylor Polynomials Taylor Series The previous section served as motivation and gave some useful expansion.

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

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

Math 20B Supplement. Bill Helton. August 3, 2003

Math 20B Supplement. Bill Helton. August 3, 2003 Math 0B Supplement Bill Helton August 3, 003 Supplement to Appendix G Supplement to Appendix G and Chapters 7 and 9 of Stewart Calculus Edition 4: August 003 Contents Complex Exponentials: For Appendix

More information

Math 106: Review for Exam II - SOLUTIONS

Math 106: Review for Exam II - SOLUTIONS Math 6: Review for Exam II - SOLUTIONS INTEGRATION TIPS Substitution: usually let u a function that s inside another function, especially if du (possibly off by a multiplying constant) is also present

More information

Practice Questions for Final Exam - Math 1060Q - Fall 2014

Practice Questions for Final Exam - Math 1060Q - Fall 2014 Practice Questions for Final Exam - Math 1060Q - Fall 01 Before anyone asks, the final exam is cumulative. It will consist of about 50% problems on exponential and logarithmic functions, 5% problems on

More information

YOU CAN BACK SUBSTITUTE TO ANY OF THE PREVIOUS EQUATIONS

YOU CAN BACK SUBSTITUTE TO ANY OF THE PREVIOUS EQUATIONS The two methods we will use to solve systems are substitution and elimination. Substitution was covered in the last lesson and elimination is covered in this lesson. Method of Elimination: 1. multiply

More information

Infinite Series. 1 Introduction. 2 General discussion on convergence

Infinite Series. 1 Introduction. 2 General discussion on convergence Infinite Series 1 Introduction I will only cover a few topics in this lecture, choosing to discuss those which I have used over the years. The text covers substantially more material and is available for

More information

Linear and Nonlinear Oscillators (Lecture 2)

Linear and Nonlinear Oscillators (Lecture 2) Linear and Nonlinear Oscillators (Lecture 2) January 25, 2016 7/441 Lecture outline A simple model of a linear oscillator lies in the foundation of many physical phenomena in accelerator dynamics. A typical

More information