Mechanics

Newton's First Law

An object at rest stays at rest, an object in motion stays in motion — unless a force acts

Newton's first law (the law of inertia) says an object at rest stays at rest, and an object in motion continues at constant velocity, unless acted on by a net external force. It defines what an inertial reference frame is and overturned 2,000 years of Aristotelian thinking that motion required a sustained "mover." Critical to understanding everything from why seatbelts work to why planets keep orbiting.

  • StatementΣF = 0 → constant velocity (or rest)
  • Also calledLaw of inertia
  • Inertial frameA reference frame where the law holds (no fictitious forces)
  • Mass = inertiaMore mass → harder to change motion
  • Galilean rootsGalileo's inclined-plane experiments preceded Newton
  • PublishedPrincipia Mathematica, 1687

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

The law

An object at rest stays at rest. An object in motion continues at constant velocity (constant speed in a straight line). Unless a net external force acts on it.

Mathematically:

ΣF = 0  ⟹  a = 0  ⟹  v = constant

The "net external force" matters — internal forces (e.g., parts of an object pulling on each other) can't change the object's overall motion. Only external forces from the environment can.

Why this overturned Aristotle

For 2,000 years, Aristotle's view dominated — objects in motion naturally come to rest. Motion required a sustained "mover." Watching a horse pulling a cart, this seems obvious — stop pulling, the cart stops.

Galileo (1564-1642) ran inclined-plane experiments showing balls roll farther on smoother surfaces. Extrapolating to a perfectly frictionless surface, a ball would roll forever. Galileo concluded motion is preserved, not "naturally" lost. Friction is the cause of stopping, not the absence of a force.

Newton's Principia (1687) formalized this insight as the first law. The "natural state" of objects became constant velocity, not "at rest" — a profound conceptual shift.

Inertial reference frames

The first law only holds in inertial reference frames — frames where there are no fictitious forces. Examples:

FrameInertial?Notes
A stationary lab on EarthApproximatelyEarth's rotation gives small Coriolis force; usually ignored at small scales
A car at constant 60 mph on straight roadYesConstant velocity, no acceleration
A car brakingNODecelerating; loose objects "fly forward" — apparent fictitious force
A rotating carouselNOCentripetal acceleration; "centrifugal force" appears in this frame
A free-falling elevatorYes (locally)Equivalence principle — feels like floating
Earth orbiting SunNO (approximately yes for small experiments)Centripetal acceleration toward Sun
Free-floating spacecraft (no thrust)YesBest practical inertial frame

Inertia and mass

Inertia is an object's resistance to changes in motion. The more mass, the more inertia. Pushing a shopping cart to start it moving is easy; pushing a car requires much more force for the same change in velocity.

Mathematically (from F = ma), the same force produces less acceleration for a more massive object. Mass is a quantitative measure of inertia.

Note — mass is NOT the same as weight. Mass is intrinsic (kg). Weight is the gravitational force on mass (N = mass × g). On the Moon, your weight is 1/6 of Earth's, but your mass is unchanged. Inertia depends on mass, not weight.

Real-world consequences

SituationInertia at work
SeatbeltsIn a sudden stop, your body continues at original velocity; belt applies decelerating force
AirbagsSpread the deceleration over time; reduce force on body (impulse-momentum)
Tablecloth trickQuick yank — too brief to overcome dishes' inertia; dishes stay roughly at rest
Magic-trick dropA coin balanced on a card; flick the card → card moves, coin drops into glass (inertia keeps it nearly in place)
Spacecraft cruiseOnce on trajectory in deep space, no thrust needed — motion continues
Heavy doorsHard to start swinging, hard to stop — large mass means large inertia

JavaScript — simulating inertia

// Object with no force applied — should keep moving at constant velocity
class Particle {
  constructor(x, y, vx, vy) {
    this.x = x; this.y = y;
    this.vx = vx; this.vy = vy;
  }
  
  step(dt, fx = 0, fy = 0, mass = 1) {
    // a = F/m
    const ax = fx / mass;
    const ay = fy / mass;
    // v += a·dt
    this.vx += ax * dt;
    this.vy += ay * dt;
    // x += v·dt
    this.x += this.vx * dt;
    this.y += this.vy * dt;
  }
}

// Test: no force → constant velocity
const p = new Particle(0, 0, 5, 0);  // moving 5 m/s right
for (let t = 0; t < 10; t++) {
  p.step(1);  // 1 second steps
}
console.log(p.x, p.y);  // 50, 0 — moved 50m, no change in velocity ✓
console.log(p.vx, p.vy); // 5, 0 — velocity unchanged

// With friction (kinetic): F_friction = -μ·m·g·v̂ (opposing motion)
function withFriction(mass, vx, vy, mu = 0.1, g = 9.81, dt = 0.1) {
  const speed = Math.sqrt(vx * vx + vy * vy);
  if (speed < 1e-9) return [0, 0];
  // Friction force opposes velocity
  const fx = -mu * mass * g * (vx / speed);
  const fy = -mu * mass * g * (vy / speed);
  return [fx, fy];
}

// Without friction, p moves forever; with it, p decelerates per Newton's 2nd

When the law applies (and doesn't)

  • Holds in inertial frames. Earth labs, cars at constant velocity, free-falling spacecraft.
  • Apparently violated in non-inertial frames. In a braking car, your coffee "lurches forward" — but no real force pushed it. The car is decelerating; your coffee is following Newton's first law (continuing at original velocity) while the car decelerates around it.
  • Galilean — not relativistic. Newton's laws are accurate for v ≪ c. At relativistic speeds, momentum p = γmv (not mv); time dilates; lengths contract. Special relativity replaces Newton's framework but agrees in the low-speed limit.
  • Classical — not quantum. Quantum particles have momentum and energy uncertainty (Heisenberg); the deterministic "constant velocity" description fails at atomic scales.

Common mistakes

  • Confusing inertia with mass. Inertia is the property; mass is the quantity. They're tightly linked but not synonymous. "More mass = more inertia" is the correct phrasing.
  • Thinking "rest" is special. An object at rest and one moving at constant velocity are equivalent — both have ΣF = 0. The first law treats them identically (in their respective inertial frames).
  • Forgetting "net" force. A book on a table has gravity and normal force, both nonzero — but they cancel. ΣF = 0 still holds; book stays at rest.
  • Applying it in non-inertial frames. In a rotating frame, objects appear to accelerate without external forces (centrifugal, Coriolis). The first law fails — you need fictitious forces or move to an inertial frame.
  • Treating "uniform motion" as "no motion." A spacecraft cruising at 30 km/s through deep space has no net force on it (Newton's first law) — but it's NOT at rest. Uniform velocity ≠ zero velocity.
  • Misattributing "stopping forces." A rolling ball stops because of friction and air drag, not because motion "naturally ends." This was Aristotle's mistake.

Frequently asked questions

Why did this overturn Aristotle?

Aristotle believed objects naturally come to rest — that motion required a continuous "mover" pushing them. Watching a cart, this seems obvious — stop pushing, it stops. Newton (building on Galileo) realized the cart stops because of friction, not because motion needs a mover. Remove friction (smooth ice, vacuum) and the cart keeps going forever. This was a 2,000-year shift; "natural state" became "constant velocity," not "at rest."

What's an inertial reference frame?

A frame where Newton's first law holds — no fictitious forces. A free-falling elevator is inertial (it accelerates with you, so locally it feels like no gravity). A rotating carousel is NOT inertial — you feel a "centrifugal force" pulling you out, even though no real force exists. Earth's surface is approximately inertial for everyday physics (Coriolis effects matter at large scales). General relativity generalizes this — free-falling frames are locally inertial.

Does Newton's first law follow from the second law (F=ma)?

It looks redundant — F=0 means a=0 means constant velocity. But mathematically, the first law is a separate statement that defines what inertial frames ARE. Without it, F=ma is meaningless (in what frame is "a"?). The first law specifies the class of frames where the second law applies. So they're complementary, not redundant.

Why does it feel like motion needs constant force?

Because we live with friction and air resistance. A bicycle on a flat road slows because of rolling friction (~0.005 of weight) plus air drag (proportional to v²). To maintain constant velocity, the rider must push to balance these resistive forces. In a vacuum (no friction, no drag), pedaling once would continue indefinitely — the law made manifest.

How does this explain seatbelts?

When a car suddenly stops, your body keeps moving forward at the original speed (Newton's first law). Without a seatbelt, you'd continue at 30+ mph until something (windshield, dashboard) stops you. The seatbelt applies the decelerating force gradually, spread over your torso, slowing you with the car. Same physics applies to airbags, helmets, and crumple zones — controlled application of stopping force.

What about Galilean relativity?

All inertial frames are equivalent for mechanics — physics looks the same whether you're at rest or moving uniformly. A ball dropped on a smoothly moving train falls straight down (relative to the train) just as it does in a stationary lab. Galileo articulated this in 1632. Einstein later extended it to all physics (including optics) in special relativity (1905), discovering the speed of light is the same in all inertial frames.

Does Newton's first law work for orbits?

A planet "in orbit" isn't moving in a straight line — it's accelerating (centripetal force). So Newton's first law doesn't directly apply. But locally, the planet IS following the law — without gravity, it would fly off in a straight line tangent to the orbit. Gravity continuously pulls it inward, bending the path into an ellipse. Same idea — the planet's "natural" motion (straight line) gets curved by an external force.