# Straight-line motion: position, velocity, acceleration

> AP Calculus AB · Unit 4: Contextual Applications of Differentiation
> Source: https://www.owlsprep.com/study/ap-calculus-ab-u4-straight-line-motion-position-velocity/

This subtopic connects differentiation to kinematics, covering core relationships between position, velocity, and acceleration for straight-line motion. You will learn to calculate these quantities and interpret motion for AP exam questions.

**Prerequisites:** [Basic derivative rules including the chain rule](https://www.owlsprep.com/study/ap-calculus-ab-u2-derivative-rules/); Interpreting the sign of a derivative on an interval; Solving polynomial and trigonometric equations

## Learning objectives

- Relate position, velocity, and acceleration using derivatives
- Interpret direction of motion and identify when a particle is at rest
- Determine if a particle is speeding up or slowing down
- Calculate speed and its rate of change
- Avoid common exam pitfalls in straight-line motion problems

## Position and Instantaneous Velocity

Position of a particle at time $t$ is given by the function $s(t)$, which returns the coordinate of the particle on the straight axis. Time is always non-negative ($t \geq 0$) in AP motion problems, and displacement between $t=a$ and $t=b$ is $s(b)-s(a)$, the net change in position, distinct from total distance traveled.

**Instantaneous Velocity** — The instantaneous rate of change of position with respect to time, equal to the first derivative of the position function.

*Notation:* $v(t)$

*Example:* If $s(t)$ is position in cm, $v(t)$ has units of cm/s.

$$v(t) = s'(t) = \frac{ds}{dt}$$

The sign of velocity tells you direction of motion: $v(t) > 0$ means the particle moves in the positive direction (right/up), $v(t) < 0$ means it moves in the negative direction (left/down), and $v(t)=0$ means the particle is instantaneously at rest. Common exam questions ask for velocity at a specific time or for all times when the particle is at rest.

**Worked example:** The position of a particle moving along the x-axis is given by $s(t) = t^3 - 6t^2 + 9t + 2$ for $t \geq 0$, where $s$ is measured in centimeters and $t$ in seconds. (a) Find the velocity of the particle at $t=2$ seconds. (b) At what times $t>0$ is the particle at rest?

1. Velocity is the first derivative of position, so differentiate using the power rule:
2. $$v(t) = s'(t) = 3t^2 - 12t + 9$$
3. For part (a), substitute $t=2$ into $v(t)$:
4. $$v(2) = 3(2)^2 - 12(2) + 9 = 12 - 24 + 9 = -3 \text{ cm/s}$$
5. For part (b), the particle is at rest when $v(t)=0$, so set the derivative equal to zero:
6. $$3t^2 - 12t + 9 = 0$$
7. Factor the quadratic and solve:
8. $$3(t-1)(t-3) = 0$$
9. Both solutions are positive, so the particle is at rest at $t=1$ s and $t=3$ s.

> **Exam tip:** Always include units in your final answer for FRQ motion problems. AP graders dock 1 point for missing or incorrect units on contextual questions, so add units to every final answer by default.

*Calculator:* allowed

## Acceleration and Speeding Up/Slowing Down

Acceleration is the instantaneous rate of change of velocity with respect to time, making it the second derivative of the original position function.

**Instantaneous Acceleration** — The derivative of velocity, or the second derivative of position, that describes how velocity is changing over time.

*Notation:* $a(t)$

$$a(t) = v'(t) = \frac{dv}{dt} = s''(t) = \frac{d^2s}{dt^2}$$

A key conceptual skill tested heavily on the AP exam is determining if a particle is speeding up or slowing down. The rule is: if $v(t)$ and $a(t)$ have the same sign (both positive or both negative), the particle is speeding up; if they have opposite signs, the particle is slowing down.

**Worked example:** For the particle with position $s(t) = t^3 - 6t^2 + 9t + 2$ ($t \geq 0$, units cm, s), find the acceleration at $t=1.5$ seconds, and determine if the particle is speeding up or slowing down at that time.

1. We already found velocity from the previous example: calculate $v(1.5)$:
2. $$v(1.5) = 3(2.25) - 12(1.5) + 9 = -2.25 \text{ cm/s}$$
3. Velocity is negative at $t=1.5$. Acceleration is the derivative of velocity, so differentiate $v(t)$:
4. $$a(t) = 6t - 12 \text{ cm/s}^2$$
5. Substitute $t=1.5$ to find acceleration:
6. $$a(1.5) = 6(1.5) - 12 = -3 \text{ cm/s}^2$$
7. Acceleration is also negative. Since $v(t)$ and $a(t)$ have the same sign (both negative), the particle is speeding up at $t=1.5$ seconds.

> **Exam tip:** Never assume that negative acceleration means the particle is slowing down. The sign of acceleration alone only describes how velocity is changing; you always need to compare the sign of acceleration to the sign of velocity to check if speed is increasing or decreasing.

*Calculator:* allowed

## Speed and its Rate of Change

Velocity and speed are often confused, but they are distinct quantities. Velocity is a one-dimensional vector that includes direction encoded in its sign. Speed is a non-negative scalar that has no direction, equal to the absolute value of velocity.

**Speed** — Non-negative magnitude of velocity, which describes how fast the particle is moving regardless of direction.

*Notation:* $\text{Speed}(t)$

*Example:* Speed is always positive or zero, never negative.

$$\text{Speed}(t) = |v(t)|$$

AP Calculus AB also tests the rate of change of speed, which can be derived using the chain rule for absolute value, for $v(t) \neq 0$:

$$\frac{d}{dt}|v(t)| = \frac{v(t) \cdot v'(t)}{|v(t)|} = \frac{v(t)a(t)}{|v(t)|}$$

The sign of this derivative confirms the earlier speeding up/slowing down rule: when $v$ and $a$ have the same sign, the derivative of speed is positive (speed increasing), and when opposite, it is negative (speed decreasing).

**Worked example:** A particle moving along the x-axis has velocity $v(t) = 4\cos(2t)$ at time $t \geq 0$, where velocity is measured in m/s. (a) What is the speed of the particle at $t = \frac{\pi}{3}$? (b) What is the rate of change of speed at that time?

1. For part (a), first calculate velocity at the given time:
2. $$v\left(\frac{\pi}{3}\right) = 4\cos\left(\frac{2\pi}{3}\right) = 4\left(-\frac{1}{2}\right) = -2 \text{ m/s}$$
3. Speed is the absolute value of velocity, so:
4. $$\left|v\left(\frac{\pi}{3}\right)\right| = |-2| = 2 \text{ m/s}$$
5. For part (b), first find acceleration by differentiating velocity:
6. $$a(t) = v'(t) = -8\sin(2t) \implies a\left(\frac{\pi}{3}\right) = -4\sqrt{3} \text{ m/s}^2$$
7. Substitute into the derivative of speed formula:
8. $$\frac{d}{dt}|v(t)| = \frac{v(t) a(t)}{|v(t)|} = \frac{(-2)(-4\sqrt{3})}{|-2|} = 4\sqrt{3} \text{ m/s}^2$$

> **Exam tip:** Circle the word "speed" every time it appears in a question, to remind yourself to take the absolute value of velocity. It is one of the most common avoidable mistakes on AP motion questions.

*Calculator:* allowed

## AP-Style Practice Worked Examples

**Worked example:** A particle moves along the x-axis with position function $s(t) = e^{t} - 3t$ for $t \geq 0$. What is the speed of the particle at $t=1$?
A) $e - 3$
B) $3 - e$
C) $e$
D) $3$

1. Speed is the absolute value of velocity, and velocity is the first derivative of position. Differentiate $s(t):
2. $$v(t) = s'(t) = e^t - 3$$
3. Substitute $t=1$ to get $v(1) = e - 3 \approx -0.282$, which is negative.
4. Take the absolute value to get speed: $|e - 3| = 3 - e$, since $e < 3$. The correct answer is B.

**Worked example:** A marble moves along a straight horizontal track with position given by $s(t) = t^4 - 10t^3 + 24t^2 + 5$ for $t \geq 0$, where $s$ is in meters and $t$ in seconds.
(a) Find the velocity function $v(t)$, and calculate $v(2)$.
(b) Find all non-negative values of $t$ for which the particle is at rest.
(c) Determine if the particle is speeding up or slowing down at $t=1.5$. Justify your answer.

1. Part (a): Velocity is the first derivative of position:
2. $$v(t) = s'(t) = 4t^3 - 30t^2 + 48t$$
3. Substitute $t=2$:
4. $$v(2) = 4(8) - 30(4) + 48(2) = 8 \text{ m/s}$$
5. Part (b): The particle is at rest when $v(t)=0$. Factor $v(t)$:
6. $$2t(2t^2 - 15t + 24) = 0$$
7. Solve for roots using the quadratic formula:
8. $$t = 0, \frac{15 \pm \sqrt{33}}{4}$$
9. All solutions are non-negative, so the particle is at rest at $t=0$, $t \approx 2.31$ s, and $t \approx 5.19$ s.
10. Part (c): Calculate acceleration and values at $t=1.5$:
11. $$a(t) = 12t^2 - 60t + 48, \quad v(1.5)=18 \text{ (positive)}, \quad a(1.5)=-15 \text{ (negative)}$$
12. Since $v(t)$ and $a(t)$ have opposite signs, the particle is slowing down at $t=1.5$.

*Calculator:* allowed

## Common pitfalls

- **Wrong:** Concluding that a particle changes direction at $t=a$ just because $v(a)=0$.
  - Why it fails: Students memorize "particle changes direction when velocity is zero" but forget that velocity must change sign at that point; a particle can stop momentarily without reversing direction.
  - Correct: Always test the sign of $v(t)$ on intervals on either side of any $v(t)=0$ solution before concluding direction changes.
- **Wrong:** Stating that a particle is slowing down because acceleration is negative.
  - Why it fails: Students associate "negative acceleration" with "deceleration" and assume it means slowing down regardless of velocity's sign.
  - Correct: Always write down the sign of both $v(t)$ and $a(t)$ for the given time, then check for same (speeding up) or opposite (slowing down) signs.
- **Wrong:** Writing velocity as the answer when asked for acceleration.
  - Why it fails: When working quickly, students forget that acceleration is the derivative of velocity, so they stop at the first derivative of position.
  - Correct: Write $s(t) \to v(t)=s' \to a(t)=v'=s''$ at the top of every motion problem to label derivatives clearly.
- **Wrong:** Keeping negative time solutions when solving for when the particle is at rest.
  - Why it fails: Students solve the equation $v(t)=0$ but forget the context that $t \geq 0$ for all motion problems.
  - Correct: Cross out any negative solutions for $t$ immediately after solving, since time starts at $t=0$.
- **Wrong:** Forgetting to take the absolute value of velocity when calculating speed.
  - Why it fails: Students are used to working with velocity, so they just copy the velocity value (including the negative sign) as the answer for speed.
  - Correct: Add a step to take absolute value immediately after calculating velocity whenever speed is requested.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Position | $s(t)$ | Gives coordinate of particle at time $t \geq 0$; sign gives position relative to origin. |
| Instantaneous Velocity | $v(t) = s'(t) = \frac{ds}{dt}$ | Sign gives direction: $v>0$ = positive direction, $v<0$ = negative direction, $v=0$ = at rest. |
| Instantaneous Acceleration | $a(t) = v'(t) = s''(t) = \frac{d^2s}{dt^2}$ | Sign tells if velocity is increasing ($a>0$) or decreasing ($a<0$). |
| Speed | $\text{Speed}(t) = \|v(t)\|$ | Non-negative scalar with no direction; always take absolute value of velocity. |
| Rate of Change of Speed | $\frac{d}{dt}\|v(t)\| = \frac{v(t)a(t)}{\|v(t)\|}$ | Valid for $v(t) \neq 0$; positive = speed increasing, negative = speed decreasing. |
| Speeding Up / Slowing Down | Same sign of $v,a$ = speeding up; opposite = slowing down | Never use acceleration sign alone to make this determination. |
| Change of Direction | Occurs when $v(t)$ changes sign at $t=a$ | $v(a)=0$ is required but not sufficient; must confirm sign change. |

## What's next

This topic is the foundation for all motion problems you will encounter for the rest of the AP Calculus AB course. Immediately next, you will learn how to use integration to find position from velocity and calculate total distance traveled from velocity, a common FRQ topic that relies entirely on your ability to connect derivatives of position, velocity, and acceleration. Without mastering the relationships between these three functions from this subtopic, solving integral motion problems will be extremely difficult, as you will not be able to correctly interpret the quantities you calculate. This topic also builds core conceptual understanding of derivatives as rates of change, which is central to all contextual applications of differentiation, including related rates.

- [Rates of change in applied contexts other than motion](https://www.owlsprep.com/study/ap-calculus-ab-u4-rates-of-change-in-applied/)
- [Introduction to Related Rates](https://www.owlsprep.com/study/ap-calculus-ab-u4-introduction-to-related-rates/)
- [Solving related rates problems](https://www.owlsprep.com/study/ap-calculus-ab-u4-solving-related-rates-problems/)

---

From [OwlsPrep](https://www.owlsprep.com) — free study guides for A-Level, IB, AP and IGCSE, written against the official syllabus. Canonical page: https://www.owlsprep.com/study/ap-calculus-ab-u4-straight-line-motion-position-velocity/
