# Kinematic applications of calculus

> IB Mathematics: Applications and Interpretation SL · Unit 5: Calculus
> Source: https://www.owlsprep.com/study/ib-math-ai-sl-u5-kinematic-applications-of-calculus/

This subtopic connects calculus concepts to straight-line motion, linking displacement, velocity, and acceleration through differentiation and integration. You will learn to find unknown motion quantities and calculate total distance travelled over a given time interval.

**Prerequisites:** [Differentiation of basic functions](https://www.owlsprep.com/study/ib-math-ai-sl-u5-basic-differentiation/); [Basic indefinite and definite integration](https://www.owlsprep.com/study/ib-math-ai-sl-u5-basic-integration/); Basic kinematic quantity definitions

## Learning objectives

- Relate displacement, velocity and acceleration using derivatives and integrals
- Solve straight-line motion problems with initial conditions
- Calculate total distance travelled from a velocity function
- Interpret and answer common exam kinematics questions

## Relationships Between Kinematic Quantities

**Core Kinematic Relationships** — For motion along a straight line, velocity is the first derivative of displacement with respect to time. Acceleration is the first derivative of velocity (or second derivative of displacement) with respect to time. To reverse, integrate acceleration to get velocity, and integrate velocity to get displacement.

*Notation:* \frac{ds}{dt} = v, \quad \frac{dv}{dt} = a = \frac{d^2s}{dt^2}

All quantities are signed: positive values indicate motion in one direction, while negative values indicate motion in the opposite direction. This sign convention allows us to use calculus to describe direction changes naturally.

**Worked example:** The displacement of a particle is given by $s(t) = 2t^3 - 15t^2 + 36t + 4$, where $s$ is in metres and $t$ is in seconds, $t \geq 0$. Find the velocity and acceleration functions.

1. Velocity is the first derivative of displacement:
2. $$v(t) = \frac{d}{dt}\left(2t^3 - 15t^2 + 36t + 4\right) = 6t^2 - 30t + 36 = 6(t-2)(t-3)$$
3. Acceleration is the first derivative of velocity:
4. $$a(t) = \frac{d}{dt}\left(6t^2 - 30t + 36\right) = 12t - 30$$
5. Final answer with units: $v(t) = 6t^2 - 30t + 36 \, \text{ms}^{-1}$ and $a(t) = 12t - 30 \, \text{ms}^{-2}$.

> **exam_tip**
>
> Always include correct units for kinematic quantities in your final answer, as marks are regularly awarded for units.

## Initial Conditions and Finding Unknown Quantities

When integrating acceleration to get velocity or velocity to get displacement, you get a constant of integration. You need an initial condition (a known value of the quantity at a given time, usually $t=0$) to solve for this constant. Common initial conditions are

- Starts from rest: $v(0) = 0$
- Starts at origin: $s(0) = 0$
- Initial displacement: $s(0) = s_0$

**Worked example:** A particle starts from rest at the origin ($s=0, v=0$ when $t=0$) with acceleration $a(t) = 4t - 6 \, \text{ms}^{-2}$. Find the displacement function $s(t)$.

1. Integrate acceleration to get velocity, including the constant of integration:
2. $$v(t) = \int (4t - 6) dt = 2t^2 - 6t + C$$
3. Use initial condition $v(0) = 0$ to find $C$:
4. $$0 = 2(0)^2 - 6(0) + C \implies C = 0$$
5. Integrate velocity to get displacement, with a new constant:
6. $$s(t) = \int (2t^2 - 6t) dt = \frac{2}{3}t^3 - 3t^2 + D$$
7. Use initial condition $s(0) = 0$ to find $D$:
8. $$0 = 0 - 0 + D \implies D = 0$$
9. Final displacement function: $s(t) = \frac{2}{3}t^3 - 3t^2$ metres.

**Check your understanding**

Test your understanding of constants:

1. A particle has $v(t) = 3t^2 + 2$, and $s(1) = 5$. What is the value of the integration constant $C$ when finding $s(t)$?

   - 1
   - 2
   - 3
   - 4

   *Why:* Correct: $s(t) = t^3 + 2t + C$, substitute $s(1)=5$: $5 = 1 + 2 + C \implies C=2$

## Calculating Total Distance Travelled

A very common exam question asks for total distance travelled, not displacement. Displacement only measures the net change in position from start to end, while total distance measures all movement, even when the particle reverses direction.

**Total Distance Travelled** — For a time interval $[a,b]$, total distance is the integral of the absolute value of velocity. A particle reverses direction when $v(t) = 0$, so split the interval at all such points, then add the absolute value of the integral over each sub-interval.

$$\text{Total Distance} = \int_a^b |v(t)| dt$$

**Worked example:** For the particle with $v(t) = 6t^2 - 30t + 36$, find the total distance travelled between $t=0$ and $t=4$ seconds.

1. Find all points where $v(t) = 0$ in the interval:
2. $$6t^2 - 30t + 36 = 6(t-2)(t-3) = 0 \implies t=2, t=3$$
3. Check the sign of $v(t)$ on each sub-interval: $v>0$ on $[0,2]$, $v<0$ on $[2,3]$, $v>0$ on $[3,4]$
4. Set up the total distance integral:
5. $$D = \int_0^2 v(t) dt + \int_2^3 -v(t) dt + \int_3^4 v(t) dt$$
6. Evaluate each integral using the antiderivative $s(t) = 2t^3 - 15t^2 + 36t + 4$:
7. $$\int_0^2 v(t) dt = s(2)-s(0) = 32 - 4 = 32$$
8. $$\int_2^3 -v(t) dt = -(s(3)-s(2)) = -(31-32) = 1$$
9. $$\int_3^4 v(t) dt = s(4)-s(3) = 36 - 31 = 5$$
10. Add the results: $D = 32 + 1 + 5 = 38$. Total distance is 38 metres.

> **exam_tip**
>
> Always read the question carefully: 70% of students lose marks by giving displacement when total distance is requested.

## Common pitfalls

- **Wrong:** Giving displacement instead of total distance when asked
  - Why it fails: Displacement is faster to calculate and the question wording is easy to misread
  - Correct: Always scan for the keywords "distance" vs "displacement" before starting your calculation
- **Wrong:** Forgetting to solve for the constant of integration
  - Why it fails: It is common to assume the constant is zero without checking the given initial condition
  - Correct: Always write $+C$ after integration, then explicitly solve for $C$ using the given initial condition
- **Wrong:** Not splitting the integral at points where $v(t)=0$
  - Why it fails: Direct integration of $v(t)$ over the whole interval cancels out positive and negative areas, giving displacement, not distance
  - Correct: Find all roots of $v(t)$ in the time interval first, then split the integral at every root
- **Wrong:** Forgetting to include units in the final answer
  - Why it fails: Kinematic problems are applied, so units are required but easy to omit
  - Correct: Note the units given in the question, and add the correct units to your final answer

## Cheatsheet

| Quantity | Differential Relationship | Integral Relationship |
| --- | --- | --- |
| Velocity | $v = \frac{ds}{dt}$ | $v = \int a \, dt + C$ |
| Acceleration | $a = \frac{dv}{dt} = \frac{d^2s}{dt^2}$ | N/A |
| Displacement | N/A | $s = \int v \, dt + C$ |
| Total Distance $[a,b]$ | N/A | $\int_a^b \|v(t)\| dt$, split at $v(t)=0$ |

## What's next

Kinematic applications of calculus is a core applied calculus topic that is commonly tested in both Paper 1 and Paper 2 of IB AI SL. The concepts here connect directly to the core ideas of derivatives as rates of change and integrals as accumulators of change, reinforcing your understanding of core calculus principles. Mastering this topic will prepare you for other applied problems involving rates of change that appear in the exam, and builds on your basic kinematics knowledge from earlier in the course. It is also a popular question for extended response problems, so ensuring you are confident with all steps will help you earn full marks on these higher-weight questions.

---

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/ib-math-ai-sl-u5-kinematic-applications-of-calculus/
