# Kinematics in One Dimension

> AP Physics C: Mechanics · 10-15% of total exam weight
> Source: https://www.owlsprep.com/study/ap-physics-c-mech-u1-kinematics-in-one-dimension/

This module covers core 1D kinematics for AP Physics C: Mechanics, including definitions of average and instantaneous motion quantities, calculus relationships, constant-acceleration kinematics, and graphical motion analysis.

**Prerequisites:** Basic single-variable differentiation and integration; Coordinate system setup; Quadratic equation solution methods; [Unit 1 Overview](https://www.owlsprep.com/study/ap-physics-c-mech-u1-overview/)

## Learning objectives

- Define core kinematic quantities for 1D motion
- Apply calculus definitions of instantaneous and average motion
- Use constant-acceleration kinematic equations correctly
- Interpret and analyze 1D motion graphs
- Solve non-constant acceleration problems via integration

## Core Definitions of 1D Kinematics

Kinematics is the branch of mechanics that describes the motion of objects without reference to the forces that cause motion. One-dimensional kinematics restricts all motion to a single straight line, so all motion quantities have only a magnitude and a sign (positive/negative, indicating direction along the line).

**Displacement vs Distance Traveled** — Displacement ($\Delta x$) is the net change in position: $\Delta x = x_f - x_i$, a signed quantity. Distance traveled is the total length of the path taken, always non-negative.

*Example:* A ball thrown up and caught at launch has 0 displacement but non-zero distance traveled

**Average Velocity vs Average Speed** — Average velocity is displacement divided by time interval, a signed quantity. Average speed is total distance traveled divided by time, always non-negative.

*Example:* The throw-and-catch ball has 0 average velocity but non-zero average speed

> **note**
>
> The AP exam regularly tests the critical distinction between displacement/distance and velocity/speed.

## Calculus Relationships for Motion Quantities

All kinematic quantities are defined by relationships between position, time, velocity, and acceleration. Average quantities are defined over a finite time interval $\Delta t = t_f - t_i$:

$$\bar{v} = \frac{\triangle x}{\triangle t} = \frac{x_f - x_i}{t_f - t_i}, \quad \bar{a} = \frac{\triangle v}{\triangle t} = \frac{v_f - v_i}{t_f - t_i}$$

Instantaneous quantities are the limit of average quantities as $\Delta t$ approaches 0, resulting in the derivative definitions core to AP Physics C:

$$v(t) = \frac{dx}{dt}, \quad a(t) = \frac{dv}{dt} = \frac{d^2x}{dt^2}$$

To reverse this relationship (get velocity from acceleration, position from velocity), use integration with the constant of integration fixed by initial conditions:

$$v(t) = v_0 + \int_0^t a(\tau) d\tau, \quad x(t) = x_0 + \int_0^t v(\tau) d\tau$$

**Worked example:** The position of a toy car moving along a straight track is given by $x(t) = 2t^3 - 12t^2 + 10t + 4$, where $x$ is in meters and $t$ in seconds for $t \geq 0$. Find (a) the instantaneous velocity at $t=2$ s, and (b) the average velocity between $t=1$ s and $t=3$ s.

1. For instantaneous velocity, use the derivative definition:
2. $$latex: v(t) = \frac{dx}{dt} = 6t^2 - 24t + 10$$
3. Substitute $t=2$ s:
4. $$latex: v(2) = 6(2^2) - 24(2) + 10 = -14 \, \text{m/s}$$
5. The negative sign indicates velocity points in the negative x-direction. For average velocity, calculate position at the interval endpoints:
6. $$latex: x(1) = 4 \, \text{m}, \quad x(3) = -20 \, \text{m}$$
7. Calculate average velocity:
8. $$latex: \bar{v} = \frac{x(3) - x(1)}{3 - 1} = \frac{-20 - 4}{2} = -12 \, \text{m/s}$$

> **tip**
>
> Always confirm the sign of your velocity/acceleration matches your coordinate system: AP problems accept the sign as a full answer for direction.

## Constant Acceleration Kinematics

When acceleration is constant ($a(t) = a$ for all $t$), the general integration rules simplify to a set of three widely used kinematic equations. These are extremely useful for problems like free fall, constant braking, etc., but are only valid when acceleration is constant.

$$\begin{aligned} v(t) &= v_0 + at \\ x(t) &= x_0 + v_0 t + \frac{1}{2} a t^2 \\ v^2 &= v_0^2 + 2a(x - x_0) \end{aligned}$$

**Worked example:** A ball is thrown straight upward from ground level with an initial speed of 24 m/s. Acceleration due to gravity is 9.8 m/s² downward. What is the maximum height the ball reaches before it begins falling back down?

1. Define the coordinate system: origin at ground level ($x_0 = 0$), positive x upward. Acceleration points downward, so:
2. $$latex: a = -9.8 \, \text{m/s}^2$$
3. At maximum height, the ball stops moving upward before reversing direction, so its instantaneous velocity is $v = 0$ at this point.
4. We know initial velocity, final velocity, and acceleration, so we use the time-independent kinematic equation to avoid solving for time first:
5. $$latex: v^2 = v_0^2 + 2a(x - x_0)$$
6. Substitute values and solve for maximum height $h$:
7. $$latex: 0^2 = (24)^2 + 2(-9.8)(h - 0) \implies h = \frac{576}{19.6} \approx 29.4 \, \text{m}$$

> **exam_tip**
>
> For problems asking for maximum height, speed at a specific position, or stopping distance, the time-independent equation will almost always save you time compared to solving for time first.

## Graphical Analysis of One-Dimensional Motion

AP Physics C heavily tests the ability to interpret the three common motion graphs, with relationships that follow directly from calculus definitions:

1. On an $x$ vs $t$ graph: Slope at any point = instantaneous velocity; average slope between two points = average velocity.
2. On a $v$ vs $t$ graph: Slope at any point = instantaneous acceleration; net area under the graph between two times = displacement $\Delta x$.
3. On an $a$ vs $t$ graph: Area under the graph between two times = change in velocity $\Delta v$.

**Worked example:** The velocity of a car accelerating from rest along a straight highway follows $v(t) = 2t$ for $0 \leq t \leq 10$ s, and $v(t) = 40 - 2t$ for $10 < t \leq 20$ s, where $v$ is in m/s. What is the total displacement of the car between $t=0$ and $t=20$ s?

1. By definition, displacement equals the net area under the $v(t)$ curve between the two times.
2. The $v(t)$ curve forms a triangle with base 20 s and maximum height 20 m/s. Calculate area directly:
3. $$latex: \text{Area} = \frac{1}{2} \times \text{base} \times \text{height} = \frac{1}{2} \times 20 \times 20 = 200 \, \text{m}$$
4. Integration confirms the result:
5. $$latex: \triangle x = \int_0^{10} 2t dt + \int_{10}^{20} (40-2t) dt = 100 + 100 = 200 \, \text{m}$$

> **exam_tip**
>
> If the area under a graph is a simple geometric shape, you do not need to integrate to find it—calculating the area directly saves valuable exam time.

## Additional Practice Worked Examples

**Check your understanding**

Test your understanding of average acceleration:

1. The position of an object moving along the x-axis is given by $x(t) = t^3 - 3t^2$, where $x$ is in meters and $t$ is in seconds. What is the average acceleration between $t=1$ s and $t=3$ s?

   - 0 m/s²
   - 3 m/s²
   - 6 m/s²
   - 12 m/s²

   *Why:* Average acceleration is $\Delta v / \Delta t$. Differentiate to get $v(t) = 3t^2 - 6t$, so $v(1) = -3$ m/s, $v(3) = 9$ m/s, $\Delta v = 12$ m/s, $\Delta t = 2$ s, giving 6 m/s².

**Worked example:** A high-speed passenger train is traveling at 80 m/s along a straight track when the driver spots a broken rail 1500 m ahead and triggers emergency braking. Emergency braking gives the train a constant deceleration of 2.5 m/s². Determine if the train stops before reaching the broken rail, and if so, how far the train is from the broken rail when it comes to rest.

1. Define origin at the train's position when braking is triggered, positive x toward the broken rail. Initial conditions: $x_0 = 0$, $v_0 = 80$ m/s, $a = -2.5$ m/s². When stopped, $v = 0$.
2. Use the time-independent constant acceleration equation:
3. $$latex: v^2 = v_0^2 + 2a(x - x_0) \implies 0 = 80^2 + 2(-2.5)x \implies x = 1280 \, \text{m}$$
4. Calculate distance from the broken rail:
5. $$latex: 1500 - 1280 = 220 \, \text{m}$$
6. The train stops 220 m before the broken rail, avoiding collision.

## Common pitfalls

- **Wrong:** Using constant-acceleration kinematic equations when acceleration is non-constant.
  - Why it fails: Students default to memorized simple equations even when acceleration is given as a function of time or position.
  - Correct: Always check if acceleration is constant before using these equations; if not, use integration of $a(t)$ to find $v(t)$ and $x(t)$.
- **Wrong:** Using displacement instead of total distance traveled to calculate average speed.
  - Why it fails: Students confuse displacement (net change in position) with distance (total path length).
  - Correct: Always calculate average speed as total distance traveled divided by time, never displacement divided by time.
- **Wrong:** Forgetting to add initial velocity/position when integrating acceleration/velocity.
  - Why it fails: Students forget the constant of integration is fixed by initial conditions, not zero by default.
  - Correct: Always add the initial condition when writing the result of an integral for kinematics.
- **Wrong:** Mixing up slope and area for motion graphs, e.g., taking area under a position vs time graph as displacement.
  - Why it fails: Students confuse the order of differentiation between position, velocity, and acceleration.
  - Correct: Remember: slope of lower = higher (x→v→a, so slope of x is v, slope of v is a), area of higher = lower (area of a is Δv, area of v is Δx).
- **Wrong:** Assuming gravity is always positive regardless of coordinate system direction.
  - Why it fails: Students memorize gravity as 9.8 m/s² and forget to adjust the sign to match the coordinate system.
  - Correct: Always assign the sign of acceleration based on direction relative to your defined positive axis before plugging into equations.

## Cheatsheet

| Category | Formula | Notes |
| --- | --- | --- |
| Average Velocity | $\bar{v} = \frac{\Delta x}{\Delta t} = \frac{x_f - x_i}{t_f - t_i}$ | Displacement over time, direction-sensitive |
| Average Acceleration | $\bar{a} = \frac{\Delta v}{\Delta t} = \frac{v_f - v_i}{t_f - t_i}$ | Change in velocity over time |
| Instantaneous Velocity | $v(t) = \frac{dx}{dt}$ | Derivative of position with respect to time |
| Instantaneous Acceleration | $a(t) = \frac{dv}{dt} = \frac{d^2x}{dt^2}$ | Derivative of velocity, second derivative of position |
| General Velocity from Acceleration | $v(t) = v_0 + \int_0^t a(\tau) d\tau$ | Works for any acceleration, constant or non-constant |
| General Position from Velocity | $x(t) = x_0 + \int_0^t v(\tau) d\tau$ | Works for any velocity, constant or non-constant |
| Constant Acceleration: Velocity | $v = v_0 + at$ | Only valid for constant $a$ |
| Constant Acceleration: Position | $x = x_0 + v_0 t + \frac{1}{2} a t^2$ | Only valid for constant $a$ |
| Constant Acceleration: Time-Independent | $v^2 = v_0^2 + 2a(x - x_0)$ | Only valid for constant $a$ |
| Motion Graph Rules | Slope = derivative, Area = integral | Slope of $x$-$t$ = $v$, slope of $v$-$t$ = $a$; area of $a$-$t$ = $\Delta v$, area of $v$-$t$ = $\Delta x$ |

## What's next

One-dimensional kinematics is the fundamental foundation for all subsequent topics in AP Physics C: Mechanics. You will next extend these calculus-based definitions of position, velocity, and acceleration to two dimensions to solve problems involving projectile motion and relative motion. Without mastering the sign conventions, derivative/integral relationships, and constant acceleration rules you learned here, multi-dimensional kinematics and all later topics involving motion will be significantly harder to master. This topic also feeds directly into Newton's second law of motion, where you will connect acceleration to net force, and later into energy and momentum, where you will integrate acceleration and velocity to find work and impulse.

- [Kinematics in Two Dimensions](https://www.owlsprep.com/study/ap-physics-c-mech-u1-kinematics-in-two-dimensions/)
- [Newton's Laws of Motion Overview](https://www.owlsprep.com/study/ap-physics-c-mech-u2-overview/)
- [Newton's First Law and Inertial Frames](https://www.owlsprep.com/study/ap-physics-c-mech-u2-newton-s-first-law-and/)

---

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-physics-c-mech-u1-kinematics-in-one-dimension/
