Curvilinear motion describes a particle travelling along a curved path in space rather than a straight line (rectilinear motion). Unlike rotation about a fixed axis, there is no rigid body and no stationary axis.

Even with a constant speed, the direction of the velocity vector is constantly changing, which means acceleration is always present.

Coordinate Systems

Curvilinear motion can be described in a number of coordinate systems depending on how the path is described or constrained. A coordinate system can be chosen in order to simplify a problem.


Vector Definitions

Curvilinear motion is described using vectors as we need to account for the magnitude and direction of curved motion.

Kinematic QuantityVector NotationDerivative Definition
Position
Velocity
Acceleration

The magnitude of velocity (speed) is given by:


Rectangular Coordinates ()

Rectangular coordinates (also known as cartesian coordinates) are best used when paths are independent along perpendicular axes. Motion can be split into directions and be treated as 1D in each respective axis.

centre
The reference axes do not change direction over time for rectangular coordinates. Unit vectors () are constant in magnitude and direction.

Each kinematic quantity is split into components for each direction.


Normal & Tangential Coordinates ()

Normal and tangential coordinates are best used when the physical path of motion is known. Motion is split into normal & tangential components.

centre
The unit vectors () move with the particle. points towards the centre of curvature () and is tangent to the path. The reference frame constantly moves and rotates with the particle.

Radius of Curvature

The centre of curvature () is an imaginary point that lies on the concave side of the curve. The -axis has positive direction towards

The radius of curvature () is perpendicular distance from curve to .

An advantage of this coordinate system is that it isolates speed changes from the change in direction of the path. is known as tangential acceleration and is known as centripetal acceleration.

ParameterFormulaDescription
Position (scalar)Distance along the curve from a fixed reference point.
Velocity VectorTangent to path, no normal velocity.
Total AccelerationCombined vector tracking changes in both speed and path direction.
Tangential AccelerationParallel to travel; purely responsible for changing the object’s speed.
Normal AccelerationPerpendicular to travel; purely responsible for changing direction.

Path Angle

The path angle () is the angle the tangent vector makes with a fixed horizontal axis. Its time-derivative () represents the angular velocity of the velocity vector (how fast the particle is turning).

Particle’s speed along a curve is directly proportional to how sharply the curve bends () and how fast its direction changes ().

Normal acceleration can also be written in terms of the path angle:

Path angle formulas are useful for when we need to link path geometry and/or angular rotation to acceleration.

Special Cases of Motion

  1. Particle moves along a straight line
  2. Particle moves with constant speed along curve
  3. Tangential acceleration () is constant
  4. Particle moves along path

Three-Dimensional Normal & Tangential Motion

In 2D, the normal and tangential axes lie together in what is known as the osculating plane. When modelling curvilinear motion of a particle in 3D, we use a binomial axis () to represent the third dimension.

centre
The binomial axis is perpendicular to the osculating plane. Its unit vector is given by the cross product of the other two unit vectors:

There is no motion, velocity or acceleration in the binomial axis as the reference frame will instead rotate to account for change in direction.


Polar & Cylindrical Coordinates ()

Polar coordinates (2D) and cylindrical coordinates (3D) are best used when the motion of a particle is tracked from a central fixed point (origin/pole) rather than along its own path.

centre
The unit vectors for polar and cylindrical coordinates are attached to the particle. points radially outward from to the particle. is perpendicular to in the direction of increasing . As these terms rotate with the particle, differentiation produces additional terms for acceleration.

Unit Vector Notation

Traditionally, is used for the notation of unit vectors. However, you will find most notation in this vault will use instead, with for unit.

ParameterFormulaDescription
RadiusDistance from to particle.
Radial Velocity
Transverse Velocity
Radial Acceleration
Transverse Acceleration

const current = dv.current();
 
if (current && current.file.tags.some(t => t.toLowerCase() === "#topic")) {
    const inlinks = current.file.inlinks;
 
    // Split backlinks: general notes vs. lecture notes
    const lectureLinks = inlinks.where(l => l.path.includes("/Lecture Notes/"));
    const otherLinks = inlinks.where(l => !l.path.includes("/Lecture Notes/"));
 
    if (otherLinks.length > 0) {
        dv.header(4, "Links To This Page");
        dv.list(otherLinks);
    }
 
    if (lectureLinks.length > 0) {
        dv.header(4, "Referenced In Lecture Notes");
        dv.list(lectureLinks);
    }
}