Updated Jun 30, 2026

What a force really is (and why motion sticks)

Picture pushing a stalled car. While your hands are on it and your legs are driving, it rolls. The second you stop pushing, your gut expects it to stop too — and on a flat road it pretty much does, after a bit. So your whole life has been teaching you one quiet lesson: things move when you push them and stop when you don't.

That lesson is wrong. It's the single most expensive misunderstanding in all of beginner physics, and unlearning it is most of the battle. The car didn't stop because you stopped pushing. It stopped because something else was pushing back — the road's friction, the air, the slight uphill. Take those away and the car would keep rolling. Not for a while. Forever.

A force is a push or a pull — nothing fancier

Strip away the vocabulary and a force is a push or a pull on something. A hand on a car. Gravity pulling a dropped phone toward the floor. The road gripping your tires. The air shoving against a cyclist. Every one of those is a force, measured in a unit called the newton (N) — roughly the downward pull of a small apple resting in your palm.

Two things about a force matter, always:

  • How hard it pushes (its size).
  • Which way it points (its direction).

That second part trips people up because in school "force" gets reduced to a number. But a 10 N push forward and a 10 N push backward do opposite things. A quantity that carries a direction like this is called a vector, and forces are vectors. You don't need the math of vectors yet — you only need the instinct that direction is half the story.

        push (forward)          drag + friction (backward)
   ────────────────────►   YOU   ◄────────────────────

What just happened: the two arrows point opposite ways. Whether the car speeds up, slows down, or holds steady depends entirely on which arrow wins — not on whether any force exists.

The first law: things keep doing what they're doing

Here's Newton's first law in the plainest words it has ever been given:

An object keeps moving the same way — same speed, same direction — unless a force changes it. An object sitting still keeps sitting still unless a force gets it going.

That stubbornness has a name: inertia. It's not a force and it's not a substance. It's the tendency of stuff to resist any change to its motion. A thing at rest resists being started. A thing in motion resists being stopped or turned.

Read the law again and notice the word it does not contain: push. The law never says motion needs a continuous push. Constant motion is the natural, lazy, default state of an object that nothing is acting on. Standing still is the special case where that constant motion happens to be zero.

So why does the rolling car stop? Re-run the scene with the law in hand:

While you push:   your push  >  friction + air      →  car speeds up
After you stop:   your push = 0,  friction + air still there  →  car slows
On a flat road:   friction wins until speed = 0      →  car stops

What just happened: the car never needed your push to keep moving. It needed your push to overcome the forces already fighting it. Once you stop, those forces don't vanish — they just have no opponent, so they win and bleed the motion away.

Why a spaceship coasts forever

Now take the resisters away. Out in deep space there's no road to grip the ship and almost no air to shove it. A probe gets one burn from its engine, the engine shuts off, and then... it keeps going. Same speed, same direction, for years, decades, leaving the solar system. The engine isn't running. Nothing is pushing it.

This is the first law with nothing to hide behind. On Earth, friction and air are always in the picture quietly draining motion, so we grow up believing motion needs feeding. Space removes the drain, and the truth shows: motion doesn't need feeding. It continues.

[!NOTE] Real space isn't a perfect vacuum and gravity from distant bodies still tugs gently, so "forever" is the idealized version. But the everyday intuition — "coasting needs no engine" — is exactly right, and it's the whole point.

The Voyager probes, launched in the 1970s, are the famous real example: their engines fired briefly, long ago, and they're still coasting out of the solar system today on that old momentum.

The mental flip to keep

Stop asking "what keeps this moving?" — that question assumes the wrong default. Start asking "what is changing this motion, and which way is it pushing?" Once that becomes your reflex, the next two phases — how forces change motion, and how energy flows — click into place instead of piling up as rules.

For builders: this is exactly the model behind every game physics engine and every animation loop. Objects carry a velocity that persists frame to frame; you don't re-push them each frame. Forces (gravity, a thruster, a collision) get added in to change that velocity. If you've ever written position += velocity in a game loop, you've already coded Newton's first law without naming it.

[
  {
    "q": "A hockey puck slides across smooth ice and slowly comes to a stop. What does Newton's first law say is really happening?",
    "choices": [
      "The puck ran out of the motion it was given and naturally stopped",
      "A force (friction from the ice) acted on it to slow it down",
      "Moving things always need a continuous push to keep going",
      "The puck's inertia pushed backward against its own motion"
    ],
    "answer": 1,
    "explain": "Motion doesn't fade on its own. Something — friction — had to act to slow the puck. With no friction it would keep sliding."
  },
  {
    "q": "What is inertia?",
    "choices": [
      "A force that pushes objects forward once they start moving",
      "The fuel an object uses up as it travels",
      "An object's tendency to resist any change to its motion",
      "The pull of gravity on an object"
    ],
    "answer": 2,
    "explain": "Inertia isn't a force or a fuel. It's the resistance of stuff to having its motion changed — hard to start, hard to stop."
  },
  {
    "q": "Why does a deep-space probe keep coasting for decades after its engine shuts off?",
    "choices": [
      "Its engine secretly keeps firing at a low level",
      "There's almost nothing (no friction or air) to change its motion, so it continues",
      "Gravity from the Sun keeps pushing it outward",
      "Objects in space gain speed over time on their own"
    ],
    "answer": 1,
    "explain": "With essentially no friction or air drag to change its motion, the first law takes over: same speed, same direction, indefinitely."
  }
]

← Overview | Phase 2: How forces change motion →

Check your understanding 3 questions

1. A hockey puck slides across smooth ice and slowly comes to a stop. What does Newton's first law say is really happening?

2. What is inertia?

3. Why does a deep-space probe keep coasting for decades after its engine shuts off?

Was this page helpful?