ISE I Brief Lecture Notes

Size: px
Start display at page:

Download "ISE I Brief Lecture Notes"

Transcription

1 ISE I Brief Lecture Notes 1 Partial Differentiation 1.1 Definitions Let f(x, y) be a function of two variables. The partial derivative f/ x is the function obtained by differentiating f with respect to x, regarding y as a constant. Similarly, f/ y is obtained by differentiating f with respect to y, regarding x as a constant. We often use the alternative notation f x = f/ x, f y = f/ y. Example If f(x, y) = x 2 + xy + y 3 1 then f x = 2x + y, f y = x + 3y 2. As a limit, f(x + h, y) f(x, y) f/ x = lim h. h Also, the equation z = f(x, y) defines a surface in 3-dimensional space with x, y, z-axes, and f/ x is the gradient of the tangent at a point in the x- direction. Higher partial derivatives Can differentiate f x, f y partially with respect to x and y to get four second order derivatives: f xx = 2 f/ x 2, f yy = 2 f/ y 2, f xy = 2 f/ x y, f yx = 2 f/ y x Example 1. f(x, y) = x 2 + xy + y 3 1 as above: then f xx = 2, f yy = 6y, f xy = f yx = If f(x, y) = tan 1 (y/x) then we get f xx = 2xy/(x 2 + y 2 ) 2, f yy = 2xy/(x 2 + y 2 ) 2, 1

2 and also f xy = f yx = (y 2 x 2 )/(x 2 + y 2 ) 2. Notice that in both examples, f xy = f yx. This is a general fact: Theorem If f(x, y) is a function of two variables, and the second order partial derivatives f xy and f yx both exist and are continuous, then f xy = f yx. Here, saying that a function g(x, y) is continuous at a point (a, b) means that lim (x,y) (a,b) g(x, y) = g(a, b) this means that as (x, y) gets closer and closer to (a, b), g(x, y) gets closer and closer to g(a, b). All the functions we meet in this chapter will satisfy the assumptions of the theorem, so from we on we always assume that f xy = f yx. More than 2 variables For a function f(x, y, z,...) of three or more variables, we define the partial derivative f x = f/ x to be the function obtained by differentiating f with respect to x, regarding y, z,... as constants. Similarly for f/ y and f/ z and so on. Example if f(x, y, z) = (x 2 + y 2 + z 2 ) 1/2 then f x = x(x 2 + y 2 + z 2 ) 1/2, f y = y(x 2 + y 2 + z 2 ) 1/2, f z = z(x 2 + y 2 + z 2 ) 1/ Small changes Let f = f(x, y), and make small changes from x to x + δx and from y to y + δy. What is the corresponding change in f, i.e. what is δf = f(x + δx, y + δy) f(x, y)? We can estimate this as follows: write this as δf = [f(x + δx, y + δy) f(x, y + δy)] + [f(x, y + δy) f(x, y)]. From the definitions of f/ x, f/ y as limits, the first of these brackets is roughly equal to f x.δx and the second to f y.δy. So δf f x.δx + f y.δy. Example What is the approximate change in f(x, y) = xe xy if x changes from 1 to 1 + h and y from to k? Ans: δf (e xy + xye xy )δx + x 2 e xy δy. Putting x = 1, y = we get δf h + k. 2

3 1.3 Chain Rules Recall the chain rule for differentiating functions of one variable: if f = f(u) and u = u(t) then df/dt = df/du.du/dt. Now let f = f(x, y) where x, y are both functions of one variable t say x = x(t), y = y(t). If a small change δt in t gives corresponding changes δx, δy in x and y, then δx dx/dt.δt, δy dy/dt.δt, so by Section 1.2, δf f x.δx + f y.δy f x dx/dt.δt + f y dy/dt.δt. Dividing through by δt and taking the limit as δt, we get Chain Rule I If f = f(x, y) where x = x(t), y = y(t), then df/dt = f x dx/dt + f y dy/dt. Similarly for functions f(x, y, z) with x = x(t), y = y(t), z = z(t) we get df/dt = f x dx/dt + f y dy/dt + f z dz/dt. Example If f(x, y) = x 3 y + sin(x + y) where x = t 2, y = sin t, then df/dt = (3x 2 y + cos(x + y)).2t + (x 3 + cos(x + y)). cos t. (Could of course work this out by substituting for x, y to get f as a function of t, and then differentiating, but would be somewhat unpleasant. Implicit functions An equation of the form f(x, y) = defines y as an implicit function of x. To find dy/dx, we differentiate the equation with respect to x using the Chain Rule I (noting that x and y are both functions of the single variable x). This gives f x + f y dy/dx =, hence dy/dx = f x /f y. For example, if the equation is x 2 y cos x + x 3 y 2 =, then differentiating as above gives 2x + y sin x + 3x 2 y 2 + ( cos x + 2x 3 y)dy/dx =, hence dy/dx = (2x + y sin x + 3x 2 y 2 )/(cos x 2x 3 y). 3

4 General chain rule Now suppose f = f(x, y) where x = x(s, t), y = y(s, t). Then f is also a function of s, t and we d like a formula for f/ s, f/ t. Well, if we regard t as a constant then x = x(s), y = y(s), so we can apply Chain Rule I to get Chain Rule II If f = f(x, y) where x = x(s, t), y = y(s, t), then f/ s = f x x/ s + f y y/ s, and similarly f/ t = f x x/ t + f y y/ t. For more than 2 variables the rule is entirely similar: if f = f(x, y, z,...) where x = x(s, t,...), y = y(s, t,...), z = z(s, t,...),... then f/ s = f x x/ s + f y y/ s + f z z/ s + and similarly for f/ t and so on. Example Let f = f(x, y) and let r, θ be polar coordinates, so that x = r cos θ, y = r sin θ. Express the Laplace equation in polar coordinate form. 2 f/ x f/ y 2 = Step 1 First work out f x, f y in terms of r, θ using the Chain Rule. Well, so by the Chain Rule, r = (x 2 + y 2 ) 1/2, θ = tan 1 (y/x), f x = f r r/ x + f θ θ/ x = f r.x(x 2 + y 2 ) 1/2 f θ.y(x 2 + y 2 ) 1, and so we get Similarly f x = f r cos θ f θ (sin θ)/r. f y = f r sin θ + f θ (cos θ)/r. Step 2 Now we work out f xx in terms of r, θ. By Step 1, f xx = cos θ. / r(f x ) ((sin θ)/r). / θ(f x ) = cos θ. / r(f r cos θ f θ (sin θ)/r) ((sin θ)/r). / θ(f r cos θ f θ (sin θ)/r) = cos θ[cos θf rr + ((sin θ)/r 2 )f θ ((sin θ)/r)f θr ] ((sin θ)/r)[cos θf rθ sin θf r ((cos θ)/r)f θ ((sin θ)/r)f θθ ]. 4

5 Hence we get f xx = cos 2 θf rr ((2 sin θ cos θ)/r)f θr +((sin 2 θ)/r)f r +((2 sin θ cos θ)/r 2 )f θ +((sin 2 θ)/r 2 )f θθ. Similarly we get f yy = sin 2 θf rr +((2 sin θ cos θ)/r)f θr +((cos 2 θ)/r)f r ((2 sin θ cos θ)/r 2 )f θ +((cos 2 θ)/r 2 )f θθ. Adding these two expressions, we obtain f xx + f yy = f rr + (1/r)f r + (1/r 2 )f θθ. Therefore Laplace s equation in polar form is f rr + (1/r)f r + (1/r 2 )f θθ =. 1.4 Taylor expansions Recall the Taylor expansion of a function f(x) of one variable at a point x = a: this is f(a + h) = f(a) + f (a)h + f (a) 2! where R n (h) is the error term. h f (n) (a) h n + R n (h), n! Now we ll get a similar expansion for a function f(x, y) of two variables at a point (a, b). We study f along the line joining (a, b) to (a + h, b + k) for small h, k. A point on this line is (a + th, b + tk), with t between and 1. Define a function F (t) of one variable by F (t) = f(a + th, b + tk) ( t 1). So F () = f(a, b) and F (1) = f(a + th, b + tk). We are interested in the Maclaurin series for F, which is F (t) = F () + F ()t + F () t 2 + (1) 2! Let s work out F () and F () in terms of f and its partial derivatives. By Chain Rule I, F dx (t) = f x dt + f y dy dt where x = a + th, y = b + tk, and hence F (t) = hf x + kf y 5

6 (evaluated at (a + th, b + tk)). Applying the Chain Rule again, F (t) = h d dt (f x(a + th, b + tk)) + k d dt (f y(a + th, b + tk)) = h(hf xx + kf xy ) + k(hf yx + kf yy ) = h 2 f xx + 2hkf xy + k 2 f yy. Hence F () = f(a, b), F () = hf x (a, b) + kf y (a, b), F () = h 2 f xx (a, b) + 2hkf xy (a, b) + k 2 f yy (a, b). Substituting into (1), we get Taylor expansion of f(x, y) at (a, b): This is f(a + h, b + k) = f(a, b) + hf x (a, b) + kf y (a, b) (h2 f xx (a, b) + 2hkf xy (a, b) + k 2 f yy (a, b)) + terms of degree 3 or more in h, k. For small h, k this gives an approximation to f(a + h, b + k). 1.5 Maxima, minima and stationary points Now we use the previous section to study maxima and minima of functions of 2 variables. For a function f(x, y), we say f has a maximum at a point (a, b) if f(a + h, b + k) < f(a, b) for all small values of h, k (not both ). Similarly, f has a minimum at (a, b) if f(a + h, b + k) > f(a, b) for all small h, k. Finding maxima and minima Spose f has a maximum at (a, b). Then if we fix y = b and vary x, we certainly have f(a + h, b) < f(a, b) for all small h, which says that the function f(x, b) of 1 variable (x) has a maximum at x = a. Hence f/ x = at (a, b), and likewise f/ y = at (a, b). This is also true at a minimum. Hence maxima and minima are stationary points of f, in the following sense: Definition We say (a, b) is a stationary point of f if f x (a, b) = f y (a, b) =. A stationary point may or may not be a max/min. For example, if f(x, y) = xy then (, ) is a stationary point, but it is not a max or a min, as we can make f(h, k) positive or negative for suitable choices of small h, k. We call a stationary point (a, b) a saddle point of f if it is not a max or a min. 6

7 Example Let f(x, y) = x 2 /2 x + xy 2. Then f x = x 1 + y 2, f y = 2xy. At a stationary point, 2xy = so x = or y =. If x = then 1 + y 2 = so y = ±1. If y = then x 1 = so x = 1. So f has 3 stationary points: (, 1), (, 1), (1, ). Spose (a, b) is a stationary point of f, so f x (a, b) = f y (a, b) =. Write A = f xx (a, b), B = f xy (a, b), C = f yy (a, b). Then the Taylor expansion of f at (a, b) is f(a + h, b + k) = f(a, b) (Ah2 + 2Bhk + Ck 2 ) + higher terms. Write Δ = Ah 2 + 2Bhk + Ck 2. Then we see that (a, b) is a max if Δ < for all small h, k; (a, b) is a min if Δ > for all small h, k; and otherwise (a, b) is a saddle. Suppose now that A. Then Δ = 1 A (A2 h 2 + 2ABhk + ACk 2 ) = 1 A [(Ah + Bk)2 + (AC B 2 )k 2 ]. If AC B 2 > and A > then Δ > for all small h, k, and so (a, b) is a min. If AC B 2 > and A < then Δ < for all small h, k, and so (a, b) is a max. And if AC B 2 < then Δ can be made positive or negative for suitably chosen small h, k, so (a, b) is a saddle. Now suppose A = and B. Then Δ = k(2bh + Ck), which can be made positive or negative for small h, k, so again we have a saddle. Summary Let (a, b) be a stationary point of f(x, y), and let A = f xx (a, b), B = f xy (a, b), C = f y (a, b). The nature of the stationary point is as follows: A AC B 2 nature > > minimum < > maximum any < saddle Example Let f(x, y) = x 2 /2 x + xy 2 as above. We found that f has 3 stationary points, (, 1), (, 1), (1, ). Also f xx = 1, f xy = 2y, f yy = 2x. 7

8 So at (, 1), A = 1, B = 2, C =, so AC B 2 < and this is a saddle. At (, 1), A = 1, B = 2, C =, so AC B 2 < and this is also a saddle. At (1, ), A = 1, B =, C = 2, so AC B 2 > and this is a minimum. Note If AC B 2 = at a stationary point, the point can be a max, min or saddle nothing definite can be said in general. For example, f(x, y) = x 4 + y 4 has a stationary point at (, ); here AC B 2 = and (, ) is clearly a minimum of f. But g(x, y) = x 3 + y 3 also has a stationary point at (, ) with AC B 2 =, and this point is a saddle point of g. Contour sketching A common way to visualise a 3-dimensional surface z = f(x, y) is to sketch some of its contours in the x, y-plane. By a contour I just mean a curve of the form f(x, y) = c for a constant c. In the lectures we saw examples of contours for the simple cases z = x 2 + y 2 and z = xy. For z = x 2 + y 2 there is a min at (, ) and the contours are concentric circles centred at (, ); for z = xy there is a saddle at (, ) and the contours are curves xy = c. Procedure for making contour sketch Suppose we want to make a contour sketch of a surface z = f(x, y). Here are the steps: (1) Find the stationary points of f and determine their nature. (2) Sketch the contours through the saddle points. (3) Fill in some more contours, making sure that near the max/min points the contours look like those of z = x 2 + y 2, and near the saddles they look like those of z = xy. This is of course a pretty rough description, but it is fairly clear what to do in the simple examples in the lectures and problem sheets. 1.6 Exact differential equations Consider an equation u(x, y) = c (c a constant). As we saw earlier, this equation defines y as an implicit function of x, and if we differentiate it with dy respect to x we get u x +u y dx =. So if we put u x = p(x, y) and u y = q(x, y) then we see that the differential equation has solution u(x, y) = c. p(x, y) + q(x, y) dy dx = 8

9 Now let s think of this the other way round. Suppose we have a differential eqn P (x, y) + Q(x, y) dy dx =. If we can find a function u(x, y) such that u x = P, u y = Q, then we ll be able to solve the eqn the solution will be u(x, y) = c. Notice that if such a function u exists, then u xy = P y and u yx = Q x, so as u xy = u yx, we need to make sure that P y = Q x. This leads to Definition P y = Q x. The differential equation P + Q dy dx = is said to be exact if It turns out that for an exact eqn we can always find a function u such that u x = P, u y = Q, so we can always solve exact eqns. Example Solve 2xy + cos x cos y + (x 2 sin x sin y) dy dx =. Ans Let P = 2xy + cos x cos y, Q = x 2 sin x sin y. Then P y = Q x = 2x cos x sin y, so eqn is exact. To solve, we need to find u = u(x, y) such that (1) u x = 2xy + cos x cos y (2) u y = x 2 sin x sin y. Integrating (1), we get u = x 2 y+sin x cos y+f(y), where f(y) is any function of y. Differentiating wrt y this gives u y = x 2 sin x sin y + f (y). Hence (2) is satisfied if we take f(y) =. So u = x 2 y + sin x cos y satisfies both (1) and (2), and so the solution of the diff eqn is where c is an arbitrary constant. x 2 y + sin x cos y = c Integrating factor Sometimes it is possible to take a non-exact eqn P + Q dy dx = and to find a clever function λ = λ(x, y) to multiply the eqn through by and make it exact. In other words, to make the eqn λp + λq dy dx = an exact eqn. We call such a function λ an integrating factor for the eqn. 9

10 The only cases where this method is feasible is when we can find an integrating factor of the form λ = λ(x) (a function of x only) or λ(y). When λ = λ(x), the exactness condition is that (λp ) y = (λq) x, which is λp y = λ Q + λq x. This boils down to the following: 1 dλ λ dx = P y Q x Q. If the RHS happens to be a function of x only, then we have a chance of solving this and finding λ. Similarly, to find an integrating factor of the form λ = λ(y) we need to solve 1 dλ λ dy = P y Q x. P Example Solve xy 1 + (x 2 xy) dy dx =. Ans Let P = xy 1, Q = x 2 xy. Then P y = x, Q x = 2x y so eqn is not exact. But note that (P y Q x )/Q = 1/x, so to find an integrating factor λ = λ(x) we need to solve 1 dλ λ dx = 1/x. A solution is λ = 1/x. Multiplying the original eqn by this we get the eqn y 1 x + (x y) dy dx =. This is exact. To solve it we find u = u(x, y) satisfying u x = y 1 x, u y = x y. Integrating the first one gives u = xy log x + f(y), hence u y = x + f (y). So we need to choose f(y) with f (y) = y, so take f(y) = y 2 /2. Hence the solution is xy log x 1 2 y2 = c. 1

11 2 Laplace Transforms If f(t) is a function of one variable, we define its Laplace transform to be the function F (s) defined by F (s) = e st f(t)dt. Often we also write L(f(t)) or just L(f) for the Laplace transform of f. Examples 1. Laplace transform of the constant function f(t) = 1 is L(1) = e st dt = [ 1 s e st ] = 1 s (s > ). 2. L(e at ) = e at e st dt = 1 s a (s > a). 3. Let L(sin at) = F (s) = e st sin atdt. Then if we integrate by parts twice we get F (s) = a s 2 a2 s 2 F (s), and hence a L(sin at) = s 2 + a 2. Similarly L(cos at) = s s 2 + a To work out L(t n ) = e st t n dt, integrate by parts to get L(t n ) = n s L(tn 1 ). Repeating, we get L(t n ) = n s L(tn 1 ) = n(n 1) s 2 L(t n 1 n(n 1) ) = = s n L(1) = n! s n+1. Note The definition Laplace transform implies easily that L(f + g) = L(f) + L(g) and L(cf) = cl(f) (c a constant). For example, L(2t 3 3 sin t) = 2L(t 3 ) 3L(sin t) = 12 s 4 3 s Use of Laplace transforms 11

12 First we make the crucial observaton that if y is a function of t then we can express L( dy dt ) in terms of L(y) as follows: which by parts is equal to so we get the formula L( dy dt ) = [e st y] + st dy e dt dt, se st ydt, L( dy ) = y() + sl(y). (2) dt Another piece of notation: if L(f(t)) = F (s) we say that f is the inverse Laplace transform of F, and write f(t) = L 1 (F (s)). Now here s an example illustrating how we can use transforms to solve a differential eqn. More complicated examples will appear later when we ve done a bit more theory. Example Solve the differential eqn dy dt + 2y = cos t, with y() = 1. Ans Taking Laplace transforms of both sides gives L( dy dt )+2L(y) = L(cos t), so using (2) we get This gives 1 + sl(y) + 2L(y) = L(y) = s s s (s + 2)(s 2 + 1) + 1 s + 2. So y is the inverse Laplace transform of the RHS, or y = L 1 s ( (s + 2)(s 2 + 1) + 1 s + 2 ). To work this out, express the RHS in partial fractions that A = 3 5, B = 2 5, C = 1 5. So y = L 1 3 ( 5(s + 2) ) + L 1 ( 2s + 1 5(s 2 + 1) ). 12 A s+2 + Bs+C s We find

13 Hence the solution is y = 3 5 e 2t cos t + 1 sin t. 5 More Laplace Transforms We can get lots more from Shift Rule I If L(f(t)) = F (s), then L(e at f(t)) = F (a + s). Proof L(e at f(t)) = e st e at f(t)dt = e (s+a)t f(t)dt = F (s + a). Hence for example we get L(e at t n ) = L(e at sin bt) = n! (s + a) n+1, b (s + a) 2 + b 2. As another example, suppose we want to work out Well, f(t) = L 1 2s + 3 ( s 2 + 2s + 5 ). 2s + 3 s 2 + 2s + 5 = 2s + 3 2(s + 1) (s + 1) 2 = + 4 (s + 1) (s + 1) Hence f(t) = 2e t cos 2t e t sin 2t. There is another shift rule, based on the Heaviside step function H a (t), defined as follows, where a > is a constant: {, if t < a H a (t) = 1, if t a First observe that More generally, we have L(H a (t)) = a 13 e st dt = e as s.

14 Shift Rule II If L(f(t)) = F (s), then L(H a (t)f(t a)) = e as F (s). Proof The LHS = a e st f(t a)dt. Put u = t a. Then LHS = e s(u+a) f(u)du = e as e su f(u)du = e as F (s). Examples 1. L(H a (t) sin(t a)) = e as L(sin t) = e as s What is L 1 ( e 2s )? Well, we know L(t 2 ) = 2, so by the shift rule, s 2 s 3 L 1 ( e 2s s 2 ) = 1 2 H 2(t)(t 2) 2. Higher order differential equations Recall (2): L( dy dt ) = y() + sl(y). Now we find L( d2 y ). Well, dt 2 L( d2 y dt 2 ) = e st d2 y dy = [e st dt2 dt ] Substituting for L( dy dt ) gives + s st dy e dt dt = y () + sl( dy dt ). L( d2 y dt 2 ) = y () sy() + s 2 L(y). (3) Example Use Laplace transforms to solve with y() =, y () = 1. d 2 y dt 2 2dy dt + y = et Answer Take Laplace trans of both sides: y () sy() + s 2 L(y) 2( y() + sl(y)) + L(y) = L(e t ) = 1 s 1. So 1 + (s 2 2s + 1)L(y) = 1 s 1 which gives (s 1)2 L(y) = 1 s 1 + 1, so L(y) = 1 (s 1) (s 1) 3. 14

15 So y = L 1 1 ( (s 1) 2 ) + 1 L 1 ( (s 1) 3 ) = tet + t2 e t 2. Simultaneous differential equations This is where Laplace transforms come into their own. Example Find functions y, z of t satisfying the simultaneous differential eqns d 2 y dt 2 + 2y z = d 2 z dt 2 + 2z y = with z() = 2, y() = z () = y () =. Ans Taking Laplace trans and using (3), get (s 2 + 2)L(y) L(z) = (s 2 + 2)L(z) L(y) = 2s. Eliminate L(y) by taking the first eqn plus (s 2 + 2) times the second, to get By partial fracs the RHS is Similarly L(z) = s s s(s 2 + 2) (s 2 + 3)(s 2 + 1). s s So z = L 1 s ( s ) + s L 1 ( s ) = cos t + cos( 3t). y = cos t cos( 3t). Integration and Laplace transforms Rule If g(t) = t f(u)du, then L(g) = 1 s L(f). Proof By the Fundamental theorem of Calculus (from last term this says integration is the reverse of differentiation), g (t) = f(t). Hence L(f(t)) = L(g (t)) = g() + sl(g). As g() = f(u)du =, L(f) = sl(g). 15

16 Example Solve the differential/integral eqn with y() = 1. Ans Take Laplace trans: This gives L(y) = dy dt + 2y + t y(u)du =, 1 + sl(y) + 2L(y) + 1 L(y) =. s s 1, which by partial fracs is (s+1) 2 s+1 1. Hence (s+1) 2 y = L 1 1 ( s + 1 ) 1 L 1 ( (s + 1) 2 ) = e t te t. 16

17 3 Fourier Series A function f(x) is periodic with period P if f(x + P ) = f(x) for all x. Such a function is determined completely once we know its values on any interval of length P. Fourier series are defined for periodic functions of period 2π. Such a function is determined by its values for π x < π. Definition Let f(x) be a function defined for π x < π. The Fourier series of f(x) is defined to be the series a 2 + a n cos nx + b n sin nx, where a = π π f(x)dx, a n = π π f(x) cos nxdx, b n = π π f(x) sin nxdx. The numbers a, a n, b n are called the Fourier coefficients. In the lectures I explained why they are defined as above. A basic question is: under what conditions is a function equal to its Fourier series? A very good answer is provided by Dirichlet s Theorem Let f(x) be defined for π x < π. Suppose f(x) is continuous except at a finite number of points, and also f(x) has a left-hand and a right-hand derivative at every point. Then (1) at points x where f is continuous, f(x) is equal to its Fourier series (2) at points x = a where f is not continuous, the Fourier series is equal to 1 2 (f(a)+ + f(a) ), where f(a) + is the limit of f(x) as x tends to a from the right, and f(a) is the limit of f(x) as x tends to a from the left. In the lectures I explained these conditions in more detail, with examples. Example of calculation of Fourier series Let f(x) = x 2, π x < π We ll find the Fourier series of f(x). f(x) sin nx is odd, and so b n = 1 π π π First, f(x) is an even function, so f(x) sin nxdx =. 17

18 Next, integrating by parts, a n = 1 π π π x2 cos nxdx = 1 nπ [x2 sin nx] π π 1 π nπ π 2x sin nxdx = + 2 n 2 π [x cos nx]π π + 2 π n 2 π π cos nxdx 4 cos nπ = = 4 ( 1)n. n 2 n 2 Also Hence the Fourier series is a = 1 π π π π x 2 dx = 2π2 3. ( 1) n cos nx n 2. Since f(x) is continuous for all x, by Dirichlet s Theorem f(x) is equal to its Fourier series for all x. For example, putting x = π we get and hence π 2 = π Or putting x = we get so ( 1) n cos nπ n 2 1 n 2 = π2 6. = π ( 1) n n 2 = π n 2, ( 1) n n 2, = π2 12. Even and odd functions Let f(x) be a function defined for π x < π. Recall that f is an even function if f( x) = f(x) for all x. Such a function is determined by its values for x < π. If f is even then f(x) sin nx is odd so the Fourier coefficient b n =. Likewise, f is an odd function if f( x) = f(x) for all x. If f is odd then the Fourier coefficient a n =. 18

19 Summary (1) An even function f(x) ( x < π) has a Fourier cosine series a 2 + a n cos nx, where a = 2 π π f(x)dx, a n = 2 π π f(x) cos nxdx. (2) An odd function f(x) ( x < π) has a Fourier sine series b n cos nx, where b n = 2 π π f(x) sin nxdx. Example Find the Fourier cosine series for the function f(x) = sin x ( x < π). (This means the Fourier series of the even function taking these values.) Answer The Fourier coefficients are a n = 2 π π = 2 π π a = 2 π π which works out as if n is odd, and cosine series is 2 π 4 π sin xdx = 4 π, sin x cos nxdx (sin(n + 1)x sin(n 1)x)dx if n is even. Hence the Fourier π(n 2 1) cos 2nx 4n 2 1. Parseval s Formula Let f(x) ( π x < π) be a function and suppose it is continuous and differentiable, so by Dirichlet is equal to its Fourier series: f(x) = a 2 + a n cos nx + b n sin nx. Multiplying both sides by f(x) and integrating we get π π f(x)2 dx = π a π 2 f(x)dx + π a n π f(x) cos nxdx + π b n π f(x) sin nxdx = a 2.πa + a n.πa n + b n.πb n (since π π f(x) cos nxdx = πa n, π π f(x) sin nxdx = πb n from the definition of Fourier coeffs a n, b n ). Hence we get 19

20 Parseval s Formula If f(x) ( π x < π) is equal to its Fourier series, then 1 π f(x) 2 dx = a2 π π 2 + a 2 n + b 2 n. Example In our first example of Fourier series for f(x) = x 2 ( π x < π) we found x 2 = π ( 1) n cos nx n 2. So a = 2π2 3 and a n = 4 ( 1)n, and by Parseval s formula we get n 2 1 π x 4 dx = 2π4 π π n 4. The left hand side is 2π4 5, and hence we find 1 n 4 = π4 9. Changing the period Sometimes one wants to get a Fourier series for a periodic function of period different to 2π. Here s how. Let f(x) be periodic of period 2r, say. So f is completely determined by its values for r x < r. If we define another function F (x) by F (x) = f( rx π ), then F (x + 2π) = f( rx π + 2r) = f(rx π ) = F (x), so F has period 2π. So F has a Fourier series a 2 + a n cos nx + b n sin nx, where and similarly and a = 1 r a n = 1 π π π = 1 π π π f(rx π = 1 r r r r r f(y)dy. F (x) cos nxdx ) cos nxdx nπy f(y) cos( r )dy (substituting y = rx π ) b n = 1 r r r f(y) sin( nπy r )dy 2

21 Summary If f(x) is defined for r x < r then the Fourier series of f is a 2 + a n cos nπx r + b n sin nπx r, where a = 1 r r r f(x)dx, a n = 1 r nπx r r f(x) cos( r )dx, b n = 1 nπx r f(x) sin( r )dx. r r 21

Taylor Series and stationary points

Taylor Series and stationary points Chapter 5 Taylor Series and stationary points 5.1 Taylor Series The surface z = f(x, y) and its derivatives can give a series approximation for f(x, y) about some point (x 0, y 0 ) as illustrated in Figure

More information

Engg. Math. I. Unit-I. Differential Calculus

Engg. Math. I. Unit-I. Differential Calculus Dr. Satish Shukla 1 of 50 Engg. Math. I Unit-I Differential Calculus Syllabus: Limits of functions, continuous functions, uniform continuity, monotone and inverse functions. Differentiable functions, Rolle

More information

3 Applications of partial differentiation

3 Applications of partial differentiation Advanced Calculus Chapter 3 Applications of partial differentiation 37 3 Applications of partial differentiation 3.1 Stationary points Higher derivatives Let U R 2 and f : U R. The partial derivatives

More information

4 Partial Differentiation

4 Partial Differentiation 4 Partial Differentiation Many equations in engineering, physics and mathematics tie together more than two variables. For example Ohm s Law (V = IR) and the equation for an ideal gas, PV = nrt, which

More information

MATH 251 Final Examination December 16, 2015 FORM A. Name: Student Number: Section:

MATH 251 Final Examination December 16, 2015 FORM A. Name: Student Number: Section: MATH 5 Final Examination December 6, 5 FORM A Name: Student Number: Section: This exam has 7 questions for a total of 5 points. In order to obtain full credit for partial credit problems, all work must

More information

FINAL EXAM, MATH 353 SUMMER I 2015

FINAL EXAM, MATH 353 SUMMER I 2015 FINAL EXAM, MATH 353 SUMMER I 25 9:am-2:pm, Thursday, June 25 I have neither given nor received any unauthorized help on this exam and I have conducted myself within the guidelines of the Duke Community

More information

MA Chapter 10 practice

MA Chapter 10 practice MA 33 Chapter 1 practice NAME INSTRUCTOR 1. Instructor s names: Chen. Course number: MA33. 3. TEST/QUIZ NUMBER is: 1 if this sheet is yellow if this sheet is blue 3 if this sheet is white 4. Sign the scantron

More information

MA102: Multivariable Calculus

MA102: Multivariable Calculus MA102: Multivariable Calculus Rupam Barman and Shreemayee Bora Department of Mathematics IIT Guwahati Differentiability of f : U R n R m Definition: Let U R n be open. Then f : U R n R m is differentiable

More information

Review Sol. of More Long Answer Questions

Review Sol. of More Long Answer Questions Review Sol. of More Long Answer Questions 1. Solve the integro-differential equation t y (t) e t v y(v)dv = t; y()=. (1) Solution. The key is to recognize the convolution: t e t v y(v) dv = e t y. () Now

More information

Ma 221 Final Exam Solutions 5/14/13

Ma 221 Final Exam Solutions 5/14/13 Ma 221 Final Exam Solutions 5/14/13 1. Solve (a) (8 pts) Solution: The equation is separable. dy dx exy y 1 y0 0 y 1e y dy e x dx y 1e y dy e x dx ye y e y dy e x dx ye y e y e y e x c The last step comes

More information

Math 316/202: Solutions to Assignment 7

Math 316/202: Solutions to Assignment 7 Math 316/22: Solutions to Assignment 7 1.8.6(a) Using separation of variables, we write u(r, θ) = R(r)Θ(θ), where Θ() = Θ(π) =. The Laplace equation in polar coordinates (equation 19) becomes R Θ + 1 r

More information

UNIVERSITY OF SOUTHAMPTON. A foreign language dictionary (paper version) is permitted provided it contains no notes, additions or annotations.

UNIVERSITY OF SOUTHAMPTON. A foreign language dictionary (paper version) is permitted provided it contains no notes, additions or annotations. UNIVERSITY OF SOUTHAMPTON MATH055W SEMESTER EXAMINATION 03/4 MATHEMATICS FOR ELECTRONIC & ELECTRICAL ENGINEERING Duration: 0 min Solutions Only University approved calculators may be used. A foreign language

More information

Lecture 13 - Wednesday April 29th

Lecture 13 - Wednesday April 29th Lecture 13 - Wednesday April 29th jacques@ucsdedu Key words: Systems of equations, Implicit differentiation Know how to do implicit differentiation, how to use implicit and inverse function theorems 131

More information

Solutions to old Exam 3 problems

Solutions to old Exam 3 problems Solutions to old Exam 3 problems Hi students! I am putting this version of my review for the Final exam review here on the web site, place and time to be announced. Enjoy!! Best, Bill Meeks PS. There are

More information

Additional Homework Problems

Additional Homework Problems Additional Homework Problems These problems supplement the ones assigned from the text. Use complete sentences whenever appropriate. Use mathematical terms appropriately. 1. What is the order of a differential

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

Math 2930 Worksheet Final Exam Review

Math 2930 Worksheet Final Exam Review Math 293 Worksheet Final Exam Review Week 14 November 3th, 217 Question 1. (* Solve the initial value problem y y = 2xe x, y( = 1 Question 2. (* Consider the differential equation: y = y y 3. (a Find the

More information

Calculus III: Practice Final

Calculus III: Practice Final Calculus III: Practice Final Name: Circle one: Section 6 Section 7. Read the problems carefully. Show your work unless asked otherwise. Partial credit will be given for incomplete work. The exam contains

More information

MA22S2 Lecture Notes on Fourier Series and Partial Differential Equations.

MA22S2 Lecture Notes on Fourier Series and Partial Differential Equations. MAS Lecture Notes on Fourier Series and Partial Differential Equations Joe Ó hógáin E-mail: johog@maths.tcd.ie Main Text: Kreyszig; Advanced Engineering Mathematics Other Texts: Nagle and Saff, Zill and

More information

MATH 251 Final Examination August 14, 2015 FORM A. Name: Student Number: Section:

MATH 251 Final Examination August 14, 2015 FORM A. Name: Student Number: Section: MATH 251 Final Examination August 14, 2015 FORM A Name: Student Number: Section: This exam has 11 questions for a total of 150 points. Show all your work! In order to obtain full credit for partial credit

More information

a x a y = a x+y a x a = y ax y (a x ) r = a rx and log a (xy) = log a (x) + log a (y) log a ( x y ) = log a(x) log a (y) log a (x r ) = r log a (x).

a x a y = a x+y a x a = y ax y (a x ) r = a rx and log a (xy) = log a (x) + log a (y) log a ( x y ) = log a(x) log a (y) log a (x r ) = r log a (x). You should prepare the following topics for our final exam. () Pre-calculus. (2) Inverses. (3) Algebra of Limits. (4) Derivative Formulas and Rules. (5) Graphing Techniques. (6) Optimization (Maxima and

More information

DEPARTMENT OF MATHEMATICS AND STATISTICS UNIVERSITY OF MASSACHUSETTS. MATH 233 SOME SOLUTIONS TO EXAM 2 Fall 2018

DEPARTMENT OF MATHEMATICS AND STATISTICS UNIVERSITY OF MASSACHUSETTS. MATH 233 SOME SOLUTIONS TO EXAM 2 Fall 2018 DEPARTMENT OF MATHEMATICS AND STATISTICS UNIVERSITY OF MASSACHUSETTS MATH 233 SOME SOLUTIONS TO EXAM 2 Fall 208 Version A refers to the regular exam and Version B to the make-up. Version A. A particle

More information

MATH 251 Final Examination May 4, 2015 FORM A. Name: Student Number: Section:

MATH 251 Final Examination May 4, 2015 FORM A. Name: Student Number: Section: MATH 251 Final Examination May 4, 2015 FORM A Name: Student Number: Section: This exam has 16 questions for a total of 150 points. In order to obtain full credit for partial credit problems, all work must

More information

MATH 251 Final Examination May 3, 2017 FORM A. Name: Student Number: Section:

MATH 251 Final Examination May 3, 2017 FORM A. Name: Student Number: Section: MATH 5 Final Examination May 3, 07 FORM A Name: Student Number: Section: This exam has 6 questions for a total of 50 points. In order to obtain full credit for partial credit problems, all work must be

More information

MATH The Chain Rule Fall 2016 A vector function of a vector variable is a function F: R n R m. In practice, if x 1, x n is the input,

MATH The Chain Rule Fall 2016 A vector function of a vector variable is a function F: R n R m. In practice, if x 1, x n is the input, MATH 20550 The Chain Rule Fall 2016 A vector function of a vector variable is a function F: R n R m. In practice, if x 1, x n is the input, F(x 1,, x n ) F 1 (x 1,, x n ),, F m (x 1,, x n ) where each

More information

M412 Assignment 5 Solutions

M412 Assignment 5 Solutions M41 Assignment 5 Solutions 1. [1 pts] Haberman.5.1 (a). Solution. Setting u(x, y) =X(x)Y(y), we find that X and Y satisfy X + λx = Y λy =, X () = X () = Y() =. In this case, we find from the X equation

More information

PARAMETRIC EQUATIONS AND POLAR COORDINATES

PARAMETRIC EQUATIONS AND POLAR COORDINATES 10 PARAMETRIC EQUATIONS AND POLAR COORDINATES PARAMETRIC EQUATIONS & POLAR COORDINATES We have seen how to represent curves by parametric equations. Now, we apply the methods of calculus to these parametric

More information

Exam 1 Review SOLUTIONS

Exam 1 Review SOLUTIONS 1. True or False (and give a short reason): Exam 1 Review SOLUTIONS (a) If the parametric curve x = f(t), y = g(t) satisfies g (1) = 0, then it has a horizontal tangent line when t = 1. FALSE: To make

More information

G: Uniform Convergence of Fourier Series

G: Uniform Convergence of Fourier Series G: Uniform Convergence of Fourier Series From previous work on the prototypical problem (and other problems) u t = Du xx 0 < x < l, t > 0 u(0, t) = 0 = u(l, t) t > 0 u(x, 0) = f(x) 0 < x < l () we developed

More information

SIMPLE MULTIVARIATE OPTIMIZATION

SIMPLE MULTIVARIATE OPTIMIZATION SIMPLE MULTIVARIATE OPTIMIZATION 1. DEFINITION OF LOCAL MAXIMA AND LOCAL MINIMA 1.1. Functions of variables. Let f(, x ) be defined on a region D in R containing the point (a, b). Then a: f(a, b) is a

More information

1 Functions of Several Variables Some Examples Level Curves / Contours Functions of More Variables... 6

1 Functions of Several Variables Some Examples Level Curves / Contours Functions of More Variables... 6 Contents 1 Functions of Several Variables 1 1.1 Some Examples.................................. 2 1.2 Level Curves / Contours............................. 4 1.3 Functions of More Variables...........................

More information

Higher order derivative

Higher order derivative 2 Î 3 á Higher order derivative Î 1 Å Iterated partial derivative Iterated partial derivative Suppose f has f/ x, f/ y and ( f ) = 2 f x x x 2 ( f ) = 2 f x y x y ( f ) = 2 f y x y x ( f ) = 2 f y y y

More information

z 2 = 1 4 (x 2) + 1 (y 6)

z 2 = 1 4 (x 2) + 1 (y 6) MA 5 Fall 007 Exam # Review Solutions. Consider the function fx, y y x. a Sketch the domain of f. For the domain, need y x 0, i.e., y x. - - - 0 0 - - - b Sketch the level curves fx, y k for k 0,,,. The

More information

Chain Rule. MATH 311, Calculus III. J. Robert Buchanan. Spring Department of Mathematics

Chain Rule. MATH 311, Calculus III. J. Robert Buchanan. Spring Department of Mathematics 3.33pt Chain Rule MATH 311, Calculus III J. Robert Buchanan Department of Mathematics Spring 2019 Single Variable Chain Rule Suppose y = g(x) and z = f (y) then dz dx = d (f (g(x))) dx = f (g(x))g (x)

More information

Review For the Final: Problem 1 Find the general solutions of the following DEs. a) x 2 y xy y 2 = 0 solution: = 0 : homogeneous equation.

Review For the Final: Problem 1 Find the general solutions of the following DEs. a) x 2 y xy y 2 = 0 solution: = 0 : homogeneous equation. Review For the Final: Problem 1 Find the general solutions of the following DEs. a) x 2 y xy y 2 = 0 solution: y y x y2 = 0 : homogeneous equation. x2 v = y dy, y = vx, and x v + x dv dx = v + v2. dx =

More information

student id: MATH 202 FINAL EXAM SOLUTION KEY total 20 pts 20 pts 20 pts 20 pts 20 pts 25 pts 25 pts 150 pts

student id: MATH 202 FINAL EXAM SOLUTION KEY total 20 pts 20 pts 20 pts 20 pts 20 pts 25 pts 25 pts 150 pts Date: January 5, 4 name, surname: Time: 9:-:3 math number: student id: MATH FINAL EXAM SOLUTION KEY IMPORTANT. Write your name, surname on top of each page.. The exam consists of 7 questions some of which

More information

Exam TMA4120 MATHEMATICS 4K. Monday , Time:

Exam TMA4120 MATHEMATICS 4K. Monday , Time: Exam TMA4 MATHEMATICS 4K Monday 9.., Time: 9 3 English Hjelpemidler (Kode C): Bestemt kalkulator (HP 3S eller Citizen SR-7X), Rottmann: Matematisk formelsamling Problem. a. Determine the value ( + i) 6

More information

Contents. 2 Partial Derivatives. 2.1 Limits and Continuity. Calculus III (part 2): Partial Derivatives (by Evan Dummit, 2017, v. 2.

Contents. 2 Partial Derivatives. 2.1 Limits and Continuity. Calculus III (part 2): Partial Derivatives (by Evan Dummit, 2017, v. 2. Calculus III (part 2): Partial Derivatives (by Evan Dummit, 2017, v 260) Contents 2 Partial Derivatives 1 21 Limits and Continuity 1 22 Partial Derivatives 5 23 Directional Derivatives and the Gradient

More information

Chapter 4. Several-variable calculus. 4.1 Derivatives of Functions of Several Variables Functions of Several Variables

Chapter 4. Several-variable calculus. 4.1 Derivatives of Functions of Several Variables Functions of Several Variables Chapter 4 Several-variable calculus 4.1 Derivatives of Functions of Several Variables 4.1.1 Functions of Several Variables ² A function f of n variables (x 1,x 2,...,x n ) in R n is an entity that operates

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

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

MATH 32A: MIDTERM 2 REVIEW. sin 2 u du z(t) = sin 2 t + cos 2 2

MATH 32A: MIDTERM 2 REVIEW. sin 2 u du z(t) = sin 2 t + cos 2 2 MATH 3A: MIDTERM REVIEW JOE HUGHES 1. Curvature 1. Consider the curve r(t) = x(t), y(t), z(t), where x(t) = t Find the curvature κ(t). 0 cos(u) sin(u) du y(t) = Solution: The formula for curvature is t

More information

UNIVERSITY of LIMERICK OLLSCOIL LUIMNIGH

UNIVERSITY of LIMERICK OLLSCOIL LUIMNIGH UNIVERSITY of LIMERICK OLLSCOIL LUIMNIGH Faculty of Science and Engineering Department of Mathematics and Statistics END OF SEMESTER ASSESSMENT PAPER MODULE CODE: MA4006 SEMESTER: Spring 2011 MODULE TITLE:

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

MTH301 Calculus II Solved Final Term Papers For Final Term Exam Preparation

MTH301 Calculus II Solved Final Term Papers For Final Term Exam Preparation MTH301 Calculus II Solved Final Term Papers For Final Term Exam Preparation Question No: 1 Laplace transform of t is 1 s 1 s 2 e s s Question No: 2 Symmetric equation for the line through (1,3,5) and (2,-2,3)

More information

Math 251 December 14, 2005 Answer Key to Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt

Math 251 December 14, 2005 Answer Key to Final Exam. 1 18pt 2 16pt 3 12pt 4 14pt 5 12pt 6 14pt 7 14pt 8 16pt 9 20pt 10 14pt Total 150pt Name Section Math 51 December 14, 5 Answer Key to Final Exam There are 1 questions on this exam. Many of them have multiple parts. The point value of each question is indicated either at the beginning

More information

MATH20411 PDEs and Vector Calculus B

MATH20411 PDEs and Vector Calculus B MATH2411 PDEs and Vector Calculus B Dr Stefan Güttel Acknowledgement The lecture notes and other course materials are based on notes provided by Dr Catherine Powell. SECTION 1: Introctory Material MATH2411

More information

Lecture 10. (2) Functions of two variables. Partial derivatives. Dan Nichols February 27, 2018

Lecture 10. (2) Functions of two variables. Partial derivatives. Dan Nichols February 27, 2018 Lecture 10 Partial derivatives Dan Nichols nichols@math.umass.edu MATH 233, Spring 2018 University of Massachusetts February 27, 2018 Last time: functions of two variables f(x, y) x and y are the independent

More information

Solutions to Assignment 7

Solutions to Assignment 7 MTHE 237 Fall 215 Solutions to Assignment 7 Problem 1 Show that the Laplace transform of cos(αt) satisfies L{cosαt = s s 2 +α 2 L(cos αt) e st cos(αt)dt A s α e st sin(αt)dt e stsin(αt) α { e stsin(αt)

More information

Mathematics 3 Differential Calculus

Mathematics 3 Differential Calculus Differential Calculus 3-1a A derivative function defines the slope described by the original function. Example 1 (FEIM): Given: y(x) = 3x 3 2x 2 + 7. What is the slope of the function y(x) at x = 4? y

More information

Babu Banarasi Das Northern India Institute of Technology, Lucknow

Babu Banarasi Das Northern India Institute of Technology, Lucknow Babu Banarasi Das Northern India Institute of Technology, Lucknow B.Tech Second Semester Academic Session: 2012-13 Question Bank Maths II (EAS -203) Unit I: Ordinary Differential Equation 1-If dy/dx +

More information

4.1 Analysis of functions I: Increase, decrease and concavity

4.1 Analysis of functions I: Increase, decrease and concavity 4.1 Analysis of functions I: Increase, decrease and concavity Definition Let f be defined on an interval and let x 1 and x 2 denote points in that interval. a) f is said to be increasing on the interval

More information

Math Assignment 14

Math Assignment 14 Math 2280 - Assignment 14 Dylan Zwick Spring 2014 Section 9.5-1, 3, 5, 7, 9 Section 9.6-1, 3, 5, 7, 14 Section 9.7-1, 2, 3, 4 1 Section 9.5 - Heat Conduction and Separation of Variables 9.5.1 - Solve the

More information

CALCULUS MATH*2080 SAMPLE FINAL EXAM

CALCULUS MATH*2080 SAMPLE FINAL EXAM CALCULUS MATH*28 SAMPLE FINAL EXAM Sample Final Exam Page of 2 Prof. R.Gentry Print Your Name Student No. SIGNATURE Mark This exam is worth 45% of your final grade. In Part I In Part II In part III In

More information

Chapter 8: Taylor s theorem and L Hospital s rule

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

More information

MATH 18.01, FALL PROBLEM SET # 6 SOLUTIONS

MATH 18.01, FALL PROBLEM SET # 6 SOLUTIONS MATH 181, FALL 17 - PROBLEM SET # 6 SOLUTIONS Part II (5 points) 1 (Thurs, Oct 6; Second Fundamental Theorem; + + + + + = 16 points) Let sinc(x) denote the sinc function { 1 if x =, sinc(x) = sin x if

More information

c) xy 3 = cos(7x +5y), y 0 = y3 + 7 sin(7x +5y) 3xy sin(7x +5y) d) xe y = sin(xy), y 0 = ey + y cos(xy) x(e y cos(xy)) e) y = x ln(3x + 5), y 0

c) xy 3 = cos(7x +5y), y 0 = y3 + 7 sin(7x +5y) 3xy sin(7x +5y) d) xe y = sin(xy), y 0 = ey + y cos(xy) x(e y cos(xy)) e) y = x ln(3x + 5), y 0 Some Math 35 review problems With answers 2/6/2005 The following problems are based heavily on problems written by Professor Stephen Greenfield for his Math 35 class in spring 2005. His willingness to

More information

MATH 251 Final Examination December 16, 2014 FORM A. Name: Student Number: Section:

MATH 251 Final Examination December 16, 2014 FORM A. Name: Student Number: Section: MATH 2 Final Examination December 6, 204 FORM A Name: Student Number: Section: This exam has 7 questions for a total of 0 points. In order to obtain full credit for partial credit problems, all work must

More information

Differential Equations Class Notes

Differential Equations Class Notes Differential Equations Class Notes Dan Wysocki Spring 213 Contents 1 Introduction 2 2 Classification of Differential Equations 6 2.1 Linear vs. Non-Linear.................................. 7 2.2 Seperable

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

MATH 251 Final Examination December 19, 2012 FORM A. Name: Student Number: Section:

MATH 251 Final Examination December 19, 2012 FORM A. Name: Student Number: Section: MATH 251 Final Examination December 19, 2012 FORM A Name: Student Number: Section: This exam has 17 questions for a total of 150 points. In order to obtain full credit for partial credit problems, all

More information

MTH4101 CALCULUS II REVISION NOTES. 1. COMPLEX NUMBERS (Thomas Appendix 7 + lecture notes) ax 2 + bx + c = 0. x = b ± b 2 4ac 2a. i = 1.

MTH4101 CALCULUS II REVISION NOTES. 1. COMPLEX NUMBERS (Thomas Appendix 7 + lecture notes) ax 2 + bx + c = 0. x = b ± b 2 4ac 2a. i = 1. MTH4101 CALCULUS II REVISION NOTES 1. COMPLEX NUMBERS (Thomas Appendix 7 + lecture notes) 1.1 Introduction Types of numbers (natural, integers, rationals, reals) The need to solve quadratic equations:

More information

Series Solution of Linear Ordinary Differential Equations

Series Solution of Linear Ordinary Differential Equations Series Solution of Linear Ordinary Differential Equations Department of Mathematics IIT Guwahati Aim: To study methods for determining series expansions for solutions to linear ODE with variable coefficients.

More information

Dr. Allen Back. Oct. 6, 2014

Dr. Allen Back. Oct. 6, 2014 Dr. Allen Back Oct. 6, 2014 Distribution Min=48 Max=100 Q1=74 Median=83 Q3=91.5 mean = 81.48 std. dev. = 12.5 Distribution Distribution: (The letters will not be directly used.) Scores Freq. 100 2 98-99

More information

MATH Max-min Theory Fall 2016

MATH Max-min Theory Fall 2016 MATH 20550 Max-min Theory Fall 2016 1. Definitions and main theorems Max-min theory starts with a function f of a vector variable x and a subset D of the domain of f. So far when we have worked with functions

More information

Faculty of Engineering, Mathematics and Science School of Mathematics

Faculty of Engineering, Mathematics and Science School of Mathematics Faculty of Engineering, Mathematics and Science School of Mathematics GROUPS Trinity Term 06 MA3: Advanced Calculus SAMPLE EXAM, Solutions DAY PLACE TIME Prof. Larry Rolen Instructions to Candidates: Attempt

More information

n=0 ( 1)n /(n + 1) converges, but not

n=0 ( 1)n /(n + 1) converges, but not Math 07H Topics for the third exam (and beyond) (Technically, everything covered on the first two exams plus...) Absolute convergence and alternating series A series a n converges absolutely if a n converges.

More information

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a

For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a AP Physics C: Mechanics Greetings, For those of you who are taking Calculus AB concurrently with AP Physics, I have developed a brief introduction to Calculus that gives you an operational knowledge of

More information

1 Solution to Homework 4

1 Solution to Homework 4 Solution to Homework Section. 5. The characteristic equation is r r + = (r )(r ) = 0 r = or r =. y(t) = c e t + c e t y = c e t + c e t. y(0) =, y (0) = c + c =, c + c = c =, c =. To find the maximum value

More information

Maxima and Minima. (a, b) of R if

Maxima and Minima. (a, b) of R if Maxima and Minima Definition Let R be any region on the xy-plane, a function f (x, y) attains its absolute or global, maximum value M on R at the point (a, b) of R if (i) f (x, y) M for all points (x,

More information

Math 201 Assignment #11

Math 201 Assignment #11 Math 21 Assignment #11 Problem 1 (1.5 2) Find a formal solution to the given initial-boundary value problem. = 2 u x, < x < π, t > 2 u(, t) = u(π, t) =, t > u(x, ) = x 2, < x < π Problem 2 (1.5 5) Find

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

Do not turn over until you are told to do so by the Invigilator.

Do not turn over until you are told to do so by the Invigilator. UNIVERSITY OF EAST ANGLIA School of Mathematics Main Series UG Examination 2013 14 CALCULUS AND MULTIVARIABLE CALCULUS MTHA4005Y Time allowed: 3 Hours Attempt QUESTIONS 1 and 2, and THREE other questions.

More information

Practice problems for Exam 1. a b = (2) 2 + (4) 2 + ( 3) 2 = 29

Practice problems for Exam 1. a b = (2) 2 + (4) 2 + ( 3) 2 = 29 Practice problems for Exam.. Given a = and b =. Find the area of the parallelogram with adjacent sides a and b. A = a b a ı j k b = = ı j + k = ı + 4 j 3 k Thus, A = 9. a b = () + (4) + ( 3)

More information

Vector Calculus, Maths II

Vector Calculus, Maths II Section A Vector Calculus, Maths II REVISION (VECTORS) 1. Position vector of a point P(x, y, z) is given as + y and its magnitude by 2. The scalar components of a vector are its direction ratios, and represent

More information

Coordinate systems and vectors in three spatial dimensions

Coordinate systems and vectors in three spatial dimensions PHYS2796 Introduction to Modern Physics (Spring 2015) Notes on Mathematics Prerequisites Jim Napolitano, Department of Physics, Temple University January 7, 2015 This is a brief summary of material on

More information

Solutions to Homework 5

Solutions to Homework 5 Solutions to Homework 5 1. Let z = f(x, y) be a twice continuously differentiable function of x and y. Let x = r cos θ and y = r sin θ be the equations which transform polar coordinates into rectangular

More information

MTH4100 Calculus I. Week 6 (Thomas Calculus Sections 3.5 to 4.2) Rainer Klages. School of Mathematical Sciences Queen Mary, University of London

MTH4100 Calculus I. Week 6 (Thomas Calculus Sections 3.5 to 4.2) Rainer Klages. School of Mathematical Sciences Queen Mary, University of London MTH4100 Calculus I Week 6 (Thomas Calculus Sections 3.5 to 4.2) Rainer Klages School of Mathematical Sciences Queen Mary, University of London Autumn 2008 R. Klages (QMUL) MTH4100 Calculus 1 Week 6 1 /

More information

Functions. A function is a rule that gives exactly one output number to each input number.

Functions. A function is a rule that gives exactly one output number to each input number. Functions A function is a rule that gives exactly one output number to each input number. Why it is important to us? The set of all input numbers to which the rule applies is called the domain of the function.

More information

Find the Fourier series of the odd-periodic extension of the function f (x) = 1 for x ( 1, 0). Solution: The Fourier series is.

Find the Fourier series of the odd-periodic extension of the function f (x) = 1 for x ( 1, 0). Solution: The Fourier series is. Review for Final Exam. Monday /09, :45-:45pm in CC-403. Exam is cumulative, -4 problems. 5 grading attempts per problem. Problems similar to homeworks. Integration and LT tables provided. No notes, no

More information

Series Solutions of Differential Equations

Series Solutions of Differential Equations Chapter 6 Series Solutions of Differential Equations In this chapter we consider methods for solving differential equations using power series. Sequences and infinite series are also involved in this treatment.

More information

Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3)

Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3) Final Exam Review AP Calculus AB Find the slope of the curve at the given point P and an equation of the tangent line at P. 1) y = x2 + 11x - 15, P(1, -3) Use the graph to evaluate the limit. 2) lim x

More information

Introduction and preliminaries

Introduction and preliminaries Chapter Introduction and preliminaries Partial differential equations What is a partial differential equation? ODEs Ordinary Differential Equations) have one variable x). PDEs Partial Differential Equations)

More information

Parametric Equations, Function Composition and the Chain Rule: A Worksheet

Parametric Equations, Function Composition and the Chain Rule: A Worksheet Parametric Equations, Function Composition and the Chain Rule: A Worksheet Prof.Rebecca Goldin Oct. 8, 003 1 Parametric Equations We have seen that the graph of a function f(x) of one variable consists

More information

2003 Mathematics. Advanced Higher. Finalised Marking Instructions

2003 Mathematics. Advanced Higher. Finalised Marking Instructions 2003 Mathematics Advanced Higher Finalised Marking Instructions 2003 Mathematics Advanced Higher Section A Finalised Marking Instructions Advanced Higher 2003: Section A Solutions and marks A. (a) Given

More information

Computer Problems for Fourier Series and Transforms

Computer Problems for Fourier Series and Transforms Computer Problems for Fourier Series and Transforms 1. Square waves are frequently used in electronics and signal processing. An example is shown below. 1 π < x < 0 1 0 < x < π y(x) = 1 π < x < 2π... and

More information

Fall 2016, MA 252, Calculus II, Final Exam Preview Solutions

Fall 2016, MA 252, Calculus II, Final Exam Preview Solutions Fall 6, MA 5, Calculus II, Final Exam Preview Solutions I will put the following formulas on the front of the final exam, to speed up certain problems. You do not need to put them on your index card, and

More information

Derivatives and Integrals

Derivatives and Integrals Derivatives and Integrals Definition 1: Derivative Formulas d dx (c) = 0 d dx (f ± g) = f ± g d dx (kx) = k d dx (xn ) = nx n 1 (f g) = f g + fg ( ) f = f g fg g g 2 (f(g(x))) = f (g(x)) g (x) d dx (ax

More information

Partial Derivatives Formulas. KristaKingMath.com

Partial Derivatives Formulas. KristaKingMath.com Partial Derivatives Formulas KristaKingMath.com Domain and range of a multivariable function A function f of two variables is a rule that assigns to each ordered pair of real numbers (x, y) in a set D

More information

Math 113 HW #10 Solutions

Math 113 HW #10 Solutions Math HW #0 Solutions 4.5 4. Use the guidelines of this section to sketch the curve Answer: Using the quotient rule, y = x x + 9. y = (x + 9)(x) x (x) (x + 9) = 8x (x + 9). Since the denominator is always

More information

Math 210, Final Exam, Fall 2010 Problem 1 Solution. v cosθ = u. v Since the magnitudes of the vectors are positive, the sign of the dot product will

Math 210, Final Exam, Fall 2010 Problem 1 Solution. v cosθ = u. v Since the magnitudes of the vectors are positive, the sign of the dot product will Math, Final Exam, Fall Problem Solution. Let u,, and v,,3. (a) Is the angle between u and v acute, obtuse, or right? (b) Find an equation for the plane through (,,) containing u and v. Solution: (a) The

More information

Sec 4.1 Limits, Informally. When we calculated f (x), we first started with the difference quotient. f(x + h) f(x) h

Sec 4.1 Limits, Informally. When we calculated f (x), we first started with the difference quotient. f(x + h) f(x) h 1 Sec 4.1 Limits, Informally When we calculated f (x), we first started with the difference quotient f(x + h) f(x) h and made h small. In other words, f (x) is the number f(x+h) f(x) approaches as h gets

More information

P1 Calculus II. Partial Differentiation & Multiple Integration. Prof David Murray. dwm/courses/1pd

P1 Calculus II. Partial Differentiation & Multiple Integration. Prof David Murray.   dwm/courses/1pd P1 2017 1 / 39 P1 Calculus II Partial Differentiation & Multiple Integration Prof David Murray david.murray@eng.ox.ac.uk www.robots.ox.ac.uk/ dwm/courses/1pd 4 lectures, MT 2017 P1 2017 2 / 39 Motivation

More information

McGill University April Calculus 3. Tuesday April 29, 2014 Solutions

McGill University April Calculus 3. Tuesday April 29, 2014 Solutions McGill University April 4 Faculty of Science Final Examination Calculus 3 Math Tuesday April 9, 4 Solutions Problem (6 points) Let r(t) = (t, cos t, sin t). i. Find the velocity r (t) and the acceleration

More information

Mathematics of Physics and Engineering II: Homework problems

Mathematics of Physics and Engineering II: Homework problems Mathematics of Physics and Engineering II: Homework problems Homework. Problem. Consider four points in R 3 : P (,, ), Q(,, 2), R(,, ), S( + a,, 2a), where a is a real number. () Compute the coordinates

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

Differential Equations

Differential Equations Differential Equations Problem Sheet 1 3 rd November 2011 First-Order Ordinary Differential Equations 1. Find the general solutions of the following separable differential equations. Which equations are

More information

MATH 131P: PRACTICE FINAL SOLUTIONS DECEMBER 12, 2012

MATH 131P: PRACTICE FINAL SOLUTIONS DECEMBER 12, 2012 MATH 3P: PRACTICE FINAL SOLUTIONS DECEMBER, This is a closed ook, closed notes, no calculators/computers exam. There are 6 prolems. Write your solutions to Prolems -3 in lue ook #, and your solutions to

More information

Find the indicated derivative. 1) Find y(4) if y = 3 sin x. A) y(4) = 3 cos x B) y(4) = 3 sin x C) y(4) = - 3 cos x D) y(4) = - 3 sin x

Find the indicated derivative. 1) Find y(4) if y = 3 sin x. A) y(4) = 3 cos x B) y(4) = 3 sin x C) y(4) = - 3 cos x D) y(4) = - 3 sin x Assignment 5 Name Find the indicated derivative. ) Find y(4) if y = sin x. ) A) y(4) = cos x B) y(4) = sin x y(4) = - cos x y(4) = - sin x ) y = (csc x + cot x)(csc x - cot x) ) A) y = 0 B) y = y = - csc

More information

Mathematical Methods and its Applications (Solution of assignment-12) Solution 1 From the definition of Fourier transforms, we have.

Mathematical Methods and its Applications (Solution of assignment-12) Solution 1 From the definition of Fourier transforms, we have. For 2 weeks course only Mathematical Methods and its Applications (Solution of assignment-2 Solution From the definition of Fourier transforms, we have F e at2 e at2 e it dt e at2 +(it/a dt ( setting (

More information