RPM to Radians Per Second: The Ultimate Conversion Guide
Master the rpm to radians per second conversion. Get the exact formula, avoid critical rounding errors, understand the calculus, and use our free calculator.
You are staring at a motor spec sheet that says 3,000 RPM, but your kinematics equation demands radians per second. If you plug RPM directly into that formula, the entire calculation fails and your grade tanks. We have all been there. The tension between the mechanical world (which loves RPM) and the theoretical physics world (which demands rad/s) is one of the most frustrating hurdles in early engineering.
The math to fix this is actually entirely straightforward, even if your brain feels fried. You just multiply your RPM by the exact fraction π/30.
If you are just trying to survive an assignment or size a motor quickly, drop your number into the calculator below to get the precise answer immediately.
If you want to understand exactly why this works, how it affects your calculus, and how to write code to automate it, keep reading. We are going to break down the rpm to radians per second pipeline completely.
The Math Behind RPM to Radians Per Second
When you convert rpm to radians per second, you are translating a "real-world" mechanical measurement into the strict mathematical language of angular velocity. According to the International System of Units (SI), the radian is the standard, dimensionless measure of an angle.
The math requires changing two entirely different units at the same time:
- Distance (Revolutions to Radians): One full circle is defined mathematically as exactly 2π radians. So, to find out how much "distance" is covered in a circle, you multiply your RPM by 2π.
- Time (Minutes to Seconds): There are 60 seconds in a minute. To find the rate per second instead of per minute, you must divide your result by 60.
When you combine those two necessary steps (2π / 60), the fraction reduces perfectly to the base multiplier: π/30.
rad/s = RPM × (π / 30)

Step-by-Step Conversion Flow
Let's look at the numbers in a real-world scenario. Say you need to convert a standard electric motor spinning at 1,500 RPM for a physics midterm.
- Take your starting value: 1,500 RPM
- Apply the multiplier:
1,500 × (π/30) - Simplify the fraction:
1,500 / 30 = 50 - Final exact result:
50π rad/s
If you absolutely must punch it into a decimal-based software that cannot parse Pi, 50 multiplied by π is approximately 157.0796 rad/s. Always use at least four decimal places if you are forced to round.
The Standard Speeds Cheat Sheet
Whether you are looking at 120 RPM for an AC synchronous motor or testing 1 rpm to radians per second for a slow gear reduction, keeping a reference table handy saves time on exams.
| Machine / Object | RPM | Exact Formula | Exact rad/s | Approx Decimal (rad/s) |
|---|---|---|---|---|
| Clock second hand | 1 | 1 × (π/30) | π/30 | 0.1047 |
| Record Player | 33.33 | 33.33 × (π/30) | ~1.11π | 3.490 |
| AC Motor (Low Speed) | 120 | 120 × (π/30) | 4π | 12.566 |
| Hand Drill | 500 | 500 × (π/30) | 50π/3 | 52.360 |
| Electric Motor | 1500 | 1500 × (π/30) | 50π | 157.080 |
| Car Engine (Highway) | 3000 | 3000 × (π/30) | 100π | 314.159 |
| Hard Drive | 7200 | 7200 × (π/30) | 240π | 753.982 |
| Angle Grinder | 11000 | 11000 × (π/30) | 1100π/3 | 1151.917 |
Why Does Calculus Demand rad/s?
RPM is fantastic for humans. It is easy to picture a shaft spinning three thousand times a minute. It is intuitive. So why do physicists hate it? Because radians are the natural language of geometry and calculus.
A radian isn't just an arbitrary slice of a circle like a degree is (why 360? Because ancient Babylonians liked base-60 math). A radian relates directly to the physical radius of the circle. When the arc length along the edge of a circle equals the radius of that circle, the angle created is exactly one radian.
This mathematical purity means that when you take the derivative of trigonometric functions—which you must do to find acceleration from velocity—the math stays clean.
- The derivative of
sin(θ)where θ is in radians is simplycos(θ). - If you tried to take the derivative of
sin(θ)where θ is in degrees, the result is(π/180) * cos(θ).
Imagine having to carry that π/180 garbage through a massive calculus equation. It would be a disaster.
The Linear Velocity Formula (v = rω)
Because a radian is tied directly to the radius, using rad/s allows equations connecting rotational speed to linear speed to be incredibly clean. The classic kinematics formula for linear velocity (v) is simply the radius (r) multiplied by the angular velocity (ω):
v = r × ω
If you tried to plug RPM directly into that formula, your answer would be completely wrong. You must execute the rpm to radians per second conversion first. For example, if you want to find the linear velocity of a wheel spinning at 100 rad/s with a 0.5m radius, you can use our inline tool:
Calculating Centripetal Acceleration
Once you have your angular velocity in rad/s, you can also easily calculate the centripetal acceleration (the force pulling outward on a spinning object). The formula is:
a = r × ω²
If you are designing a flywheel, you need this formula to ensure the metal won't literally tear itself apart at high speeds. Again, this formula absolutely requires ω to be in radians per second.
| Flywheel Radius (m) | Speed (RPM) | Angular Velocity (rad/s) | Centripetal Acceleration (m/s²) |
|---|---|---|---|
| 0.25 | 3000 | 100π (~314.16) | ~24,674 |
| 0.50 | 3000 | 100π (~314.16) | ~49,348 |
| 0.25 | 6000 | 200π (~628.32) | ~98,696 |
Notice how doubling the radius doubles the acceleration, but doubling the RPM (and thus rad/s) quadruples it because ω is squared!
Coding the Conversion (Python & JavaScript)
If you are a computer science student or an engineer building a simulation, you will need to automate this conversion. Here is the safest, most precise way to code it without falling into the rounding trap.
Python:
import math
def rpm_to_rads(rpm):
# Uses math.pi for maximum floating-point precision
return rpm * (math.pi / 30)
# Example usage
motor_speed = 3000
angular_velocity = rpm_to_rads(motor_speed)
print(f"Angular Velocity: {angular_velocity} rad/s")
JavaScript:
function rpmToRads(rpm) {
// Uses Math.PI to preserve precision
return rpm * (Math.PI / 30);
}
// Example usage
const motorSpeed = 3000;
const angularVelocity = rpmToRads(motorSpeed);
console.log(`Angular Velocity: ${angularVelocity} rad/s`);
By relying on the built-in Pi constants in these languages, you push the rounding error down to the 15th or 16th decimal place, which is generally safe for anything short of orbital mechanics.
Real-World Engineering Scenarios
Why do we spend so much time on this single conversion? Because it is the bridge between the mechanical catalog and the physics simulator.
Scenario 1: Robotics and Joint Speed
When you buy a servo motor for a robotic arm, the box says "60 RPM." But when you program the kinematics solver to move the arm from Point A to Point B, the matrix math requires the joint speeds in rad/s. You must convert that 60 RPM to 2π rad/s so your software knows exactly how fast the arm is sweeping through its arc.
Scenario 2: Automotive Drivetrains
A car's dashboard shows the engine speed in RPM. However, to calculate the actual speed of the car rolling down the highway, an automotive engineer must convert that engine RPM (modified by the gear ratios) into the angular velocity of the tire in rad/s. They then multiply that rad/s by the radius of the tire to find the linear velocity (mph or km/h).
Scenario 3: Hard Drive Latency
A standard hard drive spins at 7,200 RPM. To calculate the rotational latency—the exact fraction of a second it takes for the data sector to spin under the read/write head—computer engineers convert that RPM to rad/s (roughly 754 rad/s) to accurately model the physics of the spinning platters.
Frequently Asked Questions
1. What is the precise multiplier to convert RPM to rad/s?
The precise mathematical multiplier is π/30. You simply multiply your Revolutions Per Minute by this exact fraction to get radians per second.
2. Can I just multiply RPM by 0.10472?
You can for rough estimates, but it is highly discouraged for precision engineering. 0.10472 is a rounded approximation of π/30. Using it introduces compounding rounding errors into multi-step physics problems.
3. How do I go backward from rad/s to RPM?
To reverse the math, you multiply your rad/s value by the reciprocal fraction: 30/π. We have a full guide covering how to convert radians per second to rpm.
4. What is the difference between rad/s and Hertz (Hz)?
Hertz (Hz) measures full revolutions per second, while rad/s measures radians per second. Because there are 2π radians in a single revolution, 1 Hz is exactly equal to 2π rad/s. To find Hz from RPM, simply divide by 60.
5. Why do motor datasheets use RPM instead of rad/s?
RPM is an intuitive, human-readable format for technicians and mechanics working on physical hardware. However, physics and calculus equations require rad/s, which is why this conversion is universally necessary.
6. Is angular velocity a vector?
Yes, angular velocity is technically a vector quantity. It has a magnitude (the rad/s speed we calculate here) and a direction. The direction is determined by the "right-hand rule" along the axis of rotation.
7. Does the radius of the object change the rad/s?
No. Angular velocity is independent of the radius. If a record is spinning at 33 RPM, a point near the center and a point on the outer edge both have the exact same angular velocity in rad/s. (However, the outer point will have a higher linear velocity).
8. What is 1 RPM in rad/s?
Exactly 1 RPM is equal to π/30 rad/s, which is approximately 0.1047 rad/s.
9. How do you find degrees per second from RPM?
First, convert your RPM to rad/s. Then, multiply the rad/s value by 180/π. Alternatively, since 1 RPM is 1 revolution (360 degrees) per 60 seconds, 1 RPM is exactly 6 degrees per second.
10. Can I use this formula for planetary orbits?
Yes. The math of angular velocity is universal. Whether it is a gear in a watch or the Earth orbiting the Sun, the conversion from revolutions-per-time-period to radians-per-second remains mathematically identical.
Don't risk a rounding error on your next project. Bookmark our RPM to Radians Per Second Calculator to instantly generate exact π-based answers, decimal approximations, and linear velocities anytime you need them.
Ready to run the numbers?
Get your result instantly — private, in your browser.