DEV Community

Cover image for Moment of Inertia: The Rotational Twin of Mass
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

Moment of Inertia: The Rotational Twin of Mass

Spin a bicycle wheel by hand and then try to spin the bicycle's pedal crank with the same effort. The wheel, though probably lighter, fights back far harder. Hold an umbrella by its handle and rotate it; now hold it by the middle and do the same — the second case feels noticeably easier. In both situations the mass has not changed. What changed is how that mass is distributed relative to the axis you are turning it about.

This article explains the quantity that captures that effect: the moment of inertia. It is the rotational counterpart of mass, it controls how torque turns into angular acceleration, and it depends not just on how much matter a body contains but on where that matter is.

Why this calculation matters

In straight-line motion, mass tells you how stubborn an object is: the same force produces less acceleration on a heavier body. Rotation has an exact analogue. The moment of inertia, written I, tells you how stubborn a body is against being angularly accelerated. A large I means you need a large torque to change its spin rate.

This number drives real design decisions. Flywheels are deliberately given a large moment of inertia so they store rotational energy and smooth out fluctuations in engines and presses. Robot arms and machine spindles are designed for a small moment of inertia so motors can start and stop them quickly. The natural frequency of a torsional vibration depends on it; the swing rate of a pendulum depends on it; the time a turbine takes to run up to speed depends on it. Get the moment of inertia wrong and your torque budget, your response time, and your energy estimates all inherit the error.

The core formula

For a single particle of mass m at a distance r from the axis of rotation, the moment of inertia is simply:

I = m * r^2
Enter fullscreen mode Exit fullscreen mode

The square on r is the key. Doubling the distance of a mass from the axis quadruples its contribution. For an extended body you add up every element of mass, each weighted by the square of its own distance from the axis. That integral has been worked out for common shapes, so you rarely need to do it yourself.

For a solid disk or solid cylinder rotating about its central axis, the result is:

I = 0.5 * M * R^2
Enter fullscreen mode Exit fullscreen mode

where M is the total mass and R the outer radius. A thin ring of the same mass and radius has I = M*R^2 — twice as much, because all of its mass sits at the rim rather than being spread inward. That contrast is worth holding onto: rim mass is "expensive," mass near the axis is "cheap."

Once you have I, the rotational form of Newton's second law connects torque and angular acceleration:

tau = I * alpha
Enter fullscreen mode Exit fullscreen mode

Here tau is the applied torque and alpha is the angular acceleration. It mirrors F = m*a exactly, with torque replacing force and I replacing mass. When a body needs to be moved off the axis it spins about, the parallel axis theorem shifts the value:

I = I_centre + M * d^2
Enter fullscreen mode Exit fullscreen mode

with d the offset distance. Moving the axis away from the centre of mass always increases I.

A worked example

Take a solid disk of mass M = 5 kg and radius R = 0.2 m, rotating about its central axis. We want its moment of inertia and the torque needed to spin it up.

Step 1 — moment of inertia. Use the solid-disk formula:

I = 0.5 * M * R^2
I = 0.5 * 5 * (0.2)^2
I = 0.5 * 5 * 0.04
I = 0.10 kg.m^2
Enter fullscreen mode Exit fullscreen mode

Step 2 — required torque. Suppose the disk must reach an angular acceleration of alpha = 10 rad/s^2. Apply the rotational second law:

tau = I * alpha
tau = 0.10 * 10
tau = 1.0 N.m
Enter fullscreen mode Exit fullscreen mode

So a torque of 1.0 N.m gives this disk an angular acceleration of 10 rad/s^2. The result is modest because the disk is small and most of its mass sits well inside the rim. If the same 5 kg were reshaped into a thin ring of the same 0.2 m radius, I would double to 0.20 kg.m^2 and the same job would demand 2.0 N.m — twice the torque for an identical mass, purely because of where the material sits.

Common mistakes

Confusing area moment of inertia with mass moment of inertia. They share a name but are different quantities. The area moment, in units of length to the fourth power, governs beam bending and stiffness. The mass moment, in kg.m^2, governs rotational dynamics. Make sure you are using the one your problem actually needs.

Forgetting that I depends on the axis. A body does not have a single moment of inertia. It has a different value for every possible axis. Always state the axis, and use the parallel axis theorem when the rotation axis is not through the centre of mass.

Using mass alone to judge how hard something is to spin. Two bodies of equal mass can have very different moments of inertia. A hollow tube resists angular acceleration far more than a solid rod of the same mass, because its material is held out near the radius.

Mixing up radius and diameter. The disk formula uses R, the radius. Slipping a diameter into R inflates I by a factor of four. Check which one your data gives you.

Treating I as constant when geometry changes. A figure skater pulling in their arms lowers their moment of inertia and speeds up; an extending robot arm raises it. If the mass distribution shifts during motion, so does I.

Try the interactive NovaSolver calculator

Memorising formulas for every shape is tedious, and the parallel axis theorem is easy to slip on. The Moment of Inertia Calculator on NovaSolver handles seven cross-section shapes and returns Ixx, Iyy, area, centroid position, and section modulus, with a parallel axis offset input built in. It has separate area-moment and mass-moment modes, so you can switch between the section property that controls beam stiffness and the mass property that controls rotational dynamics — using density and thickness inputs for the mass case.

Related calculators

  • Flywheel Calculator — see how a deliberately large moment of inertia stores rotational energy and steadies a drivetrain.
  • Circular Motion Simulator — the point-mass case behind I = m*r^2, with velocity and centripetal acceleration shown live.
  • Torsional Vibration Analysis — where the moment of inertia of each disc sets the natural frequencies of a rotating shaft system.

You can explore the rest in the physics tools hub.

Closing note

The moment of inertia is one of those quantities that becomes intuitive once you stop thinking about it as a formula and start thinking about it as a question: how far from the axis is the mass? Because distance enters squared, the answer is dominated by the material farthest out. Keep mass near the axis and a body spins up easily; push it to the rim and the same mass becomes stubborn. Get that picture right, pick the correct axis, choose between the area and mass versions deliberately, and the whole of rotational dynamics — torque, energy, vibration — opens up from this single number.

Top comments (0)