Vector Valued Functions

Size: px
Start display at page:

Download "Vector Valued Functions"

Transcription

1 Vector Valued Functions Introduction and Goals: The main goal of this lab will help you visualie the graphs of vector-valued functions and their tangent vectors. Moreover, we want you to begin to view tangent vectors as the three-dimensional equivalent to the slope of the tangent line from Calculus I. Recall that the slope of a tangent line told us the rate of change of one variable with respect to another. Specifically, if we were eamining a distance verses time graph then the slope of the tangent line gives us the instantaneous rate of change of distance with respect to time, that is, velocity. In three dimensions, if we are a particle moving along a curve then the tangent vector gives us the direction we are moving in and the length of that tangent vector gives us our speed in which we are moving along the curve. This lab also investigates the Maple commands needed to perform some of the calculations that we would do by hand, in class. Furthermore, we continue to build an arsenal of special commands to make using Maple a little easier. Before You Start: Make sure that you read and understand the mathematics from the corresponding sections in your tetbook. It would also help if you looked over the lab on Lines and Planes. Tetbook Correspondence: Stewart 5 th Edition: Stewart 5 th Edition Early Transcendentals: Thomas Calculus 0 th Edition Early Transcendentals: 0.5. Johnston & Mathews Calculus: 8.7. Maple Commands and Packages Used: Packages: plots, linalg, VectorCalculus. Commands: spacecurve, plot3d, display, solve, limit, diff, unapply, arrow, int, solve, fsolve, evalf, seq. User Defined Commands: plotvvf, plotvvf, plotvvftv, normplot, normplotresy, plotvvftv, curveint. History & Biographies: Maple Commands:

2 Defining and Plotting Space Curves: As usual, we will need the plots package and there are a few commands we are using that require the linalg package, so load them in with the with command. > with(plots): > with(linalg): We are also going to take a more sophisticated look at vectors. In previous labs we were using matrices to denote vectors. We mainly used single row matrices to denote the vector but we also looked at a single column matri representation of the vector. Using matrices for vectors is very natural since this is the way we represent them mathematically and it is a good way to get your feet wet with vectors and Maple but in general we want to do many things with vectors that we would not necessarily want to do with a matri. For eample, differentiate and integrate them componentwise as well as create vector-valued functions from them. Although you can do most vector manipulations with the matri representation some of the Maple commands we would need are a bit cumbersome. To make our Maple commands a little easier and load in several interesting function we will add the VectorCalculus package. > with(vectorcalculus): Warning, the assigned names <,> and < > now have a global binding Warning, these protected names have been redefined and unprotected: *, +,., Vector, diff, int, limit, series As you know from the tet, a space curve is given either parametrically as where f ( t), g ( t) and ( t) r ( t ) = f ( t), g( t), h( t) = y = = f ( t) g( t) h( t) h are functions of a single variable t, or in vector form as. When the VectorCalculus package is loaded we define a vector as a component list, as usual, but this time we use angled brackets. For eample, say we wanted to input the vector sin ( t ),cos( t), t, the Maple synta would be, > <sin(t),cos(t),sqrt(t)>; sin( t ) e + cos( t) e + y t e Note that the output is different than the angled bracket output from previous labs. When the VectorCalculus package is not loaded the angled brackets gave us a column vector, actually a single column matri. With the VectorCalculus package loaded the angled

3 brackets automatically see the epression as a vector, i.e. a vector data type in Maple. The e, e y and e stand for the vectors i, j and k respectively, that is,0, 0, 0,, 0 and 0,0,. We can define this as the vector valued function r ( t ) = sin( t),cos( t), t simply by placing the function definition synta at the beginning. That is, > r:=t-><sin(t),cos(t),sqrt(t)>; r := t VectorCalculus:-`<,>` ( sin( t ), cos( t ), t ) Note that the output is a bit strange. Maple seems to be calling a special function from the VectorCalculus package. If we evaluate r(t) we see that all is well. > r(t); sin( t ) e + cos( t) e + y t e Similarly, we can evaluate the vector-valued function using standard function notation. > r(pi); e + y π e > r(pi/); e + π e > r(0); e y Let s define three more vector functions so that we have something to work with for the s ( t) = cos t,sin t,sin t cos t, remainder of the lab. Define ( ) ( ) ( ) ( ) 3 q ( t ) = t cos( t), t sin( t), t and p ( t ) = t, t, t, > s:=t-><cos(t),sin(t),sin(t)^-cos(t)^>; s := t VectorCalculus:-`<,>` ( cos( t ), sin( t ), VectorCalculus:-`+` ( sin( t ), VectorCalculus:-`*` ( cos( t ), -) )) > s(t); cos( t ) e + sin( t) e + ( sin( t) cos( t) ) e y > q:=t-><t*cos(t),t*sin(t),t>;

4 q := t VectorCalculus:-`<,>` ( VectorCalculus:-`*` ( t, cos( t ) ), VectorCalculus:-`*` ( t, sin( t ) ), t) > q(t); t cos( t ) e + t sin( t ) e + t e y > p:=t-><t,t^,t^3>; p := t VectorCalculus:-`<,>` ( t, t, t 3 ) > p(t); t e + t e + t 3 e y The standard way to plot a vector-valued function is with the spacecurve command. Unfortunately, using the spacecurve command directly does not work because the spacecurve command is epecting a different form for the function. > spacecurve(r(t),t=0..0*pi,numpoints=500); Error, (in spacecurve) first argument must be array, list or set To appease the spacecurve command we need to strip the components from r and place them in matri form. This can be done with the seq command, as follows, > spacecurve([seq(r(t)[n],n=..3)],t=0..0*pi,numpoints=500, aes=boxed); Note that one option we included in this command was numpoints, recall that numpoints is the number of points plotted to draw the graph. It is common with space curves that the default number of points is too small and the curve looks polygonal. Now this command is quite long and we really don t want to type it in repeatedly, of even copy and past it repeatedly, so we are going to define a function that will make graphing space curves quick and easy. In the command above there are four things of interest, the

5 function r (t), the lower bound for t, the upper bound for t and the number of points. When we create the new function these four items will be represented by variables. > plotvvf:=(r,lb,ub,pts)->spacecurve([seq(r(t)[n],n=..3)], t=lb..ub,numpoints=pts); plotvvf := ( r, lb, ub, pts ) spacecurve ([ seq ( r( t ), n =.. 3 )], t = lb.. ub, numpoints = pts ) n > plotvvf(r,0,0*pi,500); which is the same image as above. The nifty thing with the command we just defined is that we can substitute any vector-valued function into the command and get a graph. > plotvvf(s,0,*pi,500); > plotvvf(q,-0*pi,0*pi,500);

6 > plotvvf(p,0,,500); We can also combine the space curve images together using the display command. > display(plotvvf(s,0,*pi,500),plotvvf(q,-pi,pi,500));

7 Note that in the above image we selected : and the boed aes options from the toolbar after the graph was drawn. If you want to add more options to your plotting command simply place a variable name in the list of variables and place the corresponding options in the spacecurve command. For eample, the following adds color and aes type to the list of parameters. > plotvvf:=(r,lb,ub,pts,col,as)->spacecurve([seq(r(t)[n], n=..3)],t=lb..ub,numpoints=pts,color=col,aes=as); plotvvf := ( r, lb, ub, pts, col, as ) spacecurve ( [ seq ( r( t), n =.. 3 ) ], t = lb.. ub, n numpoints = pts, color = col, aes = as ) > plotvvf(s,-pi,pi,500,black,boxed); > plotvvf(s,-pi,pi,00,red,normal);

8 Limits of Vector Valued Functions: Finding limits of vector-valued functions in Maple is as easy as finding limits of real valued function in Maple. Use the limit command and give the command the vectorvalued function, the limit point and an optional direction. To see some of the interesting h ( t) = t,tan t, ln t, types of output let s use a slightly nastier function. Define ( ) ( ) > h:=t-></t,tan(t),ln(t)>; h := t VectorCalculus:-`<,>` VectorCalculus:-`*`,, tan( t ), ln( t ) t > h(t); t e + tan( t ) e + y ln( t) e If we evaluate the limit of this function at a point where the function is continuous we see that Maple simply evaluates the function at the limit point, as it should. > limit(h(t),t=5); > limit(h(t),t=pi); 5 e + tan( 5 ) e + y π e + ln( 5 ) ln( π) e e If we evaluate the limit at 0 we see that the component is undefined, the y component is 0 and the component is negative infinity, as we would epect. Although the limit vector

9 itself is of little use it does inform us to the limit of each of the components of the function, which is really all we can epect. > limit(h(t),t=0); undefined e e If we further find the left and right hand limits of the function we get the corresponding outputs. > limit(h(t),t=0,left); > limit(h(t),t=0,right); e e e e The limits at π give similar output. > limit(h(t),t=pi/); + + π e undefined e ( ln( ) + ln( π) ) e y > limit(h(t),t=pi/,left); + + π e e ( ln( ) + ln( π) ) e y > limit(h(t),t=pi/,right); + π e e ( ln( ) + ln( π) ) e y Finally, as with real valued functions we can also find limits at infinity. > limit(h(t),t=infinity); undefined e + e y Derivatives of Vector Valued Functions and Tangent Vectors: Differentiation of vector-valued functions can be done with the diff command just like real valued functions. In fact, the same options apply; the only difference is that the output is in vector form. > diff(r(t),t);

10 cos( t ) e sin( t) e + y t e > diff(s(t),t); > diff(p(t),t); sin( t ) e + cos( t ) e + y e + t e + 3 t e y 4 sin( t ) cos( t) e > diff(p(t),t,t); e + 6 t e y > diff(p(t),t,t,t); 6 e > diff(p(t),t,t,t,t); 0 e > diff(p(t),t$3); 6 e > diff(p(t),t$4); 0 e Frequently we wish to define a function that is the derivative of another function. To do this we invoke the unapply command on the derivative. For eample, to define the function dr as the first derivative of r we use the command, > dr:=unapply(diff(r(t),t),t); dr := t rtable.. 3, { ( ) = cos( t ), ( ) = sin( t ), ( 3 ) = }, datatype = anything, t subtype = Vector column, storage = rectangular, order = Fortran_order, attributes = [ coords = cartesian ] > dr(t); cos( t ) e sin( t) e + y t e Now to find the derivative, which is the tangent vector, at any value of the parameter t we simply evaluate the derivative function at the desired value. For eample, the following are the tangent vectors to r at, π and 0 respectively.

11 > dr(); > dr(pi); cos( ) e sin( ) e + y e + π e e > dr(0); Error, (in dr) numeric eception: division by ero With the plotvvf command we created above and the arrow command we can create some very informative graphs of space curves. Recall that the command arrow(u,v); draws the vector v beginning at the point u. So if we let u be the point on the curve corresponding to a particular parameter value and v be the tangent vector at the same value for the parameter we can graph the tangent vector directly on the curve. For eample, to plot the curve r along with its tangent vector at t = π we would use the command, > display(plotvvf(r,0,0*pi,500,black,boed), arrow(r(pi),dr(pi),shape=arrow,color=black)); 3π Similarly, to plot the curve r along with its tangent vector at t = we would use the command, > display(plotvvf(r,0,0*pi,500,black,boed), arrow(r(3*pi/),dr(3*pi/),shape=arrow,color=black));

12 If we go a little further and use the seq function on the arrow command we can plot a series of tangent vectors along the curve. For eample, consider the following command, > display(plotvvf(r,0,0*pi,500,black,boed), seq(arrow(r(0*pi/40*n),dr(0*pi/40*n),shape=arrow, color=black),n=..40)); This is a long command but it is actually easy to understand if we break it down into manageable chunks. First the plotvvf portion plotvvf(r,0,0*pi,500,black,boed) simply plots the curve r from 0 to 0 π using 500 points in the plot, drawing the curve in black and putting boed aes around it. The seq portion is a little more involved, seq(arrow(r(0*pi/40*n),dr(0*pi/40*n), shape=arrow,color=black),n=..40)

13 In the arrow portion, the part r(0*pi/40*n),dr(0*pi/40*n) plots the tangent vector at 0*Pi/40*n for each n from to 40 starting at the point r(0*pi/40*n). That is, we are drawing 40 tangent vectors on the curve at t values of π π 4, 3 π π 5 π, 3 π 7 π 4,, π 9 π 5 π π 4, 3 π 3 π 7 π, 5 π 4 π 7 π 4,, 9 π 4,, 4,, 4,, 4,, 4,, 9 π 5 π π π 3 π 6 π 5 π 3 π 7 π 7 π 9 π 5 π 3 π,,,,,,,,,,,,, 8 π, π 7 π 35 π 9 π 37 π 9 π 39 π,,,,,,, 0 π As you can see from the above image this plot shows us the tangent vector structure along the curve. Hence it tells us the direction and magnitude of the rate of change, with respect to t, along the curve. So if we think about t as time these vectors are showing us the direction and speed of a particle that is traveling along the curve. Since this type of graph can be really useful we would like to streamline the command a little. It would be nice if we could create a command like plotvvf where we simply put in the vector-valued function and some other options and Maple would create the image. We will do this in two steps. First note that we can replace dr by unapply(diff(r(t),t),t), this will relieve us from having to find the derivative before we do the plot. Note that the following command produces the same image but dr is never used. > display(plotvvf(r,0,0*pi,500,black,boed), seq(arrow(r(0*pi/40*n),unapply(diff(r(t),t),t)(0*pi/40*n),shape=arrow,color=black),n=..40));

14 Now we are ready to create the command, we will call it plotvvftv for plot vector-valued function and tangent vectors. In the definition below note that r, lb, ub, pts, col and as are the same as in the plotvvf command we created earlier. We have added the parameters evf, nlb, nub, shp and vcol. Parameter evf nlb nub shp vcol Purpose This is the point evaluation function. That is, it is the formula, in terms of n, that is used to find the values of t where the tangent vector will be drawn. The formula must be in terms of n. The values that n takes on are all the integer values between nlb and nub. The lower bound for the integer range of n. The value must be an integer. The upper bound for the integer range of n. The value must be an integer. The shape of the arrows, harpoon, arrow, double_arrow, or cylindrical_arrow The color of the vectors. In the actual command you will notice that we have replaced plotvvf with the definition of plotvvf. This is so that we do not need to define the command plotvvf before defining this one. We also replaced all of the option values with their respective parameter names. Take some time to read through this command definition and really understand it. Maple is a system where if you take the time to create specialied functions like plotvvf and plotvvftv you can save yourself much more time in editing previous commands. > plotvvftv:=(r,lb,ub,pts,col,as,evf,nlb,nub,shp,vcol)-> display(spacecurve([seq(r(t)[n],n=..3)],t=lb..ub, numpoints=pts,color=col,aes=as),seq(arrow(r(evf), unapply(diff(r(t),t),t)(evf),shape=shp,color=vcol), n=nlb..nub)); plotvvftv := ( r, lb, ub, pts, col, as, evf, nlb, nub, shp, vcol ) display( spacecurve( [ seq ( r( t ), n =.. 3 ) ], t = lb.. ub, numpoints = pts, color = col, aes = as ), seq( n arrow ( r( evf ), unapply ( VectorCalculus:-diff ( r( t ), t ), t )( evf ), shape = shp, color = vcol ), n = nlb.. nub )) Now to create the sane plot as before we only need to input the following command. Take the time to match up the inputs below with the command definition and the last display command that produced this graph. > plotvvftv(r,0,0*pi,00,black,boed,0*pi/40*n,,40, arrow,black);

15 A few quick alterations to the calling command allow us to generate similar graphs of the other functions. > plotvvftv(s,0,*pi,00,black,boed,*pi/40*n,,40,arrow, black); > plotvvftv(q,-0*pi,0*pi,500,red,boed,-0*pi+0*pi/00*n, 0,00,arrow,black);

16 Zooming in on the previous image gives. > plotvvftv(q,0,3,50,blue,normal,3/0*n,0,0,arrow,black); > plotvvftv(p,0,3,50,blue,normal,3/0*n,0,0,arrow,black);

17 Integrating Vector Valued Functions: As with differentiation, integration of vector-valued functions is the same as with real valued functions. You can do both definite and indefinite integrals using the int command. For eample, the indefinite integral of p is, > int(p(t),t); t e t e y t 4 4 e and the definite integral from 0 to of p is, > int(p(t),t=0..); e e y 4 e Similarly, > int(q(t),t); ( cos( t) + t sin( t )) e + ( sin( t ) t cos( t) ) e + y t e > int(r(t),t); cos( t ) e + sin( t) e + y t ( 3/ ) 3 e

18 Also, as with differentiation, we can create functions of both definite and indefinite integrals by using the unapply command. For eample, the following command takes the indefinite integral of r and sets it to the function name ir. > ir:=unapply(int(r(t),t),t); ir := t rtable.. 3, { ( ) = cos( t ), ( ) = sin( t ), ( 3 ) = } 3 t( 3/ ), datatype = anything, subtype = Vector column, storage = rectangular, order = Fortran_order, attributes = [ coords = cartesian ] > ir(t); cos( t ) e + sin( t) e + y t ( 3/ ) 3 e Similarly, the following command takes the definite integral of r from a to b and sets it to the function name ir. > ir:=unapply(int(r(t),t=a..b),a,b); ir := ( a, b ) rtable.. 3, {( ) = cos( b ) + cos( a ), ( ) = sin( b ) sin( a ), ( 3 ) = 3/ } 3 a( / ) 3 b( ) datatype = anything, subtype = Vector column, storage = rectangular, order = Fortran_order, attributes = [ coords = cartesian ] > ir(a,b); ( cos( b ) + cos( a )) e + ( sin( b ) sin( a )) e + y b ( 3/ ) 3 a ( 3/ ) 3 3, e So finding the definite integral of r from 0 to can be done by, > ir(0,); ( cos( ) + ) e + sin( ) e + y 3 e Solving Equations & Finding Curve Intersections: Finding the point or points of intersection of two vector-valued functions can be difficult to do by hand and in fact even when using Maple the process can be less than straightforward. We will look at three eamples of increasing degrees of difficulty. An

19 easy eample is to find the points of intersection between the curves k ( t) = t, t t, t t and j ( t) = t, t t, t t. If we define and plot both of these curves together we see that there appears to be two points of intersection. > k:=t-><t^,t^3-t,t^4-t>; k := t VectorCalculus:-`<,>`( t, VectorCalculus:-`+` ( t 3, VectorCalculus:-`*` ( t, -)), VectorCalculus:-`+` ( t 4, VectorCalculus:-`*` ( t, -)) ) > j:=t-><t,t^-t,t^3-t>; j := t VectorCalculus:-`<,>`( t, VectorCalculus:-`+` ( t, VectorCalculus:-`*` ( t, -)), VectorCalculus:-`+` ( t 3, VectorCalculus:-`*` ( t, -) )) > display(plotvvf(k,-.5,.,00,red,boed),plotvvf(j,-.5,.,00,black,boed)); To find the values of t that correspond to the points of intersection we need to set the two curves, component by component, equal to each other and solve the resulting system of equations. To put the system in the correct format for the solve command we need to etract the first component of the first curve and set it equal to the first component of the second curve and then do the same for the other two components. Recall that to etract a component from a vector we simply need to place [n] after the vector, where n is the component to be etracted. So the solve command we need is > solve({k(t)[]=j(u)[],k(t)[]=j(u)[],k(t)[3]=j(u)[3]}, {t,u}); { u = 0, t = 0 }, { t =, u = } which can be streamlined by using the seq function to generate the list of equations. That is, > solve({seq(k(t)[n]=j(u)[n],n=..3)},{t,u}); { u = 0, t = 0 }, { t =, u = }

20 Checking the solutions shows that Maple has found the two points of intersection. > k(0); 0 e > j(0); 0 e > k(); e > j(); e Let s move to a moderately more difficult problem. Find the points of intersection s ( t) = cos t,sin t,sin t cos t (defined before) and between the curves ( ) ( ) ( ) ( ) h ( t ) = sin( t),cos( t), to be four points of intersection.. If we plot both of these curves together we see that there appears > h:=t-><sin(t),cos(t),/>; h := t VectorCalculus:-`<,>` sin( t ), cos( t ), VectorCalculus:-`*`, > display(plotvvf(h,0,*pi,500,black,boed), plotvvf(s,0,*pi,500,black,boed)); Setting up and evaluating the solve command for these curves gives a long and incomprehensible answer. Applying the evalf function to this result gives two solutions (note that the parameter values between the two curves is different.). Checking these

21 shows that that are legitimate solutions, with a minor bit of round-off error, which we will ignore. > solve({seq(h(t)[n]=s(u)[n],n=..3)},{t,u}); { t = arctan (, RootOf ( _Z 3, label = _L)), u = arctan ( RootOf ( _Z 3, label = _L)) }, { t = arctan ( RootOf (_Z 3, label = _L )) signum ( RootOf ( _Z π 3, label = _L)) π +, u = arctan ( RootOf ( _Z 3, label = _L) ) + signum ( RootOf ( _Z 3, label = _L)) π} > evalf(%); { t = , u = }, { u = , t = } > h( ); e e + y e > s( ); e e e y > h( ); ( ) e e + y e > s( ); ( ) e e e y So what has happened to the other two points of intersection? Note that the points of intersection that Maple found are those that have a positive y component. From our knowledge of symmetry we know that the other two points of intersection will be when the y component is negative. Fortunately, we can use Maple s solve command on one of the equations to find the other two solutions. If we solve the component equation we get, > solve(sin(t)^-cos(t)^=/); π,,, 3 π π 3 3 π 3 Note that the two numeric values for the parameter of the s curve that Maple gave us π π were the 3 and 3. If we evaluate s at the other two values we get > s(-/3*pi); e 3 + e y e

22 > s(-/3*pi); - + e 3 e y e which have the same and coordinates as the first two points but the y coordinate is negative. The only remaining question is what are the corresponding values for the parameter for the h curve? If we set the components equal to each other while π π substituting the 3 and 3 in for the s curve we obtain the two values that Maple found. > solve(sin(u)=cos(-pi/3)); π 6 > solve(sin(u)=cos(-*pi/3)); π 6 π π If we set the y components equal to each other while substituting the 3 and 3 in for 5π the s curve we get the value 3, which checks. > solve(cos(u)=sin(-pi/3)); > solve(cos(u)=sin(-*pi/3)); 5 π 6 5 π 6 > h(5/6*pi); e 3 + e y e From the graph and our knowledge of symmetry we know that the remaining parameter 7π value is 3 > h(7/6*pi); - + e 3 e y e Although Maple was a powerful tool in aiding the solution to this last problem it did not just hand us the solution. Recall the adage that says not only do you need the right tool for the right job but you also need to know how to use it.

23 We will do one final eample of solving for space curve intersections. Consider the two curves r ( t ) = sin( t),cos( t), t and s ( t) = cos( t),sin( t),sin ( t) cos ( t) defined. If we graph them we get the following image. > display(plotvvf(r,0,*pi,500,black,boed), plotvvf(s,0,*pi,500,black,boed));, both previously If we rotate the image around we see that there appears to be only one point of intersection between the two curves. You may want to increase the range of the parameter bounds in order to convince yourself that there will be only one point of intersection. Using the solve and evalf commands we get the following result. > solve({seq(r(t)[n]=s(u)[n],n=..3)},{t,u}); 4 { t = RootOf (_Z 4 sin ( arccos ( sin (_Z)) ) + 4 sin ( arccos ( sin (_Z) )) ) u = arccos ( RootOf ( _Z 4 sin ( arccos ( sin (_Z) )) + 4 sin ( arccos ( sin ( _Z))) ) )} > evalf(%); { u = I, t = I } 4, As you can see, the numeric approimations to the parameter values have a substantial I component, one that cannot be ignored because of round-off error. Now if we did not see the image we would be inclined to think that the two curves did not intersect. Since we know that they do we need to use another method to find the point of intersection. Recall that the fsolve command finds real solutions to equations and systems of equations using numeric methods but simply changing solve to fsolve gives us an error since the fsolve command needs to have the same number of variables as it does equations. When solving for the parameters of two curves in three dimensions we have three equations and only two variables.

24 > fsolve({seq(r(t)[n]=s(u)[n],n=..3)},{t,u}); Error, (in fsolve) number of equations, 3, does not match number of variables, One trick to get around this is to add a third, bogus, variable to the list of variables. Be careful that the variable you add has not already been defined as some value or epression. We will add a to the list. > fsolve({seq(r(t)[n]=s(u)[n],n=..3)},{t,u,}); { = , t = , u = } Checking the t and u values, ignoring, gives us the same point with a little round-off error. > r( ); e e e y > s( ); e e e y Eercises: t t. The following eercises concern the vector-valued function ( t) = e, tan ( t), t 3 b ( t) = e, tan t, t. t t a. Define the vector-valued function ( ) 3 b. b. Find the tangent vector function of b and define it as tb. c. Find the limit of the norm of the tangent vector function as t approaches infinity. d. If t represents time what does the answer in part c represent? e. If you are a bug that is walking along the curve, in step with t, describe your journey from t = 5 to t =. f. Plot the curve from t = 5 to t = 0 and on another graph plot the norm of the tangent vector function also from t = 5 to t = 0. Again, thinking of t as time relate the norm graph to the curve s graph in terms of position, direction and speed.. The following eercises deal with plots of the norm of the tangent vector function. a. Create a command called normplot that takes thee inputs, the curve, a lower bound for t and an upper bound for t and constructs the graph of the norm of the tangent vector function. That is, to plot the norm of the tangent vector function of a vector-valued function r from t = 5 to t = 0 the command would be, > normplot(r,5,0);

25 b. Create a command called normplotresy that takes 5 inputs, the curve, a lower bound for t and an upper bound for t, the lower bound for y and the upper bound for y and constructs the graph of the norm of the tangent vector function with the range restricted to the lower and upper bounds for y. That is, to plot the norm of the tangent vector function of a vector-valued function r from t = 5 to t = 0 and a restricted range from to 7 the command would be, > normplotresy(r,5,0,,7); c. Use these new commands to graph the tangent vector norm plots of the following functions. In each case give a detailed description the motion of a bug along each of the curves. i. r ( t ) = sin( t),cos( t), t ii. s ( t) = cos( t),sin( t),sin ( t) cos ( t) iii. k ( t) = 3 t, t t, t 4 t iv. h ( t) = t,tan( t), ln( t) v. q ( t ) = t cos( t), t sin( t), t vi. p 3 ( t ) = t, t, t 3. Find the angle of intersection (smallest angle) between the curves k ( t) = t, t t, t t and j ( t) = t, t t, t t at each of the intersections points. Plot an image of the curves and tangent vectors used to determine the intersection angle for each point of intersection. 4. Find the angle of intersection (smallest angle) between the curves r ( t ) = sin( t),cos( t), t and ( t) = cos( t),sin( t),sin ( t) cos ( t) s at each of the intersections points. Plot an image of the curves and tangent vectors used to determine the intersection angle for each point of intersection. 5. Finding the points of intersection. a. Define and plot the following two curves, plot them in different colors. c ( t) = sin( t),cos( 5t),cos( 3t) and d ( t) = cos( t),sin( 3t ),sin( 5t) b. From the graph, how many point of intersection are there? c. Define a command curveint that takes two vector-valued functions as input and does the solve command on them. So to find the points of intersection of the two curves above you simply need to type, > curveint(c,d); d. Use this new command to help find all the points of intersection between c and d. 6. Find all of the points of intersection between the two curves,

26 ( 4 + sin( 0t) ) cos( t),( 4 sin( 0t) ) sin( t),cos( t) f ( t) = + 0 and g ( t) = 4sin t,4cos t,sin 5t ( ) ( ) ( ) 7. Consider the two curves ( t) = sin( t),cos( t), sin( nt) r ( t) cos( t),sin( t), cos( nt) = r and, where n is a positive integer. Is there a relationship between the number of points of intersection of the curves and the value of n? If so, what is it? r ( t) sin t,cos t, sin nt and 8. Consider the two curves = ( ) ( ) ( ) r ( t) cos( t),sin( t), cos( mt) =, where n and m are positive integers. Is there a relationship between the number of points of intersection of the curves and the values of n and m? If so, what is it? 9. Create a new command called plotvvftv that does the same thing as plotvvftv ecept that instead of inputting evf, nlb, and nub you simply input a single number nv. The command should place nv evenly spaced tangent vectors along the plot of the curve starting at the beginning point of the curve and ending at the last point on the curve. So the beginning of the plotvvftv command should be, > plotvvftv:=(r,lb,ub,pts,col,as,nv,shp,vcol)-> 0. Use the command in the last eercise to plot the following curves along with a set of 30 evenly spaced tangent vectors along the portion of the curve that is being plotted. In each case, describe the motion of a particle moving along the curve considering t as time. Note that you may also need the normplot command to help describe the motion. 3 4 a. k ( t) = t, t t, t t b. h ( t) = t,tan( t), ln( t) c. c ( t) = sin( t),cos( 5t),cos( 3t) d. d ( t) = cos( t),sin( 3t ),sin( 5t) e. f ( t) = ( 4 + sin( 0t) ) cos( t),( 4 + sin( 0t) ) sin( t),cos( 0t) f. g ( t) = 4sin( t),4cos( t),sin( 5t)

Vectors and Vector Arithmetic

Vectors and Vector Arithmetic Vectors and Vector Arithmetic Introduction and Goals: The purpose of this lab is to become familiar with the syntax of Maple commands for manipulating and graphing vectors. It will introduce you to basic

More information

Maximums and Minimums of Functions of Two Variables

Maximums and Minimums of Functions of Two Variables Maximums and Minimums of Functions of Two Variables Introduction and Goals: The goal of this lab is to become familiar with the Maple commands necessary to find maxima and minima of surfaces over a region.

More information

Double Integrals using Riemann Sums

Double Integrals using Riemann Sums Double Integrals using Riemann Sums Introduction and Goals: The goal of this lab is to become more familiar with Riemann sums both as a definition for the double integral and as an approximation method

More information

Math Exam 1a. c) lim tan( 3x. 2) Calculate the derivatives of the following. DON'T SIMPLIFY! d) s = t t 3t

Math Exam 1a. c) lim tan( 3x. 2) Calculate the derivatives of the following. DON'T SIMPLIFY! d) s = t t 3t Math 111 - Eam 1a 1) Evaluate the following limits: 7 3 1 4 36 a) lim b) lim 5 1 3 6 + 4 c) lim tan( 3 ) + d) lim ( ) 100 1+ h 1 h 0 h ) Calculate the derivatives of the following. DON'T SIMPLIFY! a) y

More information

3.3.1 Linear functions yet again and dot product In 2D, a homogenous linear scalar function takes the general form:

3.3.1 Linear functions yet again and dot product In 2D, a homogenous linear scalar function takes the general form: 3.3 Gradient Vector and Jacobian Matri 3 3.3 Gradient Vector and Jacobian Matri Overview: Differentiable functions have a local linear approimation. Near a given point, local changes are determined by

More information

CHAPTER 1 Limits and Their Properties

CHAPTER 1 Limits and Their Properties CHAPTER Limits and Their Properties Section. A Preview of Calculus................... 305 Section. Finding Limits Graphically and Numerically....... 305 Section.3 Evaluating Limits Analytically...............

More information

Notes 3.2: Properties of Limits

Notes 3.2: Properties of Limits Calculus Maimus Notes 3.: Properties of Limits 3. Properties of Limits When working with its, you should become adroit and adept at using its of generic functions to find new its of new functions created

More information

Maple for Math Majors. 3. Solving Equations

Maple for Math Majors. 3. Solving Equations 3.1. Introduction Maple for Math Majors Roger Kraft Department of Mathematics, Computer Science, and Statistics Purdue University Calumet roger@calumet.purdue.edu 3. Solving Equations The solve command

More information

Maple for Math Majors. 3. Solving Equations

Maple for Math Majors. 3. Solving Equations Maple for Math Majors Roger Kraft Department of Mathematics, Computer Science, and Statistics Purdue University Calumet roger@calumet.purdue.edu 3.1. Introduction 3. Solving Equations Two of Maple's most

More information

4.3 How derivatives affect the shape of a graph. The first derivative test and the second derivative test.

4.3 How derivatives affect the shape of a graph. The first derivative test and the second derivative test. Chapter 4: Applications of Differentiation In this chapter we will cover: 41 Maimum and minimum values The critical points method for finding etrema 43 How derivatives affect the shape of a graph The first

More information

Lesson 12: More Systems

Lesson 12: More Systems Lesson 12: More Systems restart; A geometry problem Here's a nice little application of resultants to a geometrical problem. We're given two concentric circles with radii and. From a given point P at a

More information

Equations and Inequalities

Equations and Inequalities Equations and Inequalities Figure 1 CHAPTER OUTLINE 1 The Rectangular Coordinate Systems and Graphs Linear Equations in One Variable Models and Applications Comple Numbers Quadratic Equations 6 Other Types

More information

AP Calculus AB Summer Assignment

AP Calculus AB Summer Assignment AP Calculus AB Summer Assignment Name: When you come back to school, it is my epectation that you will have this packet completed. You will be way behind at the beginning of the year if you haven t attempted

More information

MATH 250 TOPIC 11 LIMITS. A. Basic Idea of a Limit and Limit Laws. Answers to Exercises and Problems

MATH 250 TOPIC 11 LIMITS. A. Basic Idea of a Limit and Limit Laws. Answers to Exercises and Problems Math 5 T-Limits Page MATH 5 TOPIC LIMITS A. Basic Idea of a Limit and Limit Laws B. Limits of the form,, C. Limits as or as D. Summary for Evaluating Limits Answers to Eercises and Problems Math 5 T-Limits

More information

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

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

More information

Lesson 10: Polynomials

Lesson 10: Polynomials Lesson 10: Polynomials restart; When Newton is slow We saw that when the equation has a solution p with, Newton's method converges very quickly (for an appropriate starting point), because. When, on the

More information

A Quick Algebra Review

A Quick Algebra Review 1. Simplifying Epressions. Solving Equations 3. Problem Solving 4. Inequalities 5. Absolute Values 6. Linear Equations 7. Systems of Equations 8. Laws of Eponents 9. Quadratics 10. Rationals 11. Radicals

More information

Parametric Curves. Calculus 2 Lia Vas

Parametric Curves. Calculus 2 Lia Vas Calculus Lia Vas Parametric Curves In the past, we mostly worked with curves in the form y = f(x). However, this format does not encompass all the curves one encounters in applications. For example, consider

More information

Without a Vector Calculus Coordinate System

Without a Vector Calculus Coordinate System Classroom Tips and Techniques: Point-and-Click Access to the Differential Operators of Vector Calculus Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction The -operator

More information

Math 121 (Lesieutre); 9.1: Polar coordinates; November 22, 2017

Math 121 (Lesieutre); 9.1: Polar coordinates; November 22, 2017 Math 2 Lesieutre; 9: Polar coordinates; November 22, 207 Plot the point 2, 2 in the plane If you were trying to describe this point to a friend, how could you do it? One option would be coordinates, but

More information

COUNCIL ROCK HIGH SCHOOL MATHEMATICS. A Note Guideline of Algebraic Concepts. Designed to assist students in A Summer Review of Algebra

COUNCIL ROCK HIGH SCHOOL MATHEMATICS. A Note Guideline of Algebraic Concepts. Designed to assist students in A Summer Review of Algebra COUNCIL ROCK HIGH SCHOOL MATHEMATICS A Note Guideline of Algebraic Concepts Designed to assist students in A Summer Review of Algebra [A teacher prepared compilation of the 7 Algebraic concepts deemed

More information

Lesson #33 Solving Incomplete Quadratics

Lesson #33 Solving Incomplete Quadratics Lesson # Solving Incomplete Quadratics A.A.4 Know and apply the technique of completing the square ~ 1 ~ We can also set up any quadratic to solve it in this way by completing the square, the technique

More information

12.1 The Extrema of a Function

12.1 The Extrema of a Function . The Etrema of a Function Question : What is the difference between a relative etremum and an absolute etremum? Question : What is a critical point of a function? Question : How do you find the relative

More information

Summer AP Assignment Coversheet Falls Church High School

Summer AP Assignment Coversheet Falls Church High School Summer AP Assignment Coversheet Falls Church High School Course: AP Calculus AB Teacher Name/s: Veronica Moldoveanu, Ethan Batterman Assignment Title: AP Calculus AB Summer Packet Assignment Summary/Purpose:

More information

5.6 Logarithmic and Exponential Equations

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

More information

Section 1.2 A Catalog of Essential Functions

Section 1.2 A Catalog of Essential Functions Page 1 of 6 Section 1. A Catalog of Essential Functions Linear Models: All linear equations have the form y = m + b. rise change in horizontal The letter m is the slope of the line, or. It can be positive,

More information

Sums of Squares (FNS 195-S) Fall 2014

Sums of Squares (FNS 195-S) Fall 2014 Sums of Squares (FNS 195-S) Fall 014 Record of What We Did Drew Armstrong Vectors When we tried to apply Cartesian coordinates in 3 dimensions we ran into some difficulty tryiing to describe lines and

More information

ScienceWord and PagePlayer Graphical representation. Dr Emile C. B. COMLAN Novoasoft Representative in Africa

ScienceWord and PagePlayer Graphical representation. Dr Emile C. B. COMLAN Novoasoft Representative in Africa ScienceWord and PagePlayer Graphical representation Dr Emile C. B. COMLAN Novoasoft Representative in Africa Emails: ecomlan@scienceoffice.com ecomlan@yahoo.com Web site: www.scienceoffice.com Graphical

More information

Absolute and Local Extrema

Absolute and Local Extrema Extrema of Functions We can use the tools of calculus to help us understand and describe the shapes of curves. Here is some of the data that derivatives f (x) and f (x) can provide about the shape of the

More information

Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative

Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative Exploring the Mathematics Behind Skateboarding: Analysis of the Directional Derivative Chapter 13, Section 6 Adapted from a worksheet prepared for Thomas' Calculus, Finney, Weir, Giordano updated for Maple

More information

Horizontal asymptotes

Horizontal asymptotes Roberto s Notes on Differential Calculus Chapter 1: Limits and continuity Section 5 Limits at infinity and Horizontal asymptotes What you need to know already: The concept, notation and terminology of

More information

Pre-Calculus Module 4

Pre-Calculus Module 4 Pre-Calculus Module 4 4 th Nine Weeks Table of Contents Precalculus Module 4 Unit 9 Rational Functions Rational Functions with Removable Discontinuities (1 5) End Behavior of Rational Functions (6) Rational

More information

WEEK 7 NOTES AND EXERCISES

WEEK 7 NOTES AND EXERCISES WEEK 7 NOTES AND EXERCISES RATES OF CHANGE (STRAIGHT LINES) Rates of change are very important in mathematics. Take for example the speed of a car. It is a measure of how far the car travels over a certain

More information

BARUCH COLLEGE MATH 2207 FALL 2007 MANUAL FOR THE UNIFORM FINAL EXAMINATION. No calculator will be allowed on this part.

BARUCH COLLEGE MATH 2207 FALL 2007 MANUAL FOR THE UNIFORM FINAL EXAMINATION. No calculator will be allowed on this part. BARUCH COLLEGE MATH 07 FALL 007 MANUAL FOR THE UNIFORM FINAL EXAMINATION The final eamination for Math 07 will consist of two parts. Part I: Part II: This part will consist of 5 questions. No calculator

More information

3.3 Limits and Infinity

3.3 Limits and Infinity Calculus Maimus. Limits Infinity Infinity is not a concrete number, but an abstract idea. It s not a destination, but a really long, never-ending journey. It s one of those mind-warping ideas that is difficult

More information

Summer AP Assignment Coversheet Falls Church High School

Summer AP Assignment Coversheet Falls Church High School Summer AP Assignment Coversheet Falls Church High School Course: AP Calculus AB Teacher Name/s: Veronica Moldoveanu, Ethan Batterman Assignment Title: AP Calculus AB Summer Packet Assignment Summary/Purpose:

More information

3.8 Limits At Infinity

3.8 Limits At Infinity 3.8. LIMITS AT INFINITY 53 Figure 3.5: Partial graph of f = /. We see here that f 0 as and as. 3.8 Limits At Infinity The its we introduce here differ from previous its in that here we are interested in

More information

Math 120. x x 4 x. . In this problem, we are combining fractions. To do this, we must have

Math 120. x x 4 x. . In this problem, we are combining fractions. To do this, we must have Math 10 Final Eam Review 1. 4 5 6 5 4 4 4 7 5 Worked out solutions. In this problem, we are subtracting one polynomial from another. When adding or subtracting polynomials, we combine like terms. Remember

More information

and Rational Functions

and Rational Functions chapter This detail from The School of Athens (painted by Raphael around 1510) depicts Euclid eplaining geometry. Linear, Quadratic, Polynomial, and Rational Functions In this chapter we focus on four

More information

1 Rational Exponents and Radicals

1 Rational Exponents and Radicals Introductory Algebra Page 1 of 11 1 Rational Eponents and Radicals 1.1 Rules of Eponents The rules for eponents are the same as what you saw earlier. Memorize these rules if you haven t already done so.

More information

Things to Know and Be Able to Do Understand the meaning of equations given in parametric and polar forms, and develop a sketch of the appropriate

Things to Know and Be Able to Do Understand the meaning of equations given in parametric and polar forms, and develop a sketch of the appropriate AP Calculus BC Review Chapter (Parametric Equations and Polar Coordinates) Things to Know and Be Able to Do Understand the meaning of equations given in parametric and polar forms, and develop a sketch

More information

Section Inverse Trigonometry. In this section, we will define inverse since, cosine and tangent functions. x is NOT one-to-one.

Section Inverse Trigonometry. In this section, we will define inverse since, cosine and tangent functions. x is NOT one-to-one. Section 5.4 - Inverse Trigonometry In this section, we will define inverse since, cosine and tangent functions. RECALL Facts about inverse functions: A function f ) is one-to-one if no two different inputs

More information

Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2:

Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2: Math101, Sections 2 and 3, Spring 2008 Review Sheet for Exam #2: 03 17 08 3 All about lines 3.1 The Rectangular Coordinate System Know how to plot points in the rectangular coordinate system. Know the

More information

14.5 The Chain Rule. dx dt

14.5 The Chain Rule. dx dt SECTION 14.5 THE CHAIN RULE 931 27. w lns 2 2 z 2 28. w e z 37. If R is the total resistance of three resistors, connected in parallel, with resistances,,, then R 1 R 2 R 3 29. If z 5 2 2 and, changes

More information

Solutions to Math 41 First Exam October 12, 2010

Solutions to Math 41 First Exam October 12, 2010 Solutions to Math 41 First Eam October 12, 2010 1. 13 points) Find each of the following its, with justification. If the it does not eist, eplain why. If there is an infinite it, then eplain whether it

More information

Slope Fields: Graphing Solutions Without the Solutions

Slope Fields: Graphing Solutions Without the Solutions 8 Slope Fields: Graphing Solutions Without the Solutions Up to now, our efforts have been directed mainly towards finding formulas or equations describing solutions to given differential equations. Then,

More information

Honors Calculus Summer Preparation 2018

Honors Calculus Summer Preparation 2018 Honors Calculus Summer Preparation 08 Name: ARCHBISHOP CURLEY HIGH SCHOOL Honors Calculus Summer Preparation 08 Honors Calculus Summer Work and List of Topical Understandings In order to be a successful

More information

Introduction - Motivation. Many phenomena (physical, chemical, biological, etc.) are model by differential equations. f f(x + h) f(x) (x) = lim

Introduction - Motivation. Many phenomena (physical, chemical, biological, etc.) are model by differential equations. f f(x + h) f(x) (x) = lim Introduction - Motivation Many phenomena (physical, chemical, biological, etc.) are model by differential equations. Recall the definition of the derivative of f(x) f f(x + h) f(x) (x) = lim. h 0 h Its

More information

Limits and the derivative function. Limits and the derivative function

Limits and the derivative function. Limits and the derivative function The Velocity Problem A particle is moving in a straight line. t is the time that has passed from the start of motion (which corresponds to t = 0) s(t) is the distance from the particle to the initial position

More information

Chapter 5: Limits, Continuity, and Differentiability

Chapter 5: Limits, Continuity, and Differentiability Chapter 5: Limits, Continuity, and Differentiability 63 Chapter 5 Overview: Limits, Continuity and Differentiability Derivatives and Integrals are the core practical aspects of Calculus. They were the

More information

AP Calculus AB SUMMER ASSIGNMENT. Dear future Calculus AB student

AP Calculus AB SUMMER ASSIGNMENT. Dear future Calculus AB student AP Calculus AB SUMMER ASSIGNMENT Dear future Calculus AB student We are ecited to work with you net year in Calculus AB. In order to help you be prepared for this class, please complete the summer assignment.

More information

Increasing/Decreasing Test. Extreme Values and The First Derivative Test.

Increasing/Decreasing Test. Extreme Values and The First Derivative Test. Calculus 1 Lia Vas Increasing/Decreasing Test. Extreme Values and The First Derivative Test. Recall that a function f(x) is increasing on an interval if the increase in x-values implies an increase in

More information

Calculus Summer Packet

Calculus Summer Packet Calculus Summer Packet Congratulations on reaching this level of mathematics in high school. I know some or all of you are bummed out about having to do a summer math packet; but keep this in mind: we

More information

INFINITE SUMS. In this chapter, let s take that power to infinity! And it will be equally natural and straightforward.

INFINITE SUMS. In this chapter, let s take that power to infinity! And it will be equally natural and straightforward. EXPLODING DOTS CHAPTER 7 INFINITE SUMS In the previous chapter we played with the machine and saw the power of that machine to make advanced school algebra so natural and straightforward. In this chapter,

More information

11.4 Polar Coordinates

11.4 Polar Coordinates 11. Polar Coordinates 917 11. Polar Coordinates In Section 1.1, we introduced the Cartesian coordinates of a point in the plane as a means of assigning ordered pairs of numbers to points in the plane.

More information

Motion II. Goals and Introduction

Motion II. Goals and Introduction Motion II Goals and Introduction As you have probably already seen in lecture or homework, and if you ve performed the experiment Motion I, it is important to develop a strong understanding of how to model

More information

Part Two. Diagnostic Test

Part Two. Diagnostic Test Part Two Diagnostic Test AP Calculus AB and BC Diagnostic Tests Take a moment to gauge your readiness for the AP Calculus eam by taking either the AB diagnostic test or the BC diagnostic test, depending

More information

MATH 12 CLASS 5 NOTES, SEP

MATH 12 CLASS 5 NOTES, SEP MATH 12 CLASS 5 NOTES, SEP 30 2011 Contents 1. Vector-valued functions 1 2. Differentiating and integrating vector-valued functions 3 3. Velocity and Acceleration 4 Over the past two weeks we have developed

More information

Chapter 27 AB Calculus Practice Test

Chapter 27 AB Calculus Practice Test Chapter 7 AB Calculus Practice Test The Eam AP Calculus AB Eam SECTION I: Multiple-Choice Questions DO NOT OPEN THIS BOOKLET UNTIL YOU ARE TOLD TO DO SO. At a Glance Total Time 1 hour and 45 minutes Number

More information

Core Connections Algebra 2 Checkpoint Materials

Core Connections Algebra 2 Checkpoint Materials Core Connections Algebra 2 Note to Students (and their Teachers) Students master different skills at different speeds. No two students learn eactly the same way at the same time. At some point you will

More information

4 The Cartesian Coordinate System- Pictures of Equations

4 The Cartesian Coordinate System- Pictures of Equations The Cartesian Coordinate Sstem- Pictures of Equations Concepts: The Cartesian Coordinate Sstem Graphs of Equations in Two Variables -intercepts and -intercepts Distance in Two Dimensions and the Pthagorean

More information

Fundamentals of Algebra, Geometry, and Trigonometry. (Self-Study Course)

Fundamentals of Algebra, Geometry, and Trigonometry. (Self-Study Course) Fundamentals of Algebra, Geometry, and Trigonometry (Self-Study Course) This training is offered eclusively through the Pennsylvania Department of Transportation, Business Leadership Office, Technical

More information

18.303: Introduction to Green s functions and operator inverses

18.303: Introduction to Green s functions and operator inverses 8.33: Introduction to Green s functions and operator inverses S. G. Johnson October 9, 2 Abstract In analogy with the inverse A of a matri A, we try to construct an analogous inverse  of differential

More information

CHAPTER ONE FUNCTIONS AND GRAPHS. In everyday life, many quantities depend on one or more changing variables eg:

CHAPTER ONE FUNCTIONS AND GRAPHS. In everyday life, many quantities depend on one or more changing variables eg: CHAPTER ONE FUNCTIONS AND GRAPHS 1.0 Introduction to Functions In everyday life, many quantities depend on one or more changing variables eg: (a) plant growth depends on sunlight and rainfall (b) speed

More information

Unit 7 Graphs and Graphing Utilities - Classwork

Unit 7 Graphs and Graphing Utilities - Classwork A. Graphing Equations Unit 7 Graphs and Graphing Utilities - Classwork Our first job is being able to graph equations. We have done some graphing in trigonometry but now need a general method of seeing

More information

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor.

Lab on Taylor Polynomials. This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. Lab on Taylor Polynomials This Lab is accompanied by an Answer Sheet that you are to complete and turn in to your instructor. In this Lab we will approimate complicated unctions by simple unctions. The

More information

Continuity and One-Sided Limits

Continuity and One-Sided Limits Continuity and One-Sided Limits 1. Welcome to continuity and one-sided limits. My name is Tuesday Johnson and I m a lecturer at the University of Texas El Paso. 2. With each lecture I present, I will start

More information

A BRIEF REVIEW OF ALGEBRA AND TRIGONOMETRY

A BRIEF REVIEW OF ALGEBRA AND TRIGONOMETRY A BRIEF REVIEW OF ALGEBRA AND TRIGONOMETR Some Key Concepts:. The slope and the equation of a straight line. Functions and functional notation. The average rate of change of a function and the DIFFERENCE-

More information

Let's begin by evaluating several limits. sqrt x 2 C4 K2. limit. x 2, x = 0 ; O limit. 1K cos t t. , t = 0 ; 1C 1 n. limit. 6 x 3 C5.

Let's begin by evaluating several limits. sqrt x 2 C4 K2. limit. x 2, x = 0 ; O limit. 1K cos t t. , t = 0 ; 1C 1 n. limit. 6 x 3 C5. Dr. Straight's Maple Examples Example II: Calculus perations and Functions Functions Covered: diff, dsolve, implicitdiff, implicitplot, int, limit, odeplot, piecewise, plot, solve, subs, sum, taylor Let's

More information

Lecture 10: Powers of Matrices, Difference Equations

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

More information

90 Chapter 5 Logarithmic, Exponential, and Other Transcendental Functions. Name Class. (a) (b) ln x (c) (a) (b) (c) 1 x. y e (a) 0 (b) y.

90 Chapter 5 Logarithmic, Exponential, and Other Transcendental Functions. Name Class. (a) (b) ln x (c) (a) (b) (c) 1 x. y e (a) 0 (b) y. 90 Chapter 5 Logarithmic, Eponential, and Other Transcendental Functions Test Form A Chapter 5 Name Class Date Section. Find the derivative: f ln. 6. Differentiate: y. ln y y y y. Find dy d if ey y. y

More information

Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft

Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction Classroom Tips and Techniques: Series Expansions Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Maple has the ability to provide various series expansions and

More information

AP Calculus AB Summer Assignment

AP Calculus AB Summer Assignment AP Calculus AB Summer Assignment Name: When you come back to school, you will be epected to have attempted every problem. These skills are all different tools that you will pull out of your toolbo this

More information

HOMEWORK 2 SOLUTIONS

HOMEWORK 2 SOLUTIONS HOMEWORK SOLUTIONS MA11: ADVANCED CALCULUS, HILARY 17 (1) Find parametric equations for the tangent line of the graph of r(t) = (t, t + 1, /t) when t = 1. Solution: A point on this line is r(1) = (1,,

More information

Chapter 29 BC Calculus Practice Test

Chapter 29 BC Calculus Practice Test Chapter 9 BC Calculus Practice Test The Eam AP Calculus BC Eam SECTION I: Multiple-Choice Questions DO NOT OPEN THIS BOOKLET UNTIL YOU ARE TOLD TO DO SO. At a Glance Total Time hour and 5 minutes Number

More information

Principles of Linear Algebra With Maple TM Rolling an Ellipse Along a Curve

Principles of Linear Algebra With Maple TM Rolling an Ellipse Along a Curve Principles of Linear Algebra With Maple TM Rolling an Ellipse Along a Curve Kenneth Shiskowski and Karl Frinkle c Draft date February 6, 2011 Contents 1 Rolling an Ellipse Along a Curve 1 1.1 The Setup..............................

More information

Core Connections Algebra 2 Checkpoint Materials

Core Connections Algebra 2 Checkpoint Materials Core Connections Algebra 2 Note to Students (and their Teachers) Students master different skills at different speeds. No two students learn eactly the same way at the same time. At some point you will

More information

Introduction to Rational Functions

Introduction to Rational Functions Introduction to Rational Functions The net class of functions that we will investigate is the rational functions. We will eplore the following ideas: Definition of rational function. The basic (untransformed)

More information

Unit 4: Polynomial and Rational Functions

Unit 4: Polynomial and Rational Functions 50 Unit 4: Polynomial and Rational Functions Polynomial Functions A polynomial function y p() is a function of the form p( ) a a a... a a a n n n n n n 0 where an, an,..., a, a, a0 are real constants and

More information

CHAPTER 2 Limits and Their Properties

CHAPTER 2 Limits and Their Properties CHAPTER Limits and Their Properties Section. A Preview of Calculus...5 Section. Finding Limits Graphically and Numerically...5 Section. Section. Evaluating Limits Analytically...5 Continuity and One-Sided

More information

All work must be shown in this course for full credit. Unsupported answers may receive NO credit.

All work must be shown in this course for full credit. Unsupported answers may receive NO credit. AP Calculus.4 Worksheet All work must be shown in this course for full credit. Unsupported answers may receive NO credit.. What is a difference quotient?. How do you find the slope of a curve (aka slope

More information

Finite Mathematics : A Business Approach

Finite Mathematics : A Business Approach Finite Mathematics : A Business Approach Dr. Brian Travers and Prof. James Lampes Second Edition Cover Art by Stephanie Oxenford Additional Editing by John Gambino Contents What You Should Already Know

More information

CHAPTER 11 Vector-Valued Functions

CHAPTER 11 Vector-Valued Functions CHAPTER Vector-Valued Functions Section. Vector-Valued Functions...................... 9 Section. Differentiation and Integration of Vector-Valued Functions.... Section. Velocit and Acceleration.....................

More information

Post-Algebra II, Pre-Precalculus Summer Packet

Post-Algebra II, Pre-Precalculus Summer Packet Post-Algebra II, Pre-Precalculus Summer Packet (Concepts epected to be understood upon entering Precalculus course) Name Grade Level School Teacher In order to be successful in a Precalculus course at

More information

In order to master the techniques explained here it is vital that you undertake plenty of practice exercises so that they become second nature.

In order to master the techniques explained here it is vital that you undertake plenty of practice exercises so that they become second nature. Maima and minima In this unit we show how differentiation can be used to find the maimum and minimum values of a function. Because the derivative provides information about the gradient or slope of the

More information

Algebra Exam. Solutions and Grading Guide

Algebra Exam. Solutions and Grading Guide Algebra Exam Solutions and Grading Guide You should use this grading guide to carefully grade your own exam, trying to be as objective as possible about what score the TAs would give your responses. Full

More information

Problems with an # after the number are the only ones that a calculator is required for in the solving process.

Problems with an # after the number are the only ones that a calculator is required for in the solving process. Instructions: Make sure all problems are numbered in order. All work is in pencil, and is shown completely. Graphs are drawn out by hand. If you use your calculator for some steps, intermediate work should

More information

Calculus with Analytic Geometry I Exam 8 Take Home Part.

Calculus with Analytic Geometry I Exam 8 Take Home Part. Calculus with Analytic Geometry I Exam 8 Take Home Part. INSTRUCTIONS: SHOW ALL WORK. Write clearly, using full sentences. Use equal signs appropriately; don t use them between quantities that are not

More information

SECTION 2.3: LONG AND SYNTHETIC POLYNOMIAL DIVISION

SECTION 2.3: LONG AND SYNTHETIC POLYNOMIAL DIVISION 2.25 SECTION 2.3: LONG AND SYNTHETIC POLYNOMIAL DIVISION PART A: LONG DIVISION Ancient Example with Integers 2 4 9 8 1 In general: dividend, f divisor, d We can say: 9 4 = 2 + 1 4 By multiplying both sides

More information

MA Lesson 25 Notes Section 5.3 (2 nd half of textbook)

MA Lesson 25 Notes Section 5.3 (2 nd half of textbook) MA 000 Lesson 5 Notes Section 5. ( nd half of tetbook) Higher Derivatives: In this lesson, we will find a derivative of a derivative. A second derivative is a derivative of the first derivative. A third

More information

Math 2250 Final Exam Practice Problem Solutions. f(x) = ln x x. 1 x. lim. lim. x x = lim. = lim 2

Math 2250 Final Exam Practice Problem Solutions. f(x) = ln x x. 1 x. lim. lim. x x = lim. = lim 2 Math 5 Final Eam Practice Problem Solutions. What are the domain and range of the function f() = ln? Answer: is only defined for, and ln is only defined for >. Hence, the domain of the function is >. Notice

More information

AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II)

AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II) PURPOSE: Observe a redox reaction. AP CHEMISTRY LAB RATES OF CHEMICAL REACTIONS (II) Apply graphing techniques to analyze data. Practice computer skills to develop a data table. Determine the order of

More information

1985 AP Calculus AB: Section I

1985 AP Calculus AB: Section I 985 AP Calculus AB: Section I 9 Minutes No Calculator Notes: () In this eamination, ln denotes the natural logarithm of (that is, logarithm to the base e). () Unless otherwise specified, the domain of

More information

Chapter 8: More on Limits

Chapter 8: More on Limits Chapter 8: More on Limits Lesson 8.. 8-. a. 000 lim a() = lim = 0 b. c. lim c() = lim 3 +7 = 3 +000 lim b( ) 3 lim( 0000 ) = # = " 8-. a. lim 0 = " b. lim (#0.5 ) = # lim c. lim 4 = lim 4(/ ) = " d. lim

More information

Definition: Quadratic equation: A quadratic equation is an equation that could be written in the form ax 2 + bx + c = 0 where a is not zero.

Definition: Quadratic equation: A quadratic equation is an equation that could be written in the form ax 2 + bx + c = 0 where a is not zero. We will see many ways to solve these familiar equations. College algebra Class notes Solving Quadratic Equations: Factoring, Square Root Method, Completing the Square, and the Quadratic Formula (section

More information

SECTION 4-3 Approximating Real Zeros of Polynomials Polynomial and Rational Functions

SECTION 4-3 Approximating Real Zeros of Polynomials Polynomial and Rational Functions Polynomial and Rational Functions 79. P() 9 9 8. P() 6 6 8 7 8 8. The solutions to the equation are all the cube roots of. (A) How many cube roots of are there? (B) is obviously a cube root of ; find all

More information

ter. on Can we get a still better result? Yes, by making the rectangles still smaller. As we make the rectangles smaller and smaller, the

ter. on Can we get a still better result? Yes, by making the rectangles still smaller. As we make the rectangles smaller and smaller, the Area and Tangent Problem Calculus is motivated by two main problems. The first is the area problem. It is a well known result that the area of a rectangle with length l and width w is given by A = wl.

More information

The First Derivative Test

The First Derivative Test The First Derivative Test We have already looked at this test in the last section even though we did not put a name to the process we were using. We use a y number line to test the sign of the first derivative

More information

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

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

More information

Set 3: Limits of functions:

Set 3: Limits of functions: Set 3: Limits of functions: A. The intuitive approach (.): 1. Watch the video at: https://www.khanacademy.org/math/differential-calculus/it-basics-dc/formal-definition-of-its-dc/v/itintuition-review. 3.

More information