Study Guide

Kinematic applications of calculus

IB Mathematics: Applications and Interpretation SLΒ· 5.7 Kinematic applications of calculusΒ· 35 min read

1. Relationships Between Kinematic Quantitiesβ˜…β˜…β˜†β˜†β˜†β± 15 min

πŸ“˜ Definition

Core Kinematic Relationships

dsdt=v,dvdt=a=d2sdt2\frac{ds}{dt} = v, \quad \frac{dv}{dt} = a = \frac{d^2s}{dt^2}

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.

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 , where is in metres and is in seconds, . Find the velocity and acceleration functions.

  1. 1

    Velocity is the first derivative of displacement:

  2. 2
    v(t)=ddt(2t3βˆ’15t2+36t+4)=6t2βˆ’30t+36=6(tβˆ’2)(tβˆ’3)v(t) = \frac{d}{dt}\left(2t^3 - 15t^2 + 36t + 4\right) = 6t^2 - 30t + 36 = 6(t-2)(t-3)
  3. 3

    Acceleration is the first derivative of velocity:

  4. 4
    a(t)=ddt(6t2βˆ’30t+36)=12tβˆ’30a(t) = \frac{d}{dt}\left(6t^2 - 30t + 36\right) = 12t - 30
  5. 5

    Final answer with units: and .

2. Initial Conditions and Finding Unknown Quantitiesβ˜…β˜…β˜…β˜†β˜†β± 20 min

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 ) to solve for this constant. Common initial conditions are

  • Starts from rest:

  • Starts at origin:

  • Initial displacement:

πŸ“ Worked Example

A particle starts from rest at the origin ( when ) with acceleration . Find the displacement function .

  1. 1

    Integrate acceleration to get velocity, including the constant of integration:

  2. 2
    v(t)=∫(4tβˆ’6)dt=2t2βˆ’6t+Cv(t) = \int (4t - 6) dt = 2t^2 - 6t + C
  3. 3

    Use initial condition to find :

  4. 4
    0=2(0)2βˆ’6(0)+Cβ€…β€ŠβŸΉβ€…β€ŠC=00 = 2(0)^2 - 6(0) + C \implies C = 0
  5. 5

    Integrate velocity to get displacement, with a new constant:

  6. 6
    s(t)=∫(2t2βˆ’6t)dt=23t3βˆ’3t2+Ds(t) = \int (2t^2 - 6t) dt = \frac{2}{3}t^3 - 3t^2 + D
  7. 7

    Use initial condition to find :

  8. 8
    0=0βˆ’0+Dβ€…β€ŠβŸΉβ€…β€ŠD=00 = 0 - 0 + D \implies D = 0
  9. 9

    Final displacement function: metres.

βœ“ Quick check

Test your understanding of constants:

  1. A particle has , and . What is the value of the integration constant when finding ?

    • 1

    • 2

    • 3

    • 4

    Reveal answer
    2 β€”

    Correct: , substitute :

3. Calculating Total Distance Travelledβ˜…β˜…β˜…β˜…β˜†β± 20 min

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.

πŸ“˜ Definition

Total Distance Travelled

For a time interval , total distance is the integral of the absolute value of velocity. A particle reverses direction when , so split the interval at all such points, then add the absolute value of the integral over each sub-interval.

Total Distance=∫ab∣v(t)∣dt\text{Total Distance} = \int_a^b |v(t)| dt
πŸ“ Worked Example

For the particle with , find the total distance travelled between and seconds.

  1. 1

    Find all points where in the interval:

  2. 2
    6t2βˆ’30t+36=6(tβˆ’2)(tβˆ’3)=0β€…β€ŠβŸΉβ€…β€Št=2,t=36t^2 - 30t + 36 = 6(t-2)(t-3) = 0 \implies t=2, t=3
  3. 3

    Check the sign of on each sub-interval: on , on , on

  4. 4

    Set up the total distance integral:

  5. 5
    D=∫02v(t)dt+∫23βˆ’v(t)dt+∫34v(t)dtD = \int_0^2 v(t) dt + \int_2^3 -v(t) dt + \int_3^4 v(t) dt
  6. 6

    Evaluate each integral using the antiderivative :

  7. 7
    ∫02v(t)dt=s(2)βˆ’s(0)=32βˆ’4=32\int_0^2 v(t) dt = s(2)-s(0) = 32 - 4 = 32
  8. 8
    ∫23βˆ’v(t)dt=βˆ’(s(3)βˆ’s(2))=βˆ’(31βˆ’32)=1\int_2^3 -v(t) dt = -(s(3)-s(2)) = -(31-32) = 1
  9. 9
    ∫34v(t)dt=s(4)βˆ’s(3)=36βˆ’31=5\int_3^4 v(t) dt = s(4)-s(3) = 36 - 31 = 5
  10. 10

    Add the results: . Total distance is 38 metres.

4. Common Pitfalls

Wrong move:

Giving displacement instead of total distance when asked

Why:

Displacement is faster to calculate and the question wording is easy to misread

Correct move:

Always scan for the keywords "distance" vs "displacement" before starting your calculation

Wrong move:

Forgetting to solve for the constant of integration

Why:

It is common to assume the constant is zero without checking the given initial condition

Correct move:

Always write after integration, then explicitly solve for using the given initial condition

Wrong move:

Not splitting the integral at points where

Why:

Direct integration of over the whole interval cancels out positive and negative areas, giving displacement, not distance

Correct move:

Find all roots of in the time interval first, then split the integral at every root

Wrong move:

Forgetting to include units in the final answer

Why:

Kinematic problems are applied, so units are required but easy to omit

Correct move:

Note the units given in the question, and add the correct units to your final answer

5. Quick Reference Cheatsheet

Quantity

Differential Relationship

Integral Relationship

Velocity

Acceleration

N/A

Displacement

N/A

Total Distance

N/A

, split at

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.

  • 2023 Β· 1

    Find acceleration at given time

  • 2022 Β· 2

    Calculate total distance travelled

  • 2021 Β· 1

    Find displacement from acceleration

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.