Study Guide

Defining and differentiating vector-valued functions

AP Calculus BCΒ· AP Calculus BC CED β€” Parametric Equations, Polar Coordinates, and Vector-Valued FunctionsΒ· 14 min read

1. Definition and Domain of Vector-Valued Functionsβ˜…β˜…β˜†β˜†β˜†β± 3 min

A vector-valued function takes a single scalar input (almost always , typically representing time in motion problems) and outputs a multi-dimensional vector. For AP Calculus BC, you will almost always work with 2D vector-valued functions, with 3D functions following identical rules.

πŸ“˜ Definition

2D Vector-Valued Function

rβƒ—(t)=⟨x(t),y(t)⟩=x(t)i^+y(t)j^\vec{r}(t) = \langle x(t), y(t) \rangle = x(t)\hat{i} + y(t)\hat{j}

A function where and are scalar functions of the common scalar parameter . The domain of is the intersection of the domains of and : is only in the domain if it is valid for both components.

Example:

A parametric curve is the graph of a 2D vector-valued position function.

πŸ“ Worked Example

Find the domain of the vector-valued function .

  1. 1

    First, find the domain of the x-component . A rational function is undefined when the denominator is zero, so:

    tβˆ’2β‰ 0β€…β€ŠβŸΉβ€…β€Štβ‰ 2t - 2 \neq 0 \implies t \neq 2
  2. 2

    The domain of is all real numbers except , or . Next, find the domain of the y-component . The expression inside a square root must be non-negative, so:

    4βˆ’tβ‰₯0β€…β€ŠβŸΉβ€…β€Št≀44 - t \geq 0 \implies t \leq 4
  3. 3

    The domain of is . The domain of is the intersection of the two domains, so we only keep values valid for both components. Excluding and all , the final domain is:

    (βˆ’βˆž,2)βˆͺ(2,4](-\infty, 2) \cup (2, 4]

Exam tip:

When finding the domain of a vector-valued function, always check each component individually. Common hidden restrictions (denominators, square roots, logarithms) are easy to miss if you only check one component.

2. Component-Wise Differentiation of Vector-Valued Functionsβ˜…β˜…β˜…β˜†β˜†β± 4 min

The derivative of a vector-valued function is defined by the same limit structure as scalar functions:

rβƒ—β€²(t)=lim⁑Δtβ†’0rβƒ—(t+Ξ”t)βˆ’rβƒ—(t)Ξ”t\vec{r}'(t) = \lim_{\Delta t \to 0} \frac{\vec{r}(t + \Delta t) - \vec{r}(t)}{\Delta t}

Because vector operations work component-wise, this limit simplifies to a straightforward rule: differentiate each component function separately using all the single-variable differentiation rules you already know. For , the derivative is:

rβƒ—β€²(t)=⟨xβ€²(t),yβ€²(t)⟩\vec{r}'(t) = \langle x'(t), y'(t) \rangle

Intuitively, is the tangent vector to the curve traced by at time , pointing in the direction the curve moves as increases.

πŸ“ Worked Example

Find for the vector-valued function .

  1. 1

    Differentiate the x-component using the power rule and chain rule for the sine term:

    xβ€²(t)=3t2+2cos⁑(2t)x'(t) = 3t^2 + 2\cos(2t)
  2. 2

    Differentiate the y-component using the product rule and chain rule for the exponential term:

    yβ€²(t)=(2tet2)ln⁑t+et2β‹…1t=et2(2tln⁑t+1t)y'(t) = \left(2t e^{t^2}\right)\ln t + e^{t^2} \cdot \frac{1}{t} = e^{t^2} \left(2t \ln t + \frac{1}{t}\right)
  3. 3

    Substitute into both derivatives:

    xβ€²(1)=3(1)2+2cos⁑(2(1))=3+2cos⁑2β‰ˆ2.168yβ€²(1)=e12(2(1)ln⁑1+11)=e(0+1)=eβ‰ˆ2.718x'(1) = 3(1)^2 + 2\cos(2(1)) = 3 + 2\cos 2 \approx 2.168 \\ y'(1) = e^{1^2} \left(2(1)\ln 1 + \frac{1}{1}\right) = e(0 + 1) = e \approx 2.718
  4. 4

    The resulting derivative vector at is:

    rβƒ—β€²(1)=⟨3+2cos⁑2,eβŸ©β‰ˆβŸ¨2.168,2.718⟩\vec{r}'(1) = \langle 3 + 2\cos 2, e \rangle \approx \langle 2.168, 2.718 \rangle

Exam tip:

Always differentiate each component separately, don't try to treat the entire vector as a single scalar expression. If you forget that differentiation is component-wise, you will almost certainly make an error on components with products or composite functions.

3. Velocity, Acceleration, and Speed from Position Vectorsβ˜…β˜…β˜…β˜†β˜†β± 3 min

When is the position vector of an object moving in the plane at time , its first and second derivatives have standard physical interpretations that are frequently tested on the AP exam:

Position: rβƒ—(t)=⟨x(t),y(t)⟩Velocity: vβƒ—(t)=rβƒ—β€²(t)=⟨xβ€²(t),yβ€²(t)⟩Acceleration: aβƒ—(t)=rβƒ—β€²β€²(t)=⟨xβ€²β€²(t),yβ€²β€²(t)⟩\begin{aligned} \text{Position: } \vec{r}(t) &= \langle x(t), y(t) \rangle \\ \text{Velocity: } \vec{v}(t) &= \vec{r}'(t) = \langle x'(t), y'(t) \rangle \\ \text{Acceleration: } \vec{a}(t) &= \vec{r}''(t) = \langle x''(t), y''(t) \rangle \end{aligned}

Velocity is a vector that gives the direction of motion and the rate of movement. Speed is the scalar magnitude (length) of the velocity vector, calculated as:

speed=∣vβƒ—(t)∣=(xβ€²(t))2+(yβ€²(t))2\text{speed} = |\vec{v}(t)| = \sqrt{(x'(t))^2 + (y'(t))^2}
πŸ“ Worked Example

A particle moves in the plane with position vector for . Find the velocity vector, acceleration vector, and speed at .

  1. 1

    Differentiate position to get velocity, then substitute . We know and :

    vβƒ—(t)=βŸ¨βˆ’3sin⁑t,4cos⁑tβŸ©β€…β€ŠβŸΉβ€…β€Švβƒ—(Ο€3)=βŸ¨βˆ’332,2⟩\vec{v}(t) = \langle -3\sin t, 4\cos t \rangle \implies \vec{v}\left(\frac{\pi}{3}\right) = \left\langle -\frac{3\sqrt{3}}{2}, 2 \right\rangle
  2. 2

    Differentiate velocity to get acceleration, then substitute :

    aβƒ—(t)=βŸ¨βˆ’3cos⁑t,βˆ’4sin⁑tβŸ©β€…β€ŠβŸΉβ€…β€Šaβƒ—(Ο€3)=βŸ¨βˆ’32,βˆ’23⟩\vec{a}(t) = \langle -3\cos t, -4\sin t \rangle \implies \vec{a}\left(\frac{\pi}{3}\right) = \left\langle -\frac{3}{2}, -2\sqrt{3} \right\rangle
  3. 3

    Calculate speed as the magnitude of velocity:

    speed=(βˆ’332)2+(2)2=274+4=434=432β‰ˆ3.279\text{speed} = \sqrt{\left(-\frac{3\sqrt{3}}{2}\right)^2 + (2)^2} = \sqrt{\frac{27}{4} + 4} = \sqrt{\frac{43}{4}} = \frac{\sqrt{43}}{2} \approx 3.279

Exam tip:

When a question asks for speed, remember it is a scalar magnitude, not a vector. If you give the velocity vector instead of its magnitude on an FRQ, you will lose points. Always check the question wording for "velocity" vs "speed".

4. Chain Rule for Composite Vector-Valued Functionsβ˜…β˜…β˜…β˜…β˜†β± 3 min

If is a function of , and is itself a function of , we have a composite vector-valued function . The chain rule for this composite follows the same structure as for scalar functions, and still operates component-wise:

dr⃗dt=dr⃗du⋅dudt\frac{d\vec{r}}{dt} = \frac{d\vec{r}}{du} \cdot \frac{du}{dt}

For , this expands to:

drβƒ—dt=⟨xβ€²(u(t))β‹…uβ€²(t),yβ€²(u(t))β‹…uβ€²(t)⟩\frac{d\vec{r}}{dt} = \langle x'(u(t)) \cdot u'(t), y'(u(t)) \cdot u'(t) \rangle

This rule commonly appears in motion problems where a path parameter is a function of time, or when reparameterizing a curve.

πŸ“ Worked Example

Let , where . Find when .

  1. 1

    First, find by differentiating each component of with respect to :

    drβƒ—du=⟨2u,3⟩\frac{d\vec{r}}{du} = \langle 2u, 3 \rangle
  2. 2

    Next, find by differentiating with respect to :

    dudt=2e2t\frac{du}{dt} = 2e^{2t}
  3. 3

    Apply the chain rule to get the general derivative:

    drβƒ—dt=drβƒ—duβ‹…dudt=⟨2uβ‹…2e2t,3β‹…2e2t⟩=⟨4ue2t,6e2t⟩\frac{d\vec{r}}{dt} = \frac{d\vec{r}}{du} \cdot \frac{du}{dt} = \langle 2u \cdot 2e^{2t}, 3 \cdot 2e^{2t} \rangle = \langle 4u e^{2t}, 6 e^{2t} \rangle
  4. 4

    Substitute to get the derivative at the requested point. Note that :

    drβƒ—dt∣t=0=⟨4(1)(1),6(1)⟩=⟨4,6⟩\frac{d\vec{r}}{dt}\bigg|_{t=0} = \langle 4(1)(1), 6(1) \rangle = \langle 4, 6 \rangle

Exam tip:

When working with composite vector-valued functions, don't forget to multiply by the derivative of the inner function. It's easy to drop the term because you're focused on remembering component-wise differentiation.

5. Concept Checkβ˜…β˜…β˜…β˜†β˜†β± 1 min

βœ“ Quick check

Test your understanding of component-wise differentiation with this AP-style multiple choice question:

  1. Which of the following is equal to the derivative of ?

    Reveal answer
    1 β€”

    Correct! You applied the product rule and chain rule to the x-component, and the chain rule to the y-component to get the right result.

6. Common Pitfalls

Wrong move:

Writing the domain of as , ignoring the restriction on the x-component.

Why:

Students only check the last component and forget that all components must be defined for to be in the domain.

Correct move:

Always write down the domain of each component separately, then compute their intersection to get the domain of the vector-valued function.

Wrong move:

Differentiating as , forgetting the product rule on each component.

Why:

Students think vector differentiation adds new rules that override single-variable rules, or forget that every component needs full single-variable differentiation.

Correct move:

For each component, apply all relevant single-variable differentiation rules (product, quotient, chain) as if it were a standalone scalar function.

Wrong move:

When asked for speed of a particle with velocity , answering instead of .

Why:

Students confuse velocity (a vector quantity) with speed (the scalar magnitude of velocity).

Correct move:

Always check the question wording: if it asks for speed, compute the magnitude of the velocity vector after finding the components.

Wrong move:

Differentiating as , forgetting the chain rule on the inner term.

Why:

Students focus on remembering that differentiation is component-wise and miss chain rule steps inside individual components.

Correct move:

After writing the derivative of the outer function in each component, always check if the argument of the function is anything other than , and multiply by the derivative of the argument if needed.

Wrong move:

For the composite vector function , writing the derivative as , omitting the factor of on both components.

Why:

Students forget that the chain rule applies to the whole vector, not just individual components, and miss the common outer factor.

Correct move:

Always apply the chain rule explicitly: write before substituting values.

7. Quick Reference Cheatsheet

Category

Formula

Notes

General 2D Vector-Valued Function

Input is scalar , output is vector; domain is intersection of domains of

Derivative of Vector-Valued Function

Differentiate each component separately; is the tangent vector to the curve

Velocity Vector (from position)

Vector describing direction and rate of motion

Acceleration Vector

Second derivative of the position vector

Speed (scalar)

Magnitude of the velocity vector; always a non-negative scalar

Chain Rule for Composite

For , applies component-wise to all dimensions

When this came up on past exams

AI-estimated based on syllabus patterns β€” cross-check with official past papers for accuracy. Use only as revision-focus signals.

  • 2022 Β· MCQ

    Find domain of vector-valued function

  • 2023 Β· FRQ

    Calculate speed from position vector

What's Next

Now that you have mastered defining and differentiating vector-valued functions, you are ready to extend these concepts to integrating vector-valued functions, which is used to find position from velocity and calculate displacement along a parametric curve. This topic is the foundation for analyzing motion in the plane, a common AP Calculus BC FRQ topic that ties together parametric equations, vector functions, and derivatives of scalar functions. Understanding vector-valued functions also prepares you for arc length calculation of parametric curves and the calculus of polar functions, which are other key topics in Unit 9 of the AP Calculus BC CED.