6 Calculus
(Relevant Section of the Textbook: 13.2 Derivatives and Integrals of Vector Functions)
A parametric curve is made of
6.1 Limits
Taking limits of a parametric curve is just taking the limit of each component function.
Definition 6.1 (Limits of Parametric Curves) If
Example 6.1 (Limits of Parametric Curves) Let
Computing the limit componentwise we see we just need to evaluate three limits:
The first of these is continuous at zero so we can just plug in. THe second need L’Hospital’s rule, and the third needs us to cancel a
6.2 Differentiation
Recall the single variable definition of the derivative:
Definition 6.2 (Differentiating Curves) The derivative of a parametric curve
The numerator here is a vector, which gets infinitesimally small as
However, we don’t need to calculate the derivative using this limit statement every time! We can use the fact that limits distribute over the components of the function to prove that we can also take the derivative one component at a time.
Theorem 6.1 (Differentiating Curves Componentwise) If
Because of this, its straightforward to show that differenatiation of vector functions obeys the familiar laws of single variable calculus: you can break it up over sums, and pull out scalars. But now there are three types of products (do we multiply the vector function by a scalar function, or dot or cross product it with another vector?)
Theorem 6.2 (Differentiation Product Laws)
There is also a chain rule: we can’t compose a vector function inside another vector function, but we can plug a scalar function in as the parameter in a curve!
Theorem 6.3 (The chain rule)
You probably notice a similarity to the single variable calculus versions in all of these: they’re as close as possible, except now being about vector functions! But these simple looking rules actually provide us a new powerful set of tools, they tell us about the rate of change at the same time as dot and cross products - which we know can measure areas and angles!
As one quick example, we’ll prove a very useful fact about curves defined by vectors of constant length.
Theorem 6.4 (Curves on the Sphere) If a curve
Proof. Since the magnitude of a vector can be calculated from its dot product, we see that
The dot product is commutative (order doesnt matter) so we can re-arrange the left hand side:
But dividng by two - this says that the dot product of
6.3 Integration
The story of vector valued integration is similarly straightforward. Recall the definition of integration via Riemann sum:
We can apply the same definition to vector valued functions, as its composed of just the operations of addition and scalar multiplication!
Definition 6.3 (Integrating Curves) If
But wait! Both scalar multiplication and addition are things we can do componentwise for a vector. So we can break this big Riemann sum up into a standard riemann sum in each component. Taking the limit, this tells us we can integrate vector functions componentwise.
Theorem 6.5 (Integrating Curves Componentwise) If
We will only find limited use of this in our class, as there are other types of integrals along curves that will prove more important. Nonetheless this does show up in many applications of multivariable calculus to engineering and physics, where one may wish to recover position from velocity, or velocity from acceleration.
Example 6.2 (Displacement from Veloicty) If
The same is true for acceleration: all of our phones have a sensor inside called a three axis accelerometer. These measure the acceleration as a function of time
But this is not what software running on the phone wants or needs: it cares about your position in space! (Say, if you’re using your phone in augmented reality). To get this, it integrates the acceleration to get velocity, and then integrates again the veloctity to get position! P For any engineers in the class - if you have accelerometers in the Hive: this could be a fun project to code up! Write a small python program to numerically integrate (ie compute a Riemann sum) from the output data of an accelerometer, and track your hand’s position as you move it around.
6.4 Videos
Calculus Blue series on calculus of curves:
Here are some videos practicing the concepts that we have done examples of in lecture. First, limits of vector functions.
Next, derivatives of vector functions.
And the proofs of the differentiation laws for the dot product and cross product:
Also, integrating vector functions.