The mass moment of inertia measures a rigid body’s resistance to angular acceleration about a given axis.

Units:

Alternatively, for a point mass, mass moment of inertia is equal to:

Mass moment of inertia is related to angular acceleration by:


Radius of Gyration

Instead of quoting directly, many problems (including textbook wheel/drum problems) give a radius of gyration :

is the distance from the axis at which the entire mass could be concentrated to give the same . It is not a physical dimension of the body.


Parallel-Axis Theorem

  • moment of inertia about an axis through the mass center G, parallel to the axis of interest (also notated as )
  • perpendicular distance between the two parallel axes
  • total mass of the body

Non-Centroidal Axis

This theorem only ever moves you to or from the centroidal axis. To go from one non-centroidal axis to another, you must go through : subtract to get , then add .

Geometric vs Mass Centre

is the geometric centre.
is the mass centre.

unless and coincide.

Moment of Inertia for Common Shapes

ShapeAxis
Slender rod,
length
, through centre
Slender rod,
length
, through end
Thin ring/hoop,
radius
Through centre, to plane
Circular disk,
radius
Through centre, to plane
Rectangular plate,
sides
Through centre, to plane
Solid sphere,
radius
Through centre

Composite bodies

For a body built from several simple shapes, find (about the same axis) for each part separately. Apply the parallel-axis theorem to each part individually as needed and then sum them. Subtract for holes/cut-outs.


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);
    }
}