Differentiation of Parametric Space Curves. Goals: Velocity in parametric curves Acceleration in parametric curves

Size: px
Start display at page:

Download "Differentiation of Parametric Space Curves. Goals: Velocity in parametric curves Acceleration in parametric curves"

Transcription

1 Block #2: Differentiation of Parametric Space Curves Goals: Velocity in parametric curves Acceleration in parametric curves 1

2 Displacement in Parametric Curves - 1 Displacement in Parametric Curves Using the model of a particle moving along on a circle from last week, r(t) = cos t, sin t, find the displacement of the particle between the times t = 0.5 and t = 1.6. r(1.6) r(0.5) G 1

3 Displacement in Parametric Curves - 2 Suppose we replaced the upper t value (t = 1.6), by t and re-calculate the displacement. Problem. Find a formula for the displacement. r(0.5) G 1

4 Displacement in Parametric Curves - 3 r(t) = cos t, sin t, d = cos(0.5 + t) cos(0.5), sin(0.5 + t) sin(0.5) Problem. If we let t get smaller and smaller ( t 0) then what will displacement vector do? A. The displacement vector will keep shrinking as t gets smaller. B. The displacement vector will stay more or less the same length because the speed is the same. r(0.5)

5 Velocity in Parametric Curves - 1 Velocity in Parametric Curves We continue with our circular motion curve, r(t) = cos t, sin t, As we shorten a time interval, the displacement over that interval will also get smaller: fair enough. How does this relate to velocity? Problem. Find the average velocity of the particle over the period t = r(1.6) r(0.5)

6 Velocity in Parametric Curves - 2 Problem. (Aside: what is the distinction between velocity and speed?)

7 Velocity in Parametric Curves - 3 Problem. For our circular motion example, the average velocity formula over the interval t = 0.5 to t = t is: avg. vel. = 1 cos(0.5 + t) cos(0.5), sin(0.5 + t) sin(0.5). t If we let t get smaller and smaller ( t 0), then what will happen to the velocity vector? A. The velocity vector will shrink to a point, because the displacement vector gets smaller and smaller; B. The velocity vector will get longer and longer because we are dividing the displacement by a smaller and smaller number, t; C. The velocity vector will stay more or less the same length.

8 Velocity in Parametric Curves - 4 We would like to study the effect of shrinking time intervals on average velocity more closely, because it defines the derivative for parametric functions. What kinds of derivative calculations are you familiar with currently?

9 Defining the Derivative of a Parametric Curve - 1 Defining the Derivative of a Parametric Curve Let us generalize: using t = a as our first time point, and a time interval of t, write the formula of the average velocity over this time interval. Indicate which parts of this calculation are vectors and which are scalars.

10 Defining the Derivative of a Parametric Curve - 2 Note: since the independent variable isn t always time (t), mathematicians (and textbooks) often use the single-letter-variable h instead of t. Problem. Rewrite the average velocity formula using this notation.

11 Defining the Derivative of a Parametric Curve - 3 Finally, we capture the idea of instantaneous velocity (as opposed to average velocity). Problem. Based on the earlier formula, how would we obtain the instantaneous velocity of r(t) at the time t = a?

12 Limit Definition of the Vector-Valued Derivative - 1 Limit Definition of the Vector-Valued Derivative Graphical Interpretation If you imagine successive instances of average velocity as h gets smaller and smaller, you might get something like this diagram:

13 Limit Definition of the Vector-Valued Derivative - 2 In the diagram you see vectors representing average velocity between t = 0.5 and 1.6 ( t = 1.1) and average velocity between t = 0.5 and 0.8 ( t = 0.3), and the limit (the dashed arrow) to which these average velocity vectors converge as t 0.

14 Limit Definition of the Vector-Valued Derivative - 3 The limit vector is called the derivative of the vector-valued function r(t) at t = a. This derivative represents the instantaneous velocity of r(t) at t = a, and we write it as r (a): or r 1 (a) = lim h 0 h r (a) = lim t 0 1 t [r(a + h) r(a)] [r(a + t) r(a)] Review: what is the definition of the derivative of a single-variable function, f(t) at t = a?

15 Limit Definition of the Vector-Valued Derivative - 4 Problem. Suppose a vector-valued function is given by the formula r(t) = t, t 2. What is its derivative at time t = a?

16 Limit Definition of the Vector-Valued Derivative - 5 When the position of an object is given by a vector-valued function r(t) = x(t), y(t) then its velocity at a can be calculated by taking derivatives of the components and evaluating them at t = a: r (a) = x (a), y (a)

17 Plotting Derivatives With MATLAB - 1 Plotting Derivatives With MATLAB The following generates a plot of the trajectory defined by r = t, t 2, oer the time interval 3 t 3. % Trajectory t = -3:0.01:3; plot(t, t.^2); To include a velocity vector, say at t=0.5, you can use the quiver command. % Velocity at t = 0.5 hold on; quiver(0.5, 0.5^2, 1, 2*(0.5)); What do the elements in the quiver command represent?

18 Plotting Derivatives With MATLAB - 2 Modifying our earlier animation, the following shows the velocity vector as the particle moves along the trajectory. t = -3:0.01:3; for (i = 1:length(t)) clf; hold on; ti = t(i); % current time in the loop x = ti; % compute the current x and y coords y = ti^2; vx = 1; % compute the current velocity components vy = 2 * ti; plot(t, t.^2, -b, x, y,.r ); quiver(x, y, vx, vy); drawnow; end

19 Velocity - Further Examples - 1 Velocity - Further Examples Problem. Find the velocity of the particle whose position is given by r(t) = cos(t), e t.

20 Velocity - Further Examples - 2 Problem. Find the velocity of the particle whose position is given by q(t) = t 2 t, e 4t t.

21 Velocity - Further Examples - 3 Problem. Find the velocity of the particle whose position is given by s(t) = ln(t), 1. t

22 Velocity - Components - 1 Velocity - Components Problem. A particle moves so that its location at time t is given by 1 r(t) = 3 t3 t, t where the first coordinate measures position along a horizontal axis, and the second coordinate measures vertical position. What is the formula for the velocity of the particle at any time t? A. v(t) = 3, 1 B. v(t) = 3t 3 t, 1 C. v(t) = t 2 1, 1 D. v(t) = t 2 1, t

23 Velocity - Components - 2 Problem. The particle will be moving in different directions at different times. What would be special about the velocity at the moments when the particle is moving directly upwards or downwards? A. The position s vertical component would be zero. B. The position s horizontal component would be zero. C. The velocity s vertical component would be zero. D. The velocity s horizontal component would be zero.

24 1 r(t) = 3 t3 t, t r (t) = v(t) = t 2 1, 1 Velocity - Components - 3 Problem. At what value(s) of t is the particle moving in a perfectly vertical direction? A. At t = 1 B. At t = 0 C. At t = 0 and t = ± 3 D. At t = ±1

25 Space Curves: Parametric Curves in Three Dimensions - 1 Space Curves: Parametric Curves in Three Dimensions A vector-valued function r(t) can also have a triple of numbers as its output, as in r(t) = x(t), y(t), z(t). We can think of this triple as a set of coordinates in three-dimensional space, so x(t), y(t), z(t) can be thought of as describing the path of a moving point in three-space. For this reason, the curve consisting of all outputs x(t), y(t), z(t) is also called a (parametric) space curve.

26 Space Curves: Parametric Curves in Three Dimensions - 2 Fortunately, paths in three-space are handled in much the same way as paths in two-dimensional space, especially when it comes to calculating the velocity. Problem. A particle moves in such a way that its position at time t is given by 1 r(t) = t 2 + 1, t 1 t 5, e2t. What is its velocity at time t = 1? As a related question, what is the domain of this vector-valued function?

27 Space Curves: Parametric Curves in Three Dimensions The curve r(t) = t 2 + 1, t 1 t 5, e2t can be produced in MATLAB as follows, for t [ 2, 2]. % Trajectory t = -2:0.01:2; x = 1./(t.^2 + 1); y = (t-1)./(t-5); z = exp(2*t); plot3(x, y, z); What does the particle do when t gets close to 5?

28 Space Curves - Example 2 Problem. Consider the path traced out by r(t) = cos(t) sin(t 3 ), cos(t) cos(t 3 ), sin(t) Space Curves - Example 2-1 Using MATLAB, we can graph this: t = -4:0.01:4; x = cos(t).* cos(t.^3); y = cos(t).* sin(t.^3); z = sin(t); plot3(x, y, z); axis equal

29 Space Curves - Example 2-2 r(t) = cos(t) sin(t 3 ), cos(t) cos(t 3 ), sin(t) Problem. It looks as if that curve stays on a sphere centered at the origin. Is this really the case? If so, how can we prove it?

30 Space Curves - Example 2-3 r(t) = cos(t) sin(t 3 ), cos(t) cos(t 3 ), sin(t)

31 Acceleration in Parametric Curves - Introduction - 1 Acceleration in Parametric Curves - Introduction We will now return to our continuing (and simpler) example of a green dot moving in a circular path. G 1 The path of the green dot was given, as a function of time, by the formula r(t) = cos t, sin t. Problem. Find the formula for the instantaneous velocity of the particle.

32 Acceleration in Parametric Curves - Introduction - 2 Problem. Sketch the path of the particle, and the velocity vector at several points. Should the velocity vectors all have the same length, or should they grow or shrink over time?

33 Acceleration in Parametric Curves - Introduction - 3 Now imagine what would it mean to take a second derivative of a vector-valued function. In physics we associate the second derivative of position with acceleration. In calculus, in high school, you will have learned to relate the second derivative to the concavity of the graph of a function. We will see that both points of view continue to make sense when we deal with vector-valued functions.

34 Acceleration in Parametric Curves - Introduction - 4 The second derivative of the position of a moving particle measures how fast and in which direction a particle is accelerating. Also, when the acceleration vector points in a direction different from that of the velocity, it also indicates the amount by which the path curves or bends. Think of the green dot as a vehicle with you as a passenger. As you zip around the circle, you will find yourself pushed against the side of the vehicle. This indicates that you are accelerating in the direction in which the vehicle pushes against your body. A greater speed or a tighter circle will produce a greater acceleration.

35 Acceleration - Example - 1 G 1 r(t) = cos(t), sin(t), r (t) = v(t) = sin(t), cos(t) Problem. Compute the velocity of the particle on the circular path at t = 0 and t = π/4. Find the change in velocity over this time interval. Find the average acceleration of the particle over this time interval. This gives the approximate value of the acceleration at time t = 0.

36 Acceleration - Example - 2 r(t) = cos(t), sin(t), v(t) = sin(t), cos(t) Problem. Now use derivative rules to compute the instantaneous acceleration function for the particle s motion. Compute the instantaneous acceleration at t = 0. Explain the discrepancy between the earlier average acceleration and the new instantaneous acceleration.

37 Acceleration - Example - 3 Problem. What statement is true about the acceleration of our orbiting dot? G 1 A. The acceleration vector is constant. B. The magnitude of the acceleration is constant, but the direction changes. C. The acceleration magnitude alternates between increasing and decreasing.

38 Acceleration - Example - 4 G 1 Problem. Can you find a simple relationship between the position r and r? Express this relationship in words.

39 Acceleration - General Circular Motion - 1 Acceleration - General Circular Motion Our simple circular motion is as simple as it can be (radius 1, and default speed for sine and cosine). Problem. Show that, for any uniform circular motion, the acceleration of a particle must always be directly towards the center of the circle. (Note that we ll first need a general formula for any uniform circular motion!)

40 Acceleration - General Circular Motion - 2 (continued)

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

What is a Vector? A vector is a mathematical object which describes magnitude and direction

What is a Vector? A vector is a mathematical object which describes magnitude and direction What is a Vector? A vector is a mathematical object which describes magnitude and direction We frequently use vectors when solving problems in Physics Example: Change in position (displacement) Velocity

More information

Tangent and Normal Vector - (11.5)

Tangent and Normal Vector - (11.5) Tangent and Normal Vector - (.5). Principal Unit Normal Vector Let C be the curve traced out by the vector-valued function rt vector T t r r t t is the unit tangent vector to the curve C. Now define N

More information

Section Vector Functions and Space Curves

Section Vector Functions and Space Curves Section 13.1 Section 13.1 Goals: Graph certain plane curves. Compute limits and verify the continuity of vector functions. Multivariable Calculus 1 / 32 Section 13.1 Equation of a Line The equation of

More information

1.1 Single Variable Calculus versus Multivariable Calculus Rectangular Coordinate Systems... 4

1.1 Single Variable Calculus versus Multivariable Calculus Rectangular Coordinate Systems... 4 MATH2202 Notebook 1 Fall 2015/2016 prepared by Professor Jenny Baglivo Contents 1 MATH2202 Notebook 1 3 1.1 Single Variable Calculus versus Multivariable Calculus................... 3 1.2 Rectangular Coordinate

More information

Calculus of Vector-Valued Functions

Calculus of Vector-Valued Functions Chapter 3 Calculus of Vector-Valued Functions Useful Tip: If you are reading the electronic version of this publication formatted as a Mathematica Notebook, then it is possible to view 3-D plots generated

More information

Vector Functions & Space Curves MATH 2110Q

Vector Functions & Space Curves MATH 2110Q Vector Functions & Space Curves Vector Functions & Space Curves Vector Functions Definition A vector function or vector-valued function is a function that takes real numbers as inputs and gives vectors

More information

Topic 2-2: Derivatives of Vector Functions. Textbook: Section 13.2, 13.4

Topic 2-2: Derivatives of Vector Functions. Textbook: Section 13.2, 13.4 Topic 2-2: Derivatives of Vector Functions Textbook: Section 13.2, 13.4 Warm-Up: Parametrization of Circles Each of the following vector functions describe the position of an object traveling around the

More information

Course Notes Math 275 Boise State University. Shari Ultman

Course Notes Math 275 Boise State University. Shari Ultman Course Notes Math 275 Boise State University Shari Ultman Fall 2017 Contents 1 Vectors 1 1.1 Introduction to 3-Space & Vectors.............. 3 1.2 Working With Vectors.................... 7 1.3 Introduction

More information

The Calculus of Vec- tors

The Calculus of Vec- tors Physics 2460 Electricity and Magnetism I, Fall 2007, Lecture 3 1 The Calculus of Vec- Summary: tors 1. Calculus of Vectors: Limits and Derivatives 2. Parametric representation of Curves r(t) = [x(t), y(t),

More information

MTHE 227 Problem Set 2 Solutions

MTHE 227 Problem Set 2 Solutions MTHE 7 Problem Set Solutions 1 (Great Circles). The intersection of a sphere with a plane passing through its center is called a great circle. Let Γ be the great circle that is the intersection of the

More information

Limits for parametric and polar curves

Limits for parametric and polar curves Roberto s Notes on Differential Calculus Chapter : Resolving indeterminate forms Section 7 Limits for parametric and polar curves What you need to know already: How to handle limits for functions of the

More information

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph

CHAPTER 6 VECTOR CALCULUS. We ve spent a lot of time so far just looking at all the different ways you can graph CHAPTER 6 VECTOR CALCULUS We ve spent a lot of time so far just looking at all the different ways you can graph things and describe things in three dimensions, and it certainly seems like there is a lot

More information

MATH 280 Multivariate Calculus Fall Integrating a vector field over a curve

MATH 280 Multivariate Calculus Fall Integrating a vector field over a curve MATH 280 Multivariate alculus Fall 2012 Definition Integrating a vector field over a curve We are given a vector field F and an oriented curve in the domain of F as shown in the figure on the left below.

More information

Math 11 Fall 2016 Section 1 Monday, September 19, Definition: A vector parametric equation for the line parallel to vector v = x v, y v, z v

Math 11 Fall 2016 Section 1 Monday, September 19, Definition: A vector parametric equation for the line parallel to vector v = x v, y v, z v Math Fall 06 Section Monay, September 9, 06 First, some important points from the last class: Definition: A vector parametric equation for the line parallel to vector v = x v, y v, z v passing through

More information

Name: Date: Honors Physics

Name: Date: Honors Physics Name: Date: Honors Physics Worksheet on Position, Velocity, and Acceleration Graphs when acceleration is constant Suppose you have an object that moves with a constant acceleration. Your task is to create

More information

= 3, the vertical velocty is. (x(t), y(t)) = (1 + 3t, 2 + 4t) for t [0, 1],

= 3, the vertical velocty is. (x(t), y(t)) = (1 + 3t, 2 + 4t) for t [0, 1], Math 133 Parametric Curves Stewart 10.1 Back to pictures! We have emphasized four conceptual levels, or points of view on mathematics: physical, geometric, numerical, algebraic. The physical viewpoint

More information

Parametric Equations

Parametric Equations Parametric Equations By: OpenStaxCollege Consider the path a moon follows as it orbits a planet, which simultaneously rotates around the sun, as seen in [link]. At any moment, the moon is located at a

More information

AP Calculus Worksheet: Chapter 2 Review Part I

AP Calculus Worksheet: Chapter 2 Review Part I AP Calculus Worksheet: Chapter 2 Review Part I 1. Given y = f(x), what is the average rate of change of f on the interval [a, b]? What is the graphical interpretation of your answer? 2. The derivative

More information

Chapter 14: Vector Calculus

Chapter 14: Vector Calculus Chapter 14: Vector Calculus Introduction to Vector Functions Section 14.1 Limits, Continuity, Vector Derivatives a. Limit of a Vector Function b. Limit Rules c. Component By Component Limits d. Continuity

More information

Chapter 4 - Motion in 2D and 3D

Chapter 4 - Motion in 2D and 3D Never confuse motion with action. - Benjamin Franklin David J. Starling Penn State Hazleton PHYS 211 Position, displacement, velocity and acceleration can be generalized to 3D using vectors. x(t) r(t)

More information

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

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

More information

Parametric Curves You Should Know

Parametric Curves You Should Know Parametric Curves You Should Know Straight Lines Let a and c be constants which are not both zero. Then the parametric equations determining the straight line passing through (b d) with slope c/a (i.e.

More information

2.1 Definition. Let n be a positive integer. An n-dimensional vector is an ordered list of n real numbers.

2.1 Definition. Let n be a positive integer. An n-dimensional vector is an ordered list of n real numbers. 2 VECTORS, POINTS, and LINEAR ALGEBRA. At first glance, vectors seem to be very simple. It is easy enough to draw vector arrows, and the operations (vector addition, dot product, etc.) are also easy to

More information

UNDERSTAND MOTION IN ONE AND TWO DIMENSIONS

UNDERSTAND MOTION IN ONE AND TWO DIMENSIONS SUBAREA I. COMPETENCY 1.0 UNDERSTAND MOTION IN ONE AND TWO DIMENSIONS MECHANICS Skill 1.1 Calculating displacement, aerage elocity, instantaneous elocity, and acceleration in a gien frame of reference

More information

Welcome back to Physics 211

Welcome back to Physics 211 Welcome back to Physics 211 Lecture 2-1 02-1 1 Last time: Displacement, velocity, graphs Today: Using graphs to solve problems Constant acceleration, free fall 02-1 2 1-2.6-8: Acceleration from graph of

More information

Worksheet 1.8: Geometry of Vector Derivatives

Worksheet 1.8: Geometry of Vector Derivatives Boise State Math 275 (Ultman) Worksheet 1.8: Geometry of Vector Derivatives From the Toolbox (what you need from previous classes): Calc I: Computing derivatives of single-variable functions y = f (t).

More information

MAT 272 Test 1 Review. 1. Let P = (1,1) and Q = (2,3). Find the unit vector u that has the same

MAT 272 Test 1 Review. 1. Let P = (1,1) and Q = (2,3). Find the unit vector u that has the same 11.1 Vectors in the Plane 1. Let P = (1,1) and Q = (2,3). Find the unit vector u that has the same direction as. QP a. u =< 1, 2 > b. u =< 1 5, 2 5 > c. u =< 1, 2 > d. u =< 1 5, 2 5 > 2. If u has magnitude

More information

mathematical objects can be described via equations, functions, graphs, parameterization in R, R, and R.

mathematical objects can be described via equations, functions, graphs, parameterization in R, R, and R. Multivariable Calculus Lecture # Notes This lecture completes the discussion of the cross product in R and addresses the variety of different ways that n mathematical objects can be described via equations,

More information

v t 2 2t 8. Fig. 7 (i) Write down the velocity of the insect when t 0. (ii) Show that the insect is instantaneously at rest when t 2and when t 4.

v t 2 2t 8. Fig. 7 (i) Write down the velocity of the insect when t 0. (ii) Show that the insect is instantaneously at rest when t 2and when t 4. 1 Fig. 7 is a sketch of part of the velocity-time graph for the motion of an insect walking in a straight line. Its velocity, v ms 1, at time t seconds for the time interval 3 t 5 is given by v ms -1 v

More information

0, such that. all. for all. 0, there exists. Name: Continuity. Limits and. calculus. the definitionn. satisfying. limit. However, is the limit of its

0, such that. all. for all. 0, there exists. Name: Continuity. Limits and. calculus. the definitionn. satisfying. limit. However, is the limit of its L Marizzaa A Bailey Multivariable andd Vector Calculus Name: Limits and Continuity Limits and Continuity We have previously defined limit in for single variable functions, but how do we generalize this

More information

Chapter 4. Motion in Two Dimensions. Professor Wa el Salah

Chapter 4. Motion in Two Dimensions. Professor Wa el Salah Chapter 4 Motion in Two Dimensions Kinematics in Two Dimensions Will study the vector nature of position, velocity and acceleration in greater detail. Will treat projectile motion and uniform circular

More information

Department of Mathematical and Statistical Sciences University of Alberta

Department of Mathematical and Statistical Sciences University of Alberta MATH 214 (R1) Winter 2008 Intermediate Calculus I Solutions to Problem Set #8 Completion Date: Friday March 14, 2008 Department of Mathematical and Statistical Sciences University of Alberta Question 1.

More information

2.2 Average vs. Instantaneous Description

2.2 Average vs. Instantaneous Description 2 KINEMATICS 2.2 Average vs. Instantaneous Description Name: 2.2 Average vs. Instantaneous Description 2.2.1 Average vs. Instantaneous Velocity In the previous activity, you figured out that you can calculate

More information

Section 14.1 Vector Functions and Space Curves

Section 14.1 Vector Functions and Space Curves Section 14.1 Vector Functions and Space Curves Functions whose range does not consists of numbers A bulk of elementary mathematics involves the study of functions - rules that assign to a given input a

More information

Midterm 1 Review. Distance = (x 1 x 0 ) 2 + (y 1 y 0 ) 2.

Midterm 1 Review. Distance = (x 1 x 0 ) 2 + (y 1 y 0 ) 2. Midterm 1 Review Comments about the midterm The midterm will consist of five questions and will test on material from the first seven lectures the material given below. No calculus either single variable

More information

R Function Tutorial in Module 8.2

R Function Tutorial in Module 8.2 R Function Tutorial in Module 8.2 Introduction to Computational Science: Modeling and Simulation for the Sciences, 2 nd Edition Angela B. Shiflet and George W. Shiflet Wofford College 2014 by Princeton

More information

Lecture for Week 6 (Secs ) Derivative Miscellany I

Lecture for Week 6 (Secs ) Derivative Miscellany I Lecture for Week 6 (Secs. 3.6 9) Derivative Miscellany I 1 Implicit differentiation We want to answer questions like this: 1. What is the derivative of tan 1 x? 2. What is dy dx if x 3 + y 3 + xy 2 + x

More information

Worksheet 1.7: Introduction to Vector Functions - Position

Worksheet 1.7: Introduction to Vector Functions - Position Boise State Math 275 (Ultman) Worksheet 1.7: Introduction to Vector Functions - Position From the Toolbox (what you need from previous classes): Cartesian Coordinates: Coordinates of points in general,

More information

Multiple Choice. Circle the best answer. No work needed. No partial credit available. is continuous.

Multiple Choice. Circle the best answer. No work needed. No partial credit available. is continuous. Multiple Choice. Circle the best answer. No work needed. No partial credit available. + +. Evaluate lim + (a (b (c (d 0 (e None of the above.. Evaluate lim (a (b (c (d 0 (e + + None of the above.. Find

More information

CHAPTER 5 VECTOR TRANSFORMATIONS. look at parametric equations. This is because we can always associate a position

CHAPTER 5 VECTOR TRANSFORMATIONS. look at parametric equations. This is because we can always associate a position CHAPTER 5 VECTOR TRANSFORMATIONS Now that we ve talked about vectors, they re going to give us a whole new way to look at parametric equations. This is because we can always associate a position vector,

More information

3 Vectors and Two- Dimensional Motion

3 Vectors and Two- Dimensional Motion May 25, 1998 3 Vectors and Two- Dimensional Motion Kinematics of a Particle Moving in a Plane Motion in two dimensions is easily comprehended if one thinks of the motion as being made up of two independent

More information

Exam 1 Review SOLUTIONS

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

More information

Chapter 4. Motion in Two Dimensions

Chapter 4. Motion in Two Dimensions Chapter 4 Motion in Two Dimensions Kinematics in Two Dimensions Will study the vector nature of position, velocity and acceleration in greater detail Will treat projectile motion and uniform circular motion

More information

1 Vectors. c Kun Wang. Math 151, Fall Vector Supplement

1 Vectors. c Kun Wang. Math 151, Fall Vector Supplement Vector Supplement 1 Vectors A vector is a quantity that has both magnitude and direction. Vectors are drawn as directed line segments and are denoted by boldface letters a or by a. The magnitude of a vector

More information

average speed instantaneous origin resultant average velocity position particle model scalar

average speed instantaneous origin resultant average velocity position particle model scalar REPRESENTING MOTION Vocabulary Review Write the term that correctly completes the statement. Use each term once. average speed instantaneous origin resultant average velocity position particle model scalar

More information

Plane Curves and Parametric Equations

Plane Curves and Parametric Equations Plane Curves and Parametric Equations MATH 211, Calculus II J. Robert Buchanan Department of Mathematics Spring 2018 Introduction We typically think of a graph as a curve in the xy-plane generated by the

More information

Practice Midterm Exam 1. Instructions. You have 60 minutes. No calculators allowed. Show all your work in order to receive full credit.

Practice Midterm Exam 1. Instructions. You have 60 minutes. No calculators allowed. Show all your work in order to receive full credit. MATH202X-F01/UX1 Spring 2015 Practice Midterm Exam 1 Name: Answer Key Instructions You have 60 minutes No calculators allowed Show all your work in order to receive full credit 1 Consider the points P

More information

Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space.

Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space. 10 VECTOR FUNCTIONS VECTOR FUNCTIONS Later in this chapter, we are going to use vector functions to describe the motion of planets and other objects through space. Here, we prepare the way by developing

More information

3 = arccos. A a and b are parallel, B a and b are perpendicular, C a and b are normalized, or D this is always true.

3 = arccos. A a and b are parallel, B a and b are perpendicular, C a and b are normalized, or D this is always true. Math 210-101 Test #1 Sept. 16 th, 2016 Name: Answer Key Be sure to show your work! 1. (20 points) Vector Basics: Let v = 1, 2,, w = 1, 2, 2, and u = 2, 1, 1. (a) Find the area of a parallelogram spanned

More information

AB CALCULUS SEMESTER A REVIEW Show all work on separate paper. (b) lim. lim. (f) x a. for each of the following functions: (b) y = 3x 4 x + 2

AB CALCULUS SEMESTER A REVIEW Show all work on separate paper. (b) lim. lim. (f) x a. for each of the following functions: (b) y = 3x 4 x + 2 AB CALCULUS Page 1 of 6 NAME DATE 1. Evaluate each it: AB CALCULUS Show all work on separate paper. x 3 x 9 x 5x + 6 x 0 5x 3sin x x 7 x 3 x 3 5x (d) 5x 3 x +1 x x 4 (e) x x 9 3x 4 6x (f) h 0 sin( π 6

More information

Examiner: D. Burbulla. Aids permitted: Formula Sheet, and Casio FX-991 or Sharp EL-520 calculator.

Examiner: D. Burbulla. Aids permitted: Formula Sheet, and Casio FX-991 or Sharp EL-520 calculator. University of Toronto Faculty of Applied Science and Engineering Solutions to Final Examination, June 216 Duration: 2 and 1/2 hrs First Year - CHE, CIV, CPE, ELE, ENG, IND, LME, MEC, MMS MAT187H1F - Calculus

More information

Describing motion: Kinematics in two dimension

Describing motion: Kinematics in two dimension Describing motion: Kinematics in two dimension Scientist Galileo Galilei Issac Newton Vocabulary Vector scalars Resultant Displacement Components Resolving vectors Unit vector into its components Average

More information

Pre-Test Developed by Sean Moroney and James Petersen UNDERSTANDING THE VELOCITY CURVE. The Velocity Curve in Calculus

Pre-Test Developed by Sean Moroney and James Petersen UNDERSTANDING THE VELOCITY CURVE. The Velocity Curve in Calculus in Calculus UNDERSTANDING THE VELOCITY CURVE Pre-Test Developed by Sean Moroney and James Petersen Introductory Calculus - in Calculus the Pre-Test Learning about the Velocity Curve During the course of

More information

Applied Calculus I Practice Final Exam Solution Notes

Applied Calculus I Practice Final Exam Solution Notes AMS 5 (Fall, 2009). Solve for x: 0 3 2x = 3 (.2) x Taking the natural log of both sides, we get Applied Calculus I Practice Final Exam Solution Notes Joe Mitchell ln 0 + 2xln 3 = ln 3 + xln.2 x(2ln 3 ln.2)

More information

KINEMATICS IN ONE DIMENSION p. 1

KINEMATICS IN ONE DIMENSION p. 1 KINEMATICS IN ONE DIMENSION p. 1 Motion involves a change in position. Position can be indicated by an x-coordinate on a number line. ex/ A bumblebee flies along a number line... x = 2 when t = 1 sec 2

More information

Chapter 2. Motion in One Dimension. AIT AP Physics C

Chapter 2. Motion in One Dimension. AIT AP Physics C Chapter 2 Motion in One Dimension Kinematics Describes motion while ignoring the agents that caused the motion For now, will consider motion in one dimension Along a straight line Will use the particle

More information

TEACHER NOTES TIMATH.COM: ALGEBRA 2 ID: and discuss the shortcomings of this

TEACHER NOTES TIMATH.COM: ALGEBRA 2 ID: and discuss the shortcomings of this Activity Overview In this activity students explore models for the elliptical orbit of Jupiter. Problem 1 reviews the geometric definition of an ellipse as students calculate for a and b from the perihelion

More information

Applications of Derivatives

Applications of Derivatives ApplicationsDerivativesII.nb 1 Applications of Derivatives Now that we have covered the basic concepts and mechanics of derivatives it's time to look at some applications. We will start with a summary

More information

Chapter 4. Motion in two and three dimensions

Chapter 4. Motion in two and three dimensions Chapter 4 Motion in two and three dimensions 4.2 Position and Displacement r =(x, y, z) =x î+y ĵ+z ˆk This vector is a function of time, describing the motion of the particle: r (t) =(x(t),y(t),z(t)) The

More information

PARAMETRIC EQUATIONS AND POLAR COORDINATES

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

More information

Dynamics. What You Will Learn. Introduction. Relating Position, Velocity, Acceleration and Time. Examples

Dynamics. What You Will Learn. Introduction. Relating Position, Velocity, Acceleration and Time. Examples Dynamics What You Will Learn How to relate position, velocity, acceleration and time. How to relate force and motion. Introduction The study of dynamics is the study of motion, including the speed and

More information

APPLICATIONS OF DIFFERENTIATION

APPLICATIONS OF DIFFERENTIATION 4 APPLICATIONS OF DIFFERENTIATION APPLICATIONS OF DIFFERENTIATION 4.9 Antiderivatives In this section, we will learn about: Antiderivatives and how they are useful in solving certain scientific problems.

More information

Overview of vector calculus. Coordinate systems in space. Distance formula. (Sec. 12.1)

Overview of vector calculus. Coordinate systems in space. Distance formula. (Sec. 12.1) Math 20C Multivariable Calculus Lecture 1 1 Coordinates in space Slide 1 Overview of vector calculus. Coordinate systems in space. Distance formula. (Sec. 12.1) Vector calculus studies derivatives and

More information

Lecture for Week 2 (Secs. 1.3 and ) Functions and Limits

Lecture for Week 2 (Secs. 1.3 and ) Functions and Limits Lecture for Week 2 (Secs. 1.3 and 2.2 2.3) Functions and Limits 1 First let s review what a function is. (See Sec. 1 of Review and Preview.) The best way to think of a function is as an imaginary machine,

More information

Parametric Functions and Vector Functions (BC Only)

Parametric Functions and Vector Functions (BC Only) Parametric Functions and Vector Functions (BC Only) Parametric Functions Parametric functions are another way of viewing functions. This time, the values of x and y are both dependent on another independent

More information

16.07 Dynamics. Problem Set 3

16.07 Dynamics. Problem Set 3 NAME :..................... Massachusetts Institute of Technology 16.07 Dynamics Problem Set 3 Out date: Sept 17, 2007 Due date: Sept 26, 2007 Problem 1 Problem 2 Problem 3 Problem 4 Study Time Time Spent

More information

Chapter 0 of Calculus ++, Differential calculus with several variables

Chapter 0 of Calculus ++, Differential calculus with several variables Chapter of Calculus ++, Differential calculus with several variables Background material by Eric A Carlen Professor of Mathematics Georgia Tech Spring 6 c 6 by the author, all rights reserved - Table of

More information

Vector Supplement Part 1: Vectors

Vector Supplement Part 1: Vectors Vector Supplement Part 1: Vectors A vector is a quantity that has both magnitude and direction. Vectors are drawn as directed line segments and are denoted by boldface letters a or by a. The magnitude

More information

Physics 8 Monday, September 12, 2011

Physics 8 Monday, September 12, 2011 Physics 8 Monday, September 12, 2011 If you didn t pick up second half of textbook (starting with Chapter 8) on Friday, you can pick it up now. The bookstore is expecting more clickers to arrive soon (tomorrow?

More information

Chapter 3. Motion in Two or Three dimensions. 3.1 Position and Velocity Vectors

Chapter 3. Motion in Two or Three dimensions. 3.1 Position and Velocity Vectors Chapter 3 Motion in Two Three dimensions 3.1 Position and Velocity Vects Extra dimensions. We now generalize the results of previous section to motion in me than one (spacial) dimension. In this chapter

More information

Calculus Vector Principia Mathematica. Lynne Ryan Associate Professor Mathematics Blue Ridge Community College

Calculus Vector Principia Mathematica. Lynne Ryan Associate Professor Mathematics Blue Ridge Community College Calculus Vector Principia Mathematica Lynne Ryan Associate Professor Mathematics Blue Ridge Community College Defining a vector Vectors in the plane A scalar is a quantity that can be represented by a

More information

What will you learn?

What will you learn? Section 2.2 Basic Differentiation Rules & Rates of Change Calc What will you learn? Find the derivative using the Constant Rule Find the derivative using the Power Rule Find the derivative using the Constant

More information

BROCK UNIVERSITY SOLUTIONS. 1. [1 point] A car is driving at a constant speed on a circular road. The force on a passenger in the car is

BROCK UNIVERSITY SOLUTIONS. 1. [1 point] A car is driving at a constant speed on a circular road. The force on a passenger in the car is BROCK UNIVERSITY Test 2: October 2014 Number of pages: 4 + formula sheet Course: PHYS 1P21/1P91 Number of students: 280 Examination date: 6 October 2014 Time of Examination: 13:00 13:50 Instructor: S.

More information

MAT 1339-S14 Class 4

MAT 1339-S14 Class 4 MAT 9-S4 Class 4 July 4, 204 Contents Curve Sketching. Concavity and the Second Derivative Test.................4 Simple Rational Functions........................ 2.5 Putting It All Together.........................

More information

Analytic Trigonometry. Copyright Cengage Learning. All rights reserved.

Analytic Trigonometry. Copyright Cengage Learning. All rights reserved. Analytic Trigonometry Copyright Cengage Learning. All rights reserved. 7.1 Trigonometric Identities Copyright Cengage Learning. All rights reserved. Objectives Simplifying Trigonometric Expressions Proving

More information

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22

MATH 32A: MIDTERM 1 REVIEW. 1. Vectors. v v = 1 22 MATH 3A: MIDTERM 1 REVIEW JOE HUGHES 1. Let v = 3,, 3. a. Find e v. Solution: v = 9 + 4 + 9 =, so 1. Vectors e v = 1 v v = 1 3,, 3 b. Find the vectors parallel to v which lie on the sphere of radius two

More information

Brief Review of Exam Topics

Brief Review of Exam Topics Math 32A Discussion Session Week 3 Notes October 17 and 19, 2017 We ll use this week s discussion session to prepare for the first midterm. We ll start with a quick rundown of the relevant topics, and

More information

The Basics of Physics with Calculus Part II. AP Physics C

The Basics of Physics with Calculus Part II. AP Physics C The Basics of Physics with Calculus Part II AP Physics C The AREA We have learned that the rate of change of displacement is defined as the VELOCITY of an object. Consider the graph below v v t lim 0 dx

More information

Parametric Equations, Vectors, and Vector Valued Functions. Different parametric equations can yield the same curve:

Parametric Equations, Vectors, and Vector Valued Functions. Different parametric equations can yield the same curve: Parametric Equations, Vectors, and Vector Valued Functions Different parametric equations can yield the same curve: x=t, y=t 2 for t in [ 1,1] and x=t 3, y=t 6 for t in [ 1,1] give the same parabolic arc,

More information

Differential Vector Calculus

Differential Vector Calculus Contents 8 Differential Vector Calculus 8. Background to Vector Calculus 8. Differential Vector Calculus 7 8.3 Orthogonal Curvilinear Coordinates 37 Learning outcomes In this Workbook you will learn about

More information

Math 153 Calculus III Notes

Math 153 Calculus III Notes Math 153 Calculus III Notes 10.1 Parametric Functions A parametric function is a where x and y are described by a function in terms of the parameter t: Example 1 (x, y) = {x(t), y(t)}, or x = f(t); y =

More information

5.3 Interpretations of the Definite Integral Student Notes

5.3 Interpretations of the Definite Integral Student Notes 5. Interpretations of the Definite Integral Student Notes The Total Change Theorem: The integral of a rate of change is the total change: a b F This theorem is used in many applications. xdx Fb Fa Example

More information

Multivariable Calculus Notes. Faraad Armwood. Fall: Chapter 1: Vectors, Dot Product, Cross Product, Planes, Cylindrical & Spherical Coordinates

Multivariable Calculus Notes. Faraad Armwood. Fall: Chapter 1: Vectors, Dot Product, Cross Product, Planes, Cylindrical & Spherical Coordinates Multivariable Calculus Notes Faraad Armwood Fall: 2017 Chapter 1: Vectors, Dot Product, Cross Product, Planes, Cylindrical & Spherical Coordinates Chapter 2: Vector-Valued Functions, Tangent Vectors, Arc

More information

1 Vector Geometry in Two and Three Dimensions

1 Vector Geometry in Two and Three Dimensions 1 Vector Geometry in Two and Three Dimensions 1.1 Vectors in Two Dimensions You ve probably heard of vectors as objects with both magnitude and direction, or something along these lines. Another way to

More information

MATH 2730: Multivariable Calculus. Fall 2018 C. Caruvana

MATH 2730: Multivariable Calculus. Fall 2018 C. Caruvana MATH 273: Multivariable Calculus Fall 218 C. Caruvana Contents 1 Vectors 1 1.1 Vectors in the Plane.................................... 1 1.1.1 Vector Addition.................................. 3 1.1.2

More information

MATH20411 PDEs and Vector Calculus B

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

More information

Physics Chapter 3 Notes. Section 3-1: Introduction to Vectors (pages 80-83)

Physics Chapter 3 Notes. Section 3-1: Introduction to Vectors (pages 80-83) Physics Chapter 3 Notes Section 3-1: Introduction to Vectors (pages 80-83) We can use vectors to indicate both the magnitude of a quantity, and the direction. Vectors are often used in 2- dimensional problems.

More information

spring mass equilibrium position +v max

spring mass equilibrium position +v max Lecture 20 Oscillations (Chapter 11) Review of Simple Harmonic Motion Parameters Graphical Representation of SHM Review of mass-spring pendulum periods Let s review Simple Harmonic Motion. Recall we used

More information

1 Vectors and 3-Dimensional Geometry

1 Vectors and 3-Dimensional Geometry Calculus III (part ): Vectors and 3-Dimensional Geometry (by Evan Dummit, 07, v..55) Contents Vectors and 3-Dimensional Geometry. Functions of Several Variables and 3-Space..................................

More information

(1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3

(1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3 Math 127 Introduction and Review (1) Recap of Differential Calculus and Integral Calculus (2) Preview of Calculus in three dimensional space (3) Tools for Calculus 3 MATH 127 Introduction to Calculus III

More information

Math 1241, Spring 2014 Section 3.3. Rates of Change Average vs. Instantaneous Rates

Math 1241, Spring 2014 Section 3.3. Rates of Change Average vs. Instantaneous Rates Math 1241, Spring 2014 Section 3.3 Rates of Change Average vs. Instantaneous Rates Average Speed The concept of speed (distance traveled divided by time traveled) is a familiar instance of a rate of change.

More information

Motion along a straight line. Physics 11a. 4 Basic Quantities in Kinematics. Motion

Motion along a straight line. Physics 11a. 4 Basic Quantities in Kinematics. Motion Physics 11a Motion along a straight line Motion Position and Average velocity and average speed Instantaneous velocity and speed Acceleration Constant acceleration: A special case Free fall acceleration

More information

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

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

More information

Solutions to review problems MAT 125, Fall 2004

Solutions to review problems MAT 125, Fall 2004 Solutions to review problems MAT 125, Fall 200 1. For each of the following functions, find the absolute maimum and minimum values for f() in the given intervals. Also state the value where they occur.

More information

3.1 Day 1: The Derivative of a Function

3.1 Day 1: The Derivative of a Function A P Calculus 3.1 Day 1: The Derivative of a Function I CAN DEFINE A DERIVATIVE AND UNDERSTAND ITS NOTATION. Last chapter we learned to find the slope of a tangent line to a point on a graph by using a

More information

Exercises for Multivariable Differential Calculus XM521

Exercises for Multivariable Differential Calculus XM521 This document lists all the exercises for XM521. The Type I (True/False) exercises will be given, and should be answered, online immediately following each lecture. The Type III exercises are to be done

More information

Computer Algebra for Physics Examples

Computer Algebra for Physics Examples Computer Algebra for Physics Examples Electrostatics, Magnetism, Circuits and Mechanics of Charged Particles Part 4 Mechanics of Charged Particles Leon Magiera and Josef Böhm V. Mechanics of Charged Particles

More information

Chapter 3 Acceleration

Chapter 3 Acceleration Chapter 3 Acceleration Slide 3-1 PackBack The first answer gives a good physical picture. The video was nice, and worth the second answer. https://www.youtube.com/w atch?v=m57cimnj7fc Slide 3-2 Slide 3-3

More information