NOTES ON MAPLE COMPUTER ASSIGNMENT. You can do your Maple Assignment in Math. Department on the 5th. floor

Size: px
Start display at page:

Download "NOTES ON MAPLE COMPUTER ASSIGNMENT. You can do your Maple Assignment in Math. Department on the 5th. floor"

Transcription

1 NTES N MAPLE CMPUTER ASSIGNMENT (A) WHERE CAN I D MY ASSIGNMENT? You can do your Maple Assignment in Math. Department on the 5th. floor of Mathematical Sciences Building, Rooms MS 515, MS 51 or Room MS 571 on drop in basis. You must check time table posted outside these rooms for availability. However you must have an IT Computer Account. If you don t have an IT account you may fill out an application requesting an account through the campus IT Web site: or simply go to 7th. floor of Math Sciences Building and Apply! Warning : Using your own PC Is Not Permitted. You must Save An Electronic Copy n U f C Computer Just In Case We Need it for Verification or Cheating Investigation. (B) IMPRTANT INSTRUCTINS : 1.Your Assignment must be done on letter size papers. It must also be Stapled and you must have : The fficial Cover Sheet Clearly Displaying Your U f C ID Number.

2 .You Must Type Your Full Name n The First Page f Your Assignment ; Not n Cover Sheet!!. Hand Written Names r Solutions Will Not Be Accepted. The Entire Assignment Will Be Returned Unmarked. 4. Make sure that you type the problem number say, 4,... etc. All problems must be done in rder. (C) Completed Maple Assignments Must Be Submitted To Your Tutorial Instructor. Any Assignments Brought to Lectures r ffices Will Not Be Marked. Note :Your Assignment Will not be Accepted If Instructions f Part (B) Were Not Strictly Followed. You Will Receive " ZER". (D) DUE DATE : At the end of your Tutorial : n Tuesday November 0 / 010. There are No Extensions!! (E) NEED HELP FR A MAPLE CMMAND? If you need help say for the Maple Command limit just type the following:? limit ; then press Enter! Good Luck To All.

3 1.General : Maple Help (a)to type a text such as Your Name, A comment, or an Explanation, click on the T on the menu bar on top. to resume typing Mathematics click on the [> on the menu bar on top. (b) Each mathematical command must starts with a cursor, namely the symbol > and must ends in a semi colon namely the symbol ; (c) Make sure that each pair of Parentheses : (, ) is opened and closed properly. (d) When typing mathematics, No Spaces Necessary. (e) At any time : To clear Maple s internal memory use the command restart : Simply type restart after the cursor > followed by the semi colon ; then press enter..the Basic perations : Addition ( + ), Subtraction ( ), Multiplication ( ), Division ( / ), and Powers ( ^ ). Now the function f = x 6x 4 must be typed in Maple as follows: 9 + 5x 4 > f : =( x^ 6 x 4)/(9 + 5 x^(/4)) ; then press enter. If your typing is correct you must get : f := x 6x x ( 4 )..Special Notations: (a) The Square Root Function: In Maple you may type a square root of an expression in two ways. For example 5 sin(x) may be typed as : Either ( 5 sin(x))^(1/), r sqrt( 5 sin(x)) (b) Exponential Functions: In Maple an exponential function such as e 1 x must be typed as (c) Logarithmic Functions : exp(1 x) In Maple a logarithmic function such as ln(x), Log 5 (x) must be typed respectively as : ln(x), log [5](x) Now if you press enter you get :

4 ln(x), ln(x) ln(5) ( the equivalent of log 5 (x). (d) Inverse Trigonometric Functions: An inverse trigonometric function such as say tan 1 ( x) must be typed as arctan(x). (e) The Number must be typed in Maple as Pi ( with Capital P)!! 4.The Basic Maple Commands: (a) The evalf command : This command is used to evaluate functions : An Example Find ln(4),correct to 5 decimal places evalf (ln(4),6) ; or evalf [6] (ln(4)) ; Now press enter you get : (b) The diff command: This command is used to find the derivative of any order of a function with respect to a specified variable. Here is an example : Find the derivative of g(x) = sin 1 ( 4x ) e 5x. > g(x) := arcsin( 4 x^) exp( sqrt( 5 x)); Now press enter you get : g(x) := arc sin( + 4x ( 5x ) ) e Let us name the derivative say h(x). To find h(x) we proceed as follows: > h(x) := diff ( g(x), x) ; Now if you press enter you get: Another example : Find h(x) := > diff(ln( x + ), x. x. x. x. x) : R > diff(ln( x + ), x$5) ; d5 y dx 5 if y = ln(x + ). 4x + 6x 4x 4 5 e( 5x ) 5x. (c) The int command : 768 (x + ) 5 The command is used to compute indefinite and definite integrals.

5 Here is an example : Find (1) x5 e x dx () For #1 proceed as follows : > y := x^5 exp(x^); int (y, x); Press enter you get: x x dx 1 x4 e (x) x e (x) + e (x ) No need to name integrand as y but it is recommended for beginners. Example # will be done faster!! For # proceed as follows : > int( 1 / sqrt(55 6 x x^), x =.. 1); Now press enter you get : (d) The fsolve command: 6 This command is used to solve equations in a specified variable with or without restrictions. Here are a couple of examples: (a) Find all critical points of the function y = x 4 0x 74x 8x (b) Find all critical points of the function y on the interval [ 1, ). For part (a) no restrictions given. f course we need to solve the equation y = 0. Proceed as follows: > y := x^4 0 x^ 74 x^ 8 x + 10 : z := diff ( y, x) : fsolve (z = 0, x) ; Now press enter to get : For part (b) replace the last statement by: > fsolve( z = 0, x = 1.. infinity); Now press enter to get : (e) The solve command: , , , The solve command solves one or more equations or inequalities for their unknowns. Here is an example : Find open interval where the function y = 4x 8x + 5 is increasing or decreasing. 1 x > y := (4x^ 8 x + 5)/(1 x) ; > z := diff(y, x); Indeed, y is increasing if z > 0, and is decreasing if z < 0. So we need to solve inequalities. > solve(z > 0);

6 y := 4x 8x x z := 8x 8 1 x + (4x 8x + 5) (1 x) Re al Range pen 1, pen 1, Re al Range pen 1, pen 7 6 Next, > solve(z < 0); Re al Range, pen 1, Re al Range pen 7 6, Another example : Find the exact solutions of the polynomial equation : 9x 4 15x 19x + x + 16 = 0 on the interval (1, ). > solve ( { 9 x^4 15 x^ 19 x^ + x + 16 = 0, x > 1}, x) ; x = , x = (f) The factor command: This command is used to compute the factorization of a polynomial function with integer, rational, irrational or complex coefficients. Here is an example : Factor each of the following functions with integer coefficients. (a) f (x) = x + x 5x + (b) g(x) = x 4 5x 10x 6 (c) h(x) = x 1x + 18x 8 x 5 x 4 x + x 4x + 4 For part (a) : > factor(x^ + x^ 5 x + ); For part (b) : > factor(x^4 5 x^ 10 x 6); For part (c) : (x + )(x 1) (x )(x + 1)(x + x + )

7 h := ( x^ 1 x^ + 18 x 8)/(x^5 x^4 x^ + x^ 4 x + 4) : factor(h); x 4 (x + )(x + 1) (g) The ( Convert / Partial Fraction) convert / parfrac command: The " convert " command with option " parfrac " is used to find the partial fraction decomposition of a proper or an improper rational function. Here is an example : Find the partial fraction decomposition of f (x) = x4 x + 10x 5x + 4. x + 4x > f := ( x^4 x^ + 10 x^ 5 x + 4)/(x^ + 4 x) : convert (f, parfrac, x) ; (h) The simplify command: This command is used to simplify your answers. Here is an example: x x + x 1 x + 4 Find the derivative of y = x sin 1 (x) cos 1 (x) + x 1 x 4 Proceed as follows: > y := (x^/) arcsin(x) + arccos(x)/4 + x sqrt(1 x^)/4 : z := diff(y, x) : simplify(z); R simplify (%); 7. Simplify your answer. Now press enter to get : xarc(sin(x) (i) The limit command : This command is used to compute limits. Here is an example : Determine lim x 0 Proceed as follows : sin(x) x x. > limit((sin(x) x)/x^, x = 0); Now press enter to get

8 Another Example: Determine Proceed as follows : > limit(x^ (1 cos(/x)), x = infinity); Now if you press enter you get : 1 6 lim x (1 cos( x ). x 9 (j) The implicitdiff command. This command is used to find the derivative dy of a function y = f(x) defined implicitly dx by a relation in x and y. Example1 : Assume that the relation sin(x + y) = y cos(x) defines y implicitly as a function of x. Find dy dx. Proceed as follows : > g := sin(x + y) = y^ cos(x) ; Der := implicitdiff(g, y, x); Now press enter to get : Der := cos(x + y) + y sin(x) cos(x + y) + y cos(x) Example : Find the slope of the tangent line to the curve xy = 14x + y 56 at the point (, ). Proceed as follows : > u := (x y)^(1/) = 14 x + y 56 : v := implicitdiff(u, y, x) : eval(v, {x =, y = ) : simplify(%); Now press enter to get : 0 Note also that the implicitdiff command is used to find the partial derivatives of functions of several variables defined implicitly by a system of equations ( one or more) : Here is an Example : Assume that the relation ln x + y = 6z + z y implicitly defines x as a differentiable z function of y and z. Compute x at the point P(4,, 1) on the graph of the function. y z > f := ln x + y z = 6z + z y : g := (f, x(y, z), y, z) : eval(g, {x = 4, y =, z = 1}) ; 14

9 Another Example : Assume that the system of equations : x = u uvw y = uv + v w 4 u + v + w 6 + x y = defines u, v, and w as functions of x and y near the point P where (u, v, w; x, y) = ( 1,, 1; 1, ). Find u y x at (x, y) = (1, ). Proceed as follows : > F := x = u^ u v w : G := y = u v + v^ w^4 : H := u + v + w^6 + x y = : A := implicitdiff({f, G, H}, {u, v, w}, u, y) : eval(a, {u = 1, v =, w = 1, x = 1, y = }) Now press enter to get : (k) The (Numerical Integration) ApproximateInt command : 9 This command is used to find numerical approximations to proper definite integrals using some of the most popular numerical integration methods such as but not limited to : Trapezoid Rule T n, Midpoint Rule M n and Si mpson Rule S n. Here is an example : Find an approximate value for 0 1 (1 + x ) / dx using (a) Trapezoid Rule (b) Midpoint Rule (c) Simpson s Rule for n = 0. Use 16 digits. Part (a) : > with (Student [Calculus 1]) : : simplify(%); > T(0) := eval f [16]( ApproximateInt ( (1 + x^)^(/), x = 0.. 1, method = trapezoid, partition = 0 )); Note : The exact value of the integral is : Hence the exact error is : T(0) := J = E T = J T(0) = Part (b) : > with (Student [Calculus 1]) : > M(0) := eval f [16]( ApproximateInt ( (1 + x^)^(/), x = 0.. 1, method = midpoint, partition = 0 )); M(0) :=

10 Note : The exact value of the integral is : Hence the exact error is : Part (c) : > with (Student [Calculus 1]) : J = E M = J M(0) = > S(0) := eval f [16]( ApproximateInt ( (1 + x^)^(/), x = 0.. 1, method = simpson, partition = 0 )); Note : The exact value of the integral is : Hence the exact error is : (l) The (two dimensional) plot command. S(0) := J = E S = J S(0) = This command is used to plot the graph of a function of a single variable. Example (a) sketch graph of y = x 7x +, x [ 4, 4]. Proceed as follows: > y := x^ 7 x + ; > plot (y, x = 4.. 4) ; Now press enter, your graph is displayed in the specified domain. There are other interesting features that you may want to explore your self. Just type?plot then press enter you get a page of help! Note: for graphing a piecewise function a certain procedure must be followed (depending on Maple version you have!!). To sketch a piecewise function a Procedure may be used as illustrated in the example below: Sketch the graph of y = x if < x < x + if x (x ) 5 sin[ ] if < x 4 > y := proc(x) if x < then x^ elif x >= and x < = then x + else 5*sin(Pi (x )/) end if end proc ; > plot (y,.. 4) ; Now press enter, your graph is displayed!!

11 (m) The ( dimensional) plotd command. This command is used to plot the graph of a function of a two independent variables. Example (a) sketch the graph of the surface z = x + 5y, x [, ], y [ 6, 6]. Proceed as follows : > z := x^ + 5 y^ ; plotd(z, x =.., y = 6.. 6, style = patch) ; Now press Enter, your graph is displayed in the specified domain. There are other interesting features that you may want to explore your self. (n) The diff command: Revisited!! This command is used to find the partial derivative ( of any order) of a function of several variables. as well as derivative of a vector valued function.here is an example : (a) Find 5 z x y if z = y sin(x + y ). (b) Calculate W = x u x (c) Find the velocity v(t) = dr(t) dt Part (a) : > diff(y^ sin( x + y^), y, y, x, x, x); R > diff(y^ sin( x + y^), y$, x$); For part (b) : + xy u x y + y u y if u(x, y) = x8 + 9x y 5 14xy 7 + y 8 15x + xy + 5y. if r(t) = (t, 4 cos(t), e 7t ), t R 16 cos(x + y ) + 144y sin(x + y ) + 7y 6 cos(x + y ) > u := (x^8 + 9x^ y^5 14 x y^7 + y^8)/(15 x^ + x y + 5 y^): W := x^ diff (u, x, x) + x y diff (u, x, y) + y^ diff (u, y, y), simplify(%) ; 0(x 8 + 9x y 5 14xy 7 + y 8 ) 15x + xy + 5y Part (c) > with(vectorcalculus) : v := diff(< t, 4 cos(t), e 7t >, t) ; Now press Enter to get v =< t, 1 sin(t), 7 e 7t > Note : To find the speed s = v, you may use the Norm Command : with(lineara lgebra) : s := Norm( v,, conjugate = false) ;

12 Now press Enter to get s = 4t sin (t) + 49 e 14t. (o) The (Arc Length ) ArcLength command. The command is used to find the Arc Length of a plane or space curve C given parametrically by the vector function : r(t) = (x(t), y(t)) or r(t) = x(t) i + y(t) j + z(t) k, a t b. Here is an example : Find the arc length of the space curve C given parametrically by the vector function : r(t) = t i + ln(t) j + t k, 1 t 5. > with(vectorcalculus) : ArcLength ( < t, ln(t), sqrt( t) >, t = 1.. 5) ; Now press Enter to get 4 + ln(5) (p) The( Double Integral) Doubleint command. The command is used to compute definite (or indefinite) double integrals. 1 y Here is an example : Evaluate 0 sin( y ) dx dy. 0 We proceed as follows: > with(student) : F := Doubleint(sin(Pi y^), x = 0.. y, y = 0.. 1) : value(f) ; (q) The( Triple Integral) Tripleint command The command is used to compute definite (or indefinite) triple integrals. Here is an example : Evaluate 0 We proceed as follows: 0 ( y)/ 0 6 y z x dx dz dy. > with(student) : L := Tripleint(x^, x = y z, z = 0.. ( y)/, y = 0.. ) : value(l) ; (r) The( Centre of Mass) CenterfMass command The CenterfMass command is used to find the coordinates of the Centre of Mass (or the Coordinates of the Centroid) of a solid having the shape a region E in R or of a thin lamina having the shape

13 of a Planar region D. Here is an Example : Find the coordinates of the centre of mass (x, y, z) of the solid having the shape of the region in the first octant (x 0, y 0, z 0) below the plane x + y + z = 6 if the density function is given by (x, y, z) = x yz. with(student[multivariatecalculus]) : CenterfMass(x^ y z, x = y, y = 0.., z = 0.. (6 x y)/) ; (s) The sum command : 9 4, 4, 1 The sum command can be used to find the exact sum of an infinite series. If there is no exact expression for the sum, then the sum command just return the series! However the " eval f " command may be able to approximate the sum of the series. Here is an example : Find the sum of (a) (ln()n (n)! n=0 For part (a) : (b) n n= n + 1 > sum ( (ln())^( n)/( n)!, n = 0.. infinity); 5 For part (b) : > S := sum ( n^/(^n + 1), n =.. infinity); Now press Enter to get n n= n + 1 We just got the series back! Hence sum command can not find exact sum. Let us instead find an approximate value of the sum S.

14 > eval f (S); (t) The taylor command & The convert / polynom command The taylor command compute the order n Taylor Series expansion of a function f about the point x = c. Note that the symbol at end, namely ((x c) n+1 ) is a reminder of the terms not shown, constituting of the rest of the series. Also : order n is optional. Note that for approximation purposes, we need the Taylor Polynomial of degree n about x = c. You can not just subtract the last term ((x c) n+1 )!!, you must use the convert / polynom command : Here is an example : (a) Find the Taylor series of f (x) = x + 1 about c = 4. (b) Find the Taylor Polynomial of degree of g (x) = arctan(x) about c = 1. (c) Find the Maclurin series of h(x) = sec(x) x For part (a) : > taylor (sqrt( x + 1), x = 4); + 1 (x 4) 1 54 (x 4) (x 4) (x 4) (x 4)5 + ((x 4) 6 ) For part (b) : Note : To get Polynomial of degree, you need to first find Taylor series of order + 1 = 4 > S := taylor( arctan(x), x = 1, 4) : P := convert( S, polynom ); (x 1) 1 4 (x 1) (x 1) + ((x 1) 4 ) (x 1) 1 4 (x 1) (x 1) For part (c) : Note : For Maclaurin Series c = 0. > taylor(sec(x) + 1/( 1 + x), x = 0); (u) The Directional Derivative command : x + x x x4 x 5 + ( x 6 ) The Directional Derivative command computes the directional derivative of a function f evaluated at a point P in the given direction v.

15 Here is an example : Find the directional derivative of T(x, y, z) = x + xyz + at the point P(, 1, ) in the direction of v= ( 1,, ). > with(student[multivariatecalculus]) : DirectionalDerivative (x^ + x y z +, [x, y, z] = [, 1, ], [ 1,, ]); (v) The mtaylor command : 17 The mtaylor command is used to find the Taylor s series for a function of several variables. This must first be read in to Maple with " readlib". As a special case we can use the mtaylor command to find the equation of the plane tangent to a surface at a given point ( which is a first order Taylor series). Here is an Example : Find the equation of the plane tangent to the surface z = x + y at (x, y) = (, ). > readlib(mtaylor) : z := mtaylor( x + y, [x =, y = ], ); z := x + 4y Refer to Maple Help Work Sheet For All Examples Presented In This Help Sheet. Good Luck To All.

16 MAPLE WRKSHEET #1 f:=(x^-6*x-4)/(9+5*x^(/4)); f := x K6 xk4 9C5 x /4 YUR NAME :Yousry Elsabrouty (1) # (-5*sin(x))^(1/); K5 sin x () sqrt(-5*sin(x)); K5 sin x () # exp(1-*x); e 1K x (4) ln(x); ln x (5) log[5](x); ln x ln 5 (6) #4 π; π (7) arctan(x); arctan x (8) #5 evalf(ln(4),6); (9) #6 # 7 evalf[6](ln(4)); g(x):=arcsin(-4*x^)-exp(-sqrt(-5*x)):h(x):=diff(g(x),x); diff ln xc, x, x, x, x, x ; h x :=K 4 x KC6 x K4 x 4 K xc 5 e K K5 x K5 x (10) (11) (1) 1

17 R, diff ln xc, x$5 ; 768 xc 5 (1) # 8 y:=x^5*exp(x^):int(y,x); 1 K x Cx 4 e x (14) #9 int(1/sqrt(55-6*x-x^),x=-..1); π 6 (15) #10 y:=x^4-0*x^-74*x^-8*x+10 :z:=diff(y,x): fsolve(z=0,x); K , K , (16) with the restriction given we get: #11 fsolve(z=0,x=-1..infinity); K , (17) yd 4 x K8 xc5 1K$x : zddiff y, x ; z := 8 xk8 1K x C 4 x K8 xc5 1K x (18) solve z 0 ; RealRange pen K 1, pen 1, RealRange pen 1, pen 7 6 (19) solve z! 0 ; RealRange KN, pen K 1, RealRange pen 7 6, N (0) #1 solve 9$x 4 K15$x K19$x C$xC16 = 0, x 1, x ; x = 1 C 1 17, x = 1 C 1 5 (1) factor x Cx K5 xc ; xc xk1 () #1 factor x 4 K5 x K10 xk6 ; xk xc1 x C xc ()

18 #14 h d x K1 x C18 xk8 x 5 Kx 4 K x C x K4 xc4 : factor h ; xk4 xc x C1 (4) #15 fd $x4 Kx C10$x K5$xC4 x C4$x : convert f, parfrac, x ; xk1c xk1 x C4 C 1 x (5) y:=(x^/)*arcsin(x)+arccos(x)/4+x*sqrt(1-x^)/4; y := 1 x arcsin x C 1 4 arccos x C x 1Kx 4 (6) z:=diff(y,x); z := x arcsin x C x K 1 C 1Kx 4 1Kx 4 1Kx 4 (7) simplify(z); x arcsin x (8) # 16 limit((sin(x)-x)/x^,x=0); K1 6 (9) limit(x^*(1-cos(/x)),x=infinity); 9 (0) #17 g:=sin(x+y)=y^*cos(x): Der:=implicitdiff(g,y,x); cos xcy Cy sin x Der := Kcos xcy C y cos x (1) u:=(x*y)^(1/)=14*x+y-56: v:=implicitdiff(u,y,x): eval(v,{x=,y=}): simplify(%); K 0 ()

19 #18 fd ln xcy z = 6 zc$z $y : g d implicitdiff f, x y, z, y, z : eval g, x = 4, y =K, z = 1 ; K14 # 19 F:=x=u^-u*v*w : G:=y=*u*v+*v^*w^4 : H:=u+v+w^6+*x-y= : A:=implicitdiff({F,G,H},{u,v,w},u,y): eval(a,{u=-1,v=,w=1,x=1,y=}); K 9 () (4) #0 with Student Calculus1 : Part (a) : T 0 d evalf 16 ApproximateInt 1Cx, x = 0..1, method = trapezoid, partition = 0 ; T 0 := (5) Part (b) M 0 d evalf 16 ApproximateInt 1Cx Part (c) : # 1 S 0 d evalf 16 ApproximateInt 1Cx, x = 0..1, method = midpoint, partition = 0 ; M 0 := , x = 0..1, method = simpson, partition = 0 ; S 0 := (6) (7) y:=*x^-7*x+; y := x K7 xc (8) plot(y,x=-4..4); 4

20 K4 K K K x K50 5

21 # y:=proc(x)if x< then x^ elif x>= and x<= then x+ else 5*sin(Pi*(x-) /)end if end proc; y := proc x if x! then x^ elif!= x and x!= then xc else 5 * sin 1 / *π* x K end proc end if (9) plot(y,-..4); 6

22 K K K

23 # z := x C5$ y ; plotd z, x =K.., y =K6..6, style = patch ; z := x C5 y #4 # 5 # 6 diff y sin xcy, y$, x$ ; K16 cos xcy C144 y sin xcy C7 y 6 cos xcy u d x8 C9$x $y 5 K14$x$y 7 C$y 8 15$x C$x$yC5$y : Wd x $diff u, x, x C$x$y$diff u, x, y Cy $diff u, y, y : simplify % ; 0 x 8 C9 x y 5 K14 x y 7 C y 8 15 x C x yc5 y with VectorCalculus : vd diff t, 4 cos t, e 7 t, t ; v := te x K1 sin t e y C7 e 7 t ln e e z (40) (41) (4) Which is the same as ( t,-1sin(t), 7 e 7 t 8

24 # 7 with LinearAlgebra : s d Norm v,, conjugate = false ; # 8 with VectorCalculus : ArcLength t, ln t, $sqrt $t, t = 1..5 ; 4Cln 5 #9 s := 4 t C144 sin t C49 e 7 t ln e #0 with(student):l:=tripleint(x^,x=0..6-*y-*z,z=0..*(-y)/,y=0..): value(l); # 1 with student : FdDoubleint sin π$ y, x = 0..y, y = 0..1 : value F ; π (4) (44) (45) (46) with Student MultivariateCalculus : CenterfMass x 6KxK$y $y$z, x = 0..6K$ y, y = 0.., z = , 4, 1 # sum((ln())^(*n)/(*n)!,n=0..infinity); 5 # ; (47) (48) S d sum n^ / ^nc1, n =..N ; N n S := >n = n C1 (49) evalf S ; (50) # 4 taylor sqrt * xc1, x = 4 ; C 1 xk4 K 1 xk4 C xk4 K xk4 4 C xk4 5 C xk4 6 (51) # 5 Pdtaylor arctan x, x = 1, 4 : Pdconvert P, polynom ; P := 1 4 πc 1 xk 1 K 1 xk1 C xk1 (5) 9

25 # 6 # 7 # 8 taylor sec x C 1 xc1, x = 0 ; KxC x Kx C 9 4 x4 Kx 5 C x 6 with Student MultivariateCalculus : DirectionalDerivative x Cx$y$z, x, y, z =, 1,K, K1,,K ; K 17 readlib mtaylor : zdmtaylor x Cy 1, x =K, y =K, ; z := K xc4 y (5) (54) (55) 10

26 MAPLE ASSIGNMENT FFICIAL CVER SHEET Due Date : November 0 / 010 (AT END F YUR TUTRIAL) U F C ID # D NT WRITE YUR NAME N CVER SHEET TYPE YUR NAME N THE TP RIGHT HAND CRNER F FIRST PAGE F YUR ASSIGNMENT WARNING CPYING ASSIGNMENT FRM ANTHER INDIVIDUAL R SHARING SME NE S ACCUNT IS STRICTLY PRHIBITED. CHEATING / PLAGIARISM IS AN EXTREMELY SERIUS ACADEMIC FFENCE. ALL CHEATING CASES WILL BE REPRTED To THE DEAN F YUR FACULTY I agree that this paper may be placed at the front of the classroom for pick-up. Please Circle : Yes or No.

27 DEPARTMENT F MATHEMATICS AND STATISTICS MATH 49 MAPLE CMPUTER ASSIGNMENT Due Date : November: 0 / 010 (At End f Your Tutorial) 1. Use the commands limit and simplify to calculate the limit of the sequence : 64n n n n Use the command taylor to find the Taylor s series of f (x) = ex 1 x about c = 1.. Use the command taylor to find the Maclaurin s series of g (x) = csc(x + ). 4. Use the command ArcLength to find the arc length of the space curve : r(t) = e t i + e t cos( 5 t) j + e t sin( 5 t) k, < t Use the commands diff and simplify to calculate w = x g x + xy g x y + y g y if g(x, y) = sin( y x ) x + y. 6. Use the command DirectionalDerivative to find the directional derivative of F(x, y, z) = ln(4x z + 6xy yz + 6x + 1) at the point P(1,, 4) in the direction of the vector a = (, 6, ). 7. Assume that the system of equations : xy + zu + v = x z + y uv = xu + yv xyz = 1 defines x, y, and z as functions of u and v near the point P where (x, y, z; u, v) = (1, 1, 1; 1, 1). Use the commands implicitdiff and eval to compute 8. Use the commands mtaylor to find an equation of the plane tangent to the surface z = y + tan(x + y + xy 7) at (x, y) = (, ). y v u at (u, v) = (1, 1).

Techniques of Integration

Techniques of Integration CHPTER 7 Techniques of Integration 7.. Substitution Integration, unlike differentiation, is more of an art-form than a collection of algorithms. Many problems in applied mathematics involve the integration

More information

MATH 132: CALCULUS II SYLLABUS

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

More information

Review Solutions MAT V1102. 1. (a) If u = 4 x, then du = dx. Hence, substitution implies 1. dx = du = 2 u + C = 2 4 x + C.

Review Solutions MAT V1102. 1. (a) If u = 4 x, then du = dx. Hence, substitution implies 1. dx = du = 2 u + C = 2 4 x + C. Review Solutions MAT V. (a) If u 4 x, then du dx. Hence, substitution implies dx du u + C 4 x + C. 4 x u (b) If u e t + e t, then du (e t e t )dt. Thus, by substitution, we have e t e t dt e t + e t u

More information

Review of Matlab for Differential Equations. Lia Vas

Review of Matlab for Differential Equations. Lia Vas Review of Matlab for Differential Equations Lia Vas 1. Basic arithmetic (Practice problems 1) 2. Solving equations with solve (Practice problems 2) 3. Representing functions 4. Graphics 5. Parametric Plots

More information

Calculus 1: Sample Questions, Final Exam, Solutions

Calculus 1: Sample Questions, Final Exam, Solutions Calculus : Sample Questions, Final Exam, Solutions. Short answer. Put your answer in the blank. NO PARTIAL CREDIT! (a) (b) (c) (d) (e) e 3 e Evaluate dx. Your answer should be in the x form of an integer.

More information

2 Integrating Both Sides

2 Integrating Both Sides 2 Integrating Both Sides So far, the only general method we have for solving differential equations involves equations of the form y = f(x), where f(x) is any function of x. The solution to such an equation

More information

Algebra. Exponents. Absolute Value. Simplify each of the following as much as possible. 2x y x + y y. xxx 3. x x x xx x. 1. Evaluate 5 and 123

Algebra. Exponents. Absolute Value. Simplify each of the following as much as possible. 2x y x + y y. xxx 3. x x x xx x. 1. Evaluate 5 and 123 Algebra Eponents Simplify each of the following as much as possible. 1 4 9 4 y + y y. 1 5. 1 5 4. y + y 4 5 6 5. + 1 4 9 10 1 7 9 0 Absolute Value Evaluate 5 and 1. Eliminate the absolute value bars from

More information

Homework # 3 Solutions

Homework # 3 Solutions Homework # 3 Solutions February, 200 Solution (2.3.5). Noting that and ( + 3 x) x 8 = + 3 x) by Equation (2.3.) x 8 x 8 = + 3 8 by Equations (2.3.7) and (2.3.0) =3 x 8 6x2 + x 3 ) = 2 + 6x 2 + x 3 x 8

More information

PRACTICE FINAL. Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 10cm.

PRACTICE FINAL. Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 10cm. PRACTICE FINAL Problem 1. Find the dimensions of the isosceles triangle with largest area that can be inscribed in a circle of radius 1cm. Solution. Let x be the distance between the center of the circle

More information

2008 AP Calculus AB Multiple Choice Exam

2008 AP Calculus AB Multiple Choice Exam 008 AP Multiple Choice Eam Name 008 AP Calculus AB Multiple Choice Eam Section No Calculator Active AP Calculus 008 Multiple Choice 008 AP Calculus AB Multiple Choice Eam Section Calculator Active AP Calculus

More information

Derive 5: The Easiest... Just Got Better!

Derive 5: The Easiest... Just Got Better! Liverpool John Moores University, 1-15 July 000 Derive 5: The Easiest... Just Got Better! Michel Beaudin École de Technologie Supérieure, Canada Email; mbeaudin@seg.etsmtl.ca 1. Introduction Engineering

More information

Practice Final Math 122 Spring 12 Instructor: Jeff Lang

Practice Final Math 122 Spring 12 Instructor: Jeff Lang Practice Final Math Spring Instructor: Jeff Lang. Find the limit of the sequence a n = ln (n 5) ln (3n + 8). A) ln ( ) 3 B) ln C) ln ( ) 3 D) does not exist. Find the limit of the sequence a n = (ln n)6

More information

Chapter 11. Techniques of Integration

Chapter 11. Techniques of Integration Chapter Techniques of Integration Chapter 6 introduced the integral. There it was defined numerically, as the limit of approximating Riemann sums. Evaluating integrals by applying this basic definition

More information

Differentiation and Integration

Differentiation and Integration This material is a supplement to Appendix G of Stewart. You should read the appendix, except the last section on complex exponentials, before this material. Differentiation and Integration Suppose we have

More information

Separable First Order Differential Equations

Separable First Order Differential Equations Separable First Order Differential Equations Form of Separable Equations which take the form = gx hy or These are differential equations = gxĥy, where gx is a continuous function of x and hy is a continuously

More information

L 2 : x = s + 1, y = s, z = 4s + 4. 3. Suppose that C has coordinates (x, y, z). Then from the vector equality AC = BD, one has

L 2 : x = s + 1, y = s, z = 4s + 4. 3. Suppose that C has coordinates (x, y, z). Then from the vector equality AC = BD, one has The line L through the points A and B is parallel to the vector AB = 3, 2, and has parametric equations x = 3t + 2, y = 2t +, z = t Therefore, the intersection point of the line with the plane should satisfy:

More information

Notes and questions to aid A-level Mathematics revision

Notes and questions to aid A-level Mathematics revision Notes and questions to aid A-level Mathematics revision Robert Bowles University College London October 4, 5 Introduction Introduction There are some students who find the first year s study at UCL and

More information

Taylor and Maclaurin Series

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

More information

Microeconomic Theory: Basic Math Concepts

Microeconomic Theory: Basic Math Concepts Microeconomic Theory: Basic Math Concepts Matt Van Essen University of Alabama Van Essen (U of A) Basic Math Concepts 1 / 66 Basic Math Concepts In this lecture we will review some basic mathematical concepts

More information

GRE Prep: Precalculus

GRE Prep: Precalculus GRE Prep: Precalculus Franklin H.J. Kenter 1 Introduction These are the notes for the Precalculus section for the GRE Prep session held at UCSD in August 2011. These notes are in no way intended to teach

More information

Higher Education Math Placement

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

More information

Math 120 Final Exam Practice Problems, Form: A

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

More information

ALGEBRA REVIEW LEARNING SKILLS CENTER. Exponents & Radicals

ALGEBRA REVIEW LEARNING SKILLS CENTER. Exponents & Radicals ALGEBRA REVIEW LEARNING SKILLS CENTER The "Review Series in Algebra" is taught at the beginning of each quarter by the staff of the Learning Skills Center at UC Davis. This workshop is intended to be an

More information

Section 12.6: Directional Derivatives and the Gradient Vector

Section 12.6: Directional Derivatives and the Gradient Vector Section 26: Directional Derivatives and the Gradient Vector Recall that if f is a differentiable function of x and y and z = f(x, y), then the partial derivatives f x (x, y) and f y (x, y) give the rate

More information

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

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

More information

The Fourth International DERIVE-TI92/89 Conference Liverpool, U.K., 12-15 July 2000. Derive 5: The Easiest... Just Got Better!

The Fourth International DERIVE-TI92/89 Conference Liverpool, U.K., 12-15 July 2000. Derive 5: The Easiest... Just Got Better! The Fourth International DERIVE-TI9/89 Conference Liverpool, U.K., -5 July 000 Derive 5: The Easiest... Just Got Better! Michel Beaudin École de technologie supérieure 00, rue Notre-Dame Ouest Montréal

More information

1.7. Partial Fractions. 1.7.1. Rational Functions and Partial Fractions. A rational function is a quotient of two polynomials: R(x) = P (x) Q(x).

1.7. Partial Fractions. 1.7.1. Rational Functions and Partial Fractions. A rational function is a quotient of two polynomials: R(x) = P (x) Q(x). .7. PRTIL FRCTIONS 3.7. Partial Fractions.7.. Rational Functions and Partial Fractions. rational function is a quotient of two polynomials: R(x) = P (x) Q(x). Here we discuss how to integrate rational

More information

y cos 3 x dx y cos 2 x cos x dx y 1 sin 2 x cos x dx

y cos 3 x dx y cos 2 x cos x dx y 1 sin 2 x cos x dx Trigonometric Integrals In this section we use trigonometric identities to integrate certain combinations of trigonometric functions. We start with powers of sine and cosine. EXAMPLE Evaluate cos 3 x dx.

More information

Getting Started with MasteringPhysics

Getting Started with MasteringPhysics Getting Started with MasteringPhysics POWERED BY MYCYBERTUTOR STUDENT EDITION MasteringPhysics helps you when you need it most when you are stuck working out a problem. Designed specifically for university

More information

FX 115 MS Training guide. FX 115 MS Calculator. Applicable activities. Quick Reference Guide (inside the calculator cover)

FX 115 MS Training guide. FX 115 MS Calculator. Applicable activities. Quick Reference Guide (inside the calculator cover) Tools FX 115 MS Calculator Handouts Other materials Applicable activities Quick Reference Guide (inside the calculator cover) Key Points/ Overview Advanced scientific calculator Two line display VPAM to

More information

6.1. The Exponential Function. Introduction. Prerequisites. Learning Outcomes. Learning Style

6.1. The Exponential Function. Introduction. Prerequisites. Learning Outcomes. Learning Style The Exponential Function 6.1 Introduction In this block we revisit the use of exponents. We consider how the expression a x is defined when a is a positive number and x is irrational. Previously we have

More information

Course outline, MA 113, Spring 2014 Part A, Functions and limits. 1.1 1.2 Functions, domain and ranges, A1.1-1.2-Review (9 problems)

Course outline, MA 113, Spring 2014 Part A, Functions and limits. 1.1 1.2 Functions, domain and ranges, A1.1-1.2-Review (9 problems) Course outline, MA 113, Spring 2014 Part A, Functions and limits 1.1 1.2 Functions, domain and ranges, A1.1-1.2-Review (9 problems) Functions, domain and range Domain and range of rational and algebraic

More information

x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1

x 2 + y 2 = 1 y 1 = x 2 + 2x y = x 2 + 2x + 1 Implicit Functions Defining Implicit Functions Up until now in this course, we have only talked about functions, which assign to every real number x in their domain exactly one real number f(x). The graphs

More information

36 CHAPTER 1. LIMITS AND CONTINUITY. Figure 1.17: At which points is f not continuous?

36 CHAPTER 1. LIMITS AND CONTINUITY. Figure 1.17: At which points is f not continuous? 36 CHAPTER 1. LIMITS AND CONTINUITY 1.3 Continuity Before Calculus became clearly de ned, continuity meant that one could draw the graph of a function without having to lift the pen and pencil. While this

More information

LAYOUT OF THE KEYBOARD

LAYOUT OF THE KEYBOARD Dr. Charles Hofmann, LaSalle hofmann@lasalle.edu Dr. Roseanne Hofmann, MCCC rhofman@mc3.edu ------------------------------------------------------------------------------------------------- DISPLAY CONTRAST

More information

Lecture 3 : The Natural Exponential Function: f(x) = exp(x) = e x. y = exp(x) if and only if x = ln(y)

Lecture 3 : The Natural Exponential Function: f(x) = exp(x) = e x. y = exp(x) if and only if x = ln(y) Lecture 3 : The Natural Exponential Function: f(x) = exp(x) = Last day, we saw that the function f(x) = ln x is one-to-one, with domain (, ) and range (, ). We can conclude that f(x) has an inverse function

More information

1 if 1 x 0 1 if 0 x 1

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

More information

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

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

More information

Getting Started with

Getting Started with Getting Started with MASTERINGPHYSICS IS POWERED BY MYCYBERTUTOR BY EFFECTIVE EDUCATIONAL TECHNOLOGIES STUDENT EDITION MasteringPhysics is the first Socratic tutoring system developed specifically for

More information

The Method of Partial Fractions Math 121 Calculus II Spring 2015

The Method of Partial Fractions Math 121 Calculus II Spring 2015 Rational functions. as The Method of Partial Fractions Math 11 Calculus II Spring 015 Recall that a rational function is a quotient of two polynomials such f(x) g(x) = 3x5 + x 3 + 16x x 60. The method

More information

Simplify the rational expression. Find all numbers that must be excluded from the domain of the simplified rational expression.

Simplify the rational expression. Find all numbers that must be excluded from the domain of the simplified rational expression. MAC 1105 Final Review Simplify the rational expression. Find all numbers that must be excluded from the domain of the simplified rational expression. 1) 8x 2-49x + 6 x - 6 A) 1, x 6 B) 8x - 1, x 6 x -

More information

Solutions to Homework 10

Solutions to Homework 10 Solutions to Homework 1 Section 7., exercise # 1 (b,d): (b) Compute the value of R f dv, where f(x, y) = y/x and R = [1, 3] [, 4]. Solution: Since f is continuous over R, f is integrable over R. Let x

More information

MATH BOOK OF PROBLEMS SERIES. New from Pearson Custom Publishing!

MATH BOOK OF PROBLEMS SERIES. New from Pearson Custom Publishing! MATH BOOK OF PROBLEMS SERIES New from Pearson Custom Publishing! The Math Book of Problems Series is a database of math problems for the following courses: Pre-algebra Algebra Pre-calculus Calculus Statistics

More information

SOLUTIONS. f x = 6x 2 6xy 24x, f y = 3x 2 6y. To find the critical points, we solve

SOLUTIONS. f x = 6x 2 6xy 24x, f y = 3x 2 6y. To find the critical points, we solve SOLUTIONS Problem. Find the critical points of the function f(x, y = 2x 3 3x 2 y 2x 2 3y 2 and determine their type i.e. local min/local max/saddle point. Are there any global min/max? Partial derivatives

More information

Inverse Functions and Logarithms

Inverse Functions and Logarithms Section 3. Inverse Functions and Logarithms 1 Kiryl Tsishchanka Inverse Functions and Logarithms DEFINITION: A function f is called a one-to-one function if it never takes on the same value twice; that

More information

MATH 381 HOMEWORK 2 SOLUTIONS

MATH 381 HOMEWORK 2 SOLUTIONS MATH 38 HOMEWORK SOLUTIONS Question (p.86 #8). If g(x)[e y e y ] is harmonic, g() =,g () =, find g(x). Let f(x, y) = g(x)[e y e y ].Then Since f(x, y) is harmonic, f + f = and we require x y f x = g (x)[e

More information

The Mathematics Diagnostic Test

The Mathematics Diagnostic Test The Mathematics iagnostic Test Mock Test and Further Information 010 In welcome week, students will be asked to sit a short test in order to determine the appropriate lecture course, tutorial group, whether

More information

AP Calculus BC Exam. The Calculus BC Exam. At a Glance. Section I. SECTION I: Multiple-Choice Questions. Instructions. About Guessing.

AP Calculus BC Exam. The Calculus BC Exam. At a Glance. Section I. SECTION I: Multiple-Choice Questions. Instructions. About Guessing. The Calculus BC Exam AP Calculus BC Exam SECTION I: Multiple-Choice Questions At a Glance Total Time 1 hour, 45 minutes Number of Questions 45 Percent of Total Grade 50% Writing Instrument Pencil required

More information

Solutions for Review Problems

Solutions for Review Problems olutions for Review Problems 1. Let be the triangle with vertices A (,, ), B (4,, 1) and C (,, 1). (a) Find the cosine of the angle BAC at vertex A. (b) Find the area of the triangle ABC. (c) Find a vector

More information

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

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

More information

What are the place values to the left of the decimal point and their associated powers of ten?

What are the place values to the left of the decimal point and their associated powers of ten? The verbal answers to all of the following questions should be memorized before completion of algebra. Answers that are not memorized will hinder your ability to succeed in geometry and algebra. (Everything

More information

14.1. Basic Concepts of Integration. Introduction. Prerequisites. Learning Outcomes. Learning Style

14.1. Basic Concepts of Integration. Introduction. Prerequisites. Learning Outcomes. Learning Style Basic Concepts of Integration 14.1 Introduction When a function f(x) is known we can differentiate it to obtain its derivative df. The reverse dx process is to obtain the function f(x) from knowledge of

More information

WORKBOOK. MATH 30. PRE-CALCULUS MATHEMATICS.

WORKBOOK. MATH 30. PRE-CALCULUS MATHEMATICS. WORKBOOK. MATH 30. PRE-CALCULUS MATHEMATICS. DEPARTMENT OF MATHEMATICS AND COMPUTER SCIENCE Contributor: U.N.Iyer Department of Mathematics and Computer Science, CP 315, Bronx Community College, University

More information

a. all of the above b. none of the above c. B, C, D, and F d. C, D, F e. C only f. C and F

a. all of the above b. none of the above c. B, C, D, and F d. C, D, F e. C only f. C and F FINAL REVIEW WORKSHEET COLLEGE ALGEBRA Chapter 1. 1. Given the following equations, which are functions? (A) y 2 = 1 x 2 (B) y = 9 (C) y = x 3 5x (D) 5x + 2y = 10 (E) y = ± 1 2x (F) y = 3 x + 5 a. all

More information

Review of Fundamental Mathematics

Review of Fundamental Mathematics Review of Fundamental Mathematics As explained in the Preface and in Chapter 1 of your textbook, managerial economics applies microeconomic theory to business decision making. The decision-making tools

More information

Algebra 2: Themes for the Big Final Exam

Algebra 2: Themes for the Big Final Exam Algebra : Themes for the Big Final Exam Final will cover the whole year, focusing on the big main ideas. Graphing: Overall: x and y intercepts, fct vs relation, fct vs inverse, x, y and origin symmetries,

More information

November 16, 2015. Interpolation, Extrapolation & Polynomial Approximation

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

More information

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

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

More information

Solutions to Practice Problems for Test 4

Solutions to Practice Problems for Test 4 olutions to Practice Problems for Test 4 1. Let be the line segmentfrom the point (, 1, 1) to the point (,, 3). Evaluate the line integral y ds. Answer: First, we parametrize the line segment from (, 1,

More information

MATH 425, PRACTICE FINAL EXAM SOLUTIONS.

MATH 425, PRACTICE FINAL EXAM SOLUTIONS. MATH 45, PRACTICE FINAL EXAM SOLUTIONS. Exercise. a Is the operator L defined on smooth functions of x, y by L u := u xx + cosu linear? b Does the answer change if we replace the operator L by the operator

More information

Solving Equations and Inequalities

Solving Equations and Inequalities Solving Equations and Inequalities Akram Kalantari Department of Mathematics Yazd University Akram Kalantari Solving Equations and Inequalities 1 / 22 1 Solving for x 2 Declaring Variables 3 Solving Equations

More information

MATH 221 FIRST SEMESTER CALCULUS. fall 2007

MATH 221 FIRST SEMESTER CALCULUS. fall 2007 MATH 22 FIRST SEMESTER CALCULUS fall 2007 Typeset:December, 2007 2 Math 22 st Semester Calculus Lecture notes version.0 (Fall 2007) This is a self contained set of lecture notes for Math 22. The notes

More information

Calculus. Contents. Paul Sutcliffe. Office: CM212a.

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

More information

The Derivative. Philippe B. Laval Kennesaw State University

The Derivative. Philippe B. Laval Kennesaw State University The Derivative Philippe B. Laval Kennesaw State University Abstract This handout is a summary of the material students should know regarding the definition and computation of the derivative 1 Definition

More information

Review Sheet for Test 1

Review Sheet for Test 1 Review Sheet for Test 1 Math 261-00 2 6 2004 These problems are provided to help you study. The presence of a problem on this handout does not imply that there will be a similar problem on the test. And

More information

Math 0980 Chapter Objectives. Chapter 1: Introduction to Algebra: The Integers.

Math 0980 Chapter Objectives. Chapter 1: Introduction to Algebra: The Integers. Math 0980 Chapter Objectives Chapter 1: Introduction to Algebra: The Integers. 1. Identify the place value of a digit. 2. Write a number in words or digits. 3. Write positive and negative numbers used

More information

Math Placement Test Practice Problems

Math Placement Test Practice Problems Math Placement Test Practice Problems The following problems cover material that is used on the math placement test to place students into Math 1111 College Algebra, Math 1113 Precalculus, and Math 2211

More information

TOPIC 4: DERIVATIVES

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

More information

Section 4.4. Using the Fundamental Theorem. Difference Equations to Differential Equations

Section 4.4. Using the Fundamental Theorem. Difference Equations to Differential Equations Difference Equations to Differential Equations Section 4.4 Using the Fundamental Theorem As we saw in Section 4.3, using the Fundamental Theorem of Integral Calculus reduces the problem of evaluating a

More information

AP Calculus BC 2006 Free-Response Questions

AP Calculus BC 2006 Free-Response Questions AP Calculus BC 2006 Free-Response Questions The College Board: Connecting Students to College Success The College Board is a not-for-profit membership association whose mission is to connect students to

More information

UNIT 1: ANALYTICAL METHODS FOR ENGINEERS

UNIT 1: ANALYTICAL METHODS FOR ENGINEERS UNIT : ANALYTICAL METHODS FOR ENGINEERS Unit code: A/60/40 QCF Level: 4 Credit value: 5 OUTCOME 3 - CALCULUS TUTORIAL DIFFERENTIATION 3 Be able to analyse and model engineering situations and solve problems

More information

y cos 3 x dx y cos 2 x cos x dx y 1 sin 2 x cos x dx y 1 u 2 du u 1 3u 3 C

y cos 3 x dx y cos 2 x cos x dx y 1 sin 2 x cos x dx y 1 u 2 du u 1 3u 3 C Trigonometric Integrals In this section we use trigonometric identities to integrate certain combinations of trigonometric functions. We start with powers of sine and cosine. EXAMPLE Evaluate cos 3 x dx.

More information

xn. x must be written as x^(2n) and NOT as x^2n. Writing x^2n means 4x y would be written as 4 x^2 y^3 or with the multiplication mark as 4*x^2*y^3.

xn. x must be written as x^(2n) and NOT as x^2n. Writing x^2n means 4x y would be written as 4 x^2 y^3 or with the multiplication mark as 4*x^2*y^3. Writing Mathematical Epressions in Plain Tet Eamples and Cautions Copyright 009 Sally J. Keely. Mathematical epressions can be typed online in a number of ways including plain tet, ASCII codes, HTML tags,

More information

f(x) = g(x), if x A h(x), if x B.

f(x) = g(x), if x A h(x), if x B. 1. Piecewise Functions By Bryan Carrillo, University of California, Riverside We can create more complicated functions by considering Piece-wise functions. Definition: Piecewise-function. A piecewise-function

More information

Integrals of Rational Functions

Integrals of Rational Functions Integrals of Rational Functions Scott R. Fulton Overview A rational function has the form where p and q are polynomials. For example, r(x) = p(x) q(x) f(x) = x2 3 x 4 + 3, g(t) = t6 + 4t 2 3, 7t 5 + 3t

More information

MATH 60 NOTEBOOK CERTIFICATIONS

MATH 60 NOTEBOOK CERTIFICATIONS MATH 60 NOTEBOOK CERTIFICATIONS Chapter #1: Integers and Real Numbers 1.1a 1.1b 1.2 1.3 1.4 1.8 Chapter #2: Algebraic Expressions, Linear Equations, and Applications 2.1a 2.1b 2.1c 2.2 2.3a 2.3b 2.4 2.5

More information

Techniques of Integration

Techniques of Integration 8 Techniques of Integration Over the next few sections we examine some techniques that are frequently successful when seeking antiderivatives of functions. Sometimes this is a simple problem, since it

More information

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

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

More information

MEMORANDUM. All students taking the CLC Math Placement Exam PLACEMENT INTO CALCULUS AND ANALYTIC GEOMETRY I, MTH 145:

MEMORANDUM. All students taking the CLC Math Placement Exam PLACEMENT INTO CALCULUS AND ANALYTIC GEOMETRY I, MTH 145: MEMORANDUM To: All students taking the CLC Math Placement Eam From: CLC Mathematics Department Subject: What to epect on the Placement Eam Date: April 0 Placement into MTH 45 Solutions This memo is an

More information

Graphic Designing with Transformed Functions

Graphic Designing with Transformed Functions Math Objectives Students will be able to identify a restricted domain interval and use function translations and dilations to choose and position a portion of the graph accurately in the plane to match

More information

Solutions Manual for How to Read and Do Proofs

Solutions Manual for How to Read and Do Proofs Solutions Manual for How to Read and Do Proofs An Introduction to Mathematical Thought Processes Sixth Edition Daniel Solow Department of Operations Weatherhead School of Management Case Western Reserve

More information

Estimated Pre Calculus Pacing Timeline

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

More information

Chapter 4 -- Decimals

Chapter 4 -- Decimals Chapter 4 -- Decimals $34.99 decimal notation ex. The cost of an object. ex. The balance of your bank account ex The amount owed ex. The tax on a purchase. Just like Whole Numbers Place Value - 1.23456789

More information

( 1)2 + 2 2 + 2 2 = 9 = 3 We would like to make the length 6. The only vectors in the same direction as v are those

( 1)2 + 2 2 + 2 2 = 9 = 3 We would like to make the length 6. The only vectors in the same direction as v are those 1.(6pts) Which of the following vectors has the same direction as v 1,, but has length 6? (a), 4, 4 (b),, (c) 4,, 4 (d), 4, 4 (e) 0, 6, 0 The length of v is given by ( 1) + + 9 3 We would like to make

More information

MATH 221 FIRST SEMESTER CALCULUS. fall 2009

MATH 221 FIRST SEMESTER CALCULUS. fall 2009 MATH 22 FIRST SEMESTER CALCULUS fall 2009 Typeset:June 8, 200 MATH 22 st SEMESTER CALCULUS LECTURE NOTES VERSION 2.0 (fall 2009) This is a self contained set of lecture notes for Math 22. The notes were

More information

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test

Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test Math Review for the Quantitative Reasoning Measure of the GRE revised General Test www.ets.org Overview This Math Review will familiarize you with the mathematical skills and concepts that are important

More information

Section 2.7 One-to-One Functions and Their Inverses

Section 2.7 One-to-One Functions and Their Inverses Section. One-to-One Functions and Their Inverses One-to-One Functions HORIZONTAL LINE TEST: A function is one-to-one if and only if no horizontal line intersects its graph more than once. EXAMPLES: 1.

More information

1 TRIGONOMETRY. 1.0 Introduction. 1.1 Sum and product formulae. Objectives

1 TRIGONOMETRY. 1.0 Introduction. 1.1 Sum and product formulae. Objectives TRIGONOMETRY Chapter Trigonometry Objectives After studying this chapter you should be able to handle with confidence a wide range of trigonometric identities; be able to express linear combinations of

More information

Mathematics Review for MS Finance Students

Mathematics Review for MS Finance Students Mathematics Review for MS Finance Students Anthony M. Marino Department of Finance and Business Economics Marshall School of Business Lecture 1: Introductory Material Sets The Real Number System Functions,

More information

Limits and Continuity

Limits and Continuity Math 20C Multivariable Calculus Lecture Limits and Continuity Slide Review of Limit. Side limits and squeeze theorem. Continuous functions of 2,3 variables. Review: Limits Slide 2 Definition Given a function

More information

Student Performance Q&A:

Student Performance Q&A: Student Performance Q&A: 2008 AP Calculus AB and Calculus BC Free-Response Questions The following comments on the 2008 free-response questions for AP Calculus AB and Calculus BC were written by the Chief

More information

5.3 SOLVING TRIGONOMETRIC EQUATIONS. Copyright Cengage Learning. All rights reserved.

5.3 SOLVING TRIGONOMETRIC EQUATIONS. Copyright Cengage Learning. All rights reserved. 5.3 SOLVING TRIGONOMETRIC EQUATIONS Copyright Cengage Learning. All rights reserved. What You Should Learn Use standard algebraic techniques to solve trigonometric equations. Solve trigonometric equations

More information

Georgia Department of Education Kathy Cox, State Superintendent of Schools 7/19/2005 All Rights Reserved 1

Georgia Department of Education Kathy Cox, State Superintendent of Schools 7/19/2005 All Rights Reserved 1 Accelerated Mathematics 3 This is a course in precalculus and statistics, designed to prepare students to take AB or BC Advanced Placement Calculus. It includes rational, circular trigonometric, and inverse

More information

Solutions to old Exam 1 problems

Solutions to old Exam 1 problems Solutions to old Exam 1 problems Hi students! I am putting this old version of my review for the first midterm review, place and time to be announced. Check for updates on the web site as to which sections

More information

AP Calculus AB 2006 Scoring Guidelines

AP Calculus AB 2006 Scoring Guidelines AP Calculus AB 006 Scoring Guidelines The College Board: Connecting Students to College Success The College Board is a not-for-profit membership association whose mission is to connect students to college

More information

Algebra I Vocabulary Cards

Algebra I Vocabulary Cards Algebra I Vocabulary Cards Table of Contents Expressions and Operations Natural Numbers Whole Numbers Integers Rational Numbers Irrational Numbers Real Numbers Absolute Value Order of Operations Expression

More information

Nonlinear Algebraic Equations. Lectures INF2320 p. 1/88

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

More information

Lies My Calculator and Computer Told Me

Lies My Calculator and Computer Told Me Lies My Calculator and Computer Told Me 2 LIES MY CALCULATOR AND COMPUTER TOLD ME Lies My Calculator and Computer Told Me See Section.4 for a discussion of graphing calculators and computers with graphing

More information