DEV Community

Cover image for The Tsiolkovsky Rocket Equation: Why Going to Space Is So Hard
NovaSolver
NovaSolver

Posted on • Originally published at novasolver.jp

The Tsiolkovsky Rocket Equation: Why Going to Space Is So Hard

Watch a rocket on the pad and almost all of what you see is fuel. The engines, the payload, the crew capsule — those are a thin shell wrapped around enormous tanks. That ratio is not a design choice that engineers wish they could improve. It is forced on them by a single equation written down by Konstantin Tsiolkovsky in 1903, and it is the reason spaceflight remains one of the hardest things humans do.

This article explains what the Tsiolkovsky rocket equation says, works through a concrete delta-v calculation, and shows why its logarithm is the quiet villain behind multi-stage rockets.

Why this calculation matters

Every mission begins with a delta-v budget — the total change in velocity the vehicle must produce to do its job. Reaching low Earth orbit takes roughly 9.4 km/s once gravity and drag losses are included. Going on to the Moon, Mars, or a geostationary slot adds more. The rocket equation is the tool that turns that velocity budget into a mass budget: how much propellant must you carry, and how little structure and payload can you afford?

Get this wrong at the concept stage and nothing downstream can recover it. If the mass ratio the equation demands is physically impossible to build, no better engine nozzle or lighter alloy will save the design. The equation is also the honest scorekeeper for trade studies: it tells you exactly how much delta-v a proposed engine upgrade buys, and whether staging is worth its added complexity. Before any detailed engineering, the rocket equation decides whether a mission closes at all.

The core formula

A rocket accelerates by throwing mass out the back. Conservation of momentum applied to that continuous expulsion of exhaust, integrated as the vehicle burns from full to empty, gives the Tsiolkovsky rocket equation:

delta_v = v_e * ln(m0 / mf)
Enter fullscreen mode Exit fullscreen mode

Here delta_v is the velocity change the rocket can produce, v_e is the effective exhaust velocity, m0 is the wet mass (the fully fuelled vehicle), and mf is the dry mass (the same vehicle with its tanks empty). The ratio m0/mf is the mass ratio.

Exhaust velocity is most often quoted indirectly through specific impulse, Isp, measured in seconds. The two are linked by standard gravity:

v_e = Isp * g     with g = 9.81 m/s^2
Enter fullscreen mode Exit fullscreen mode

The structure of the equation carries the entire story. Delta-v grows with exhaust velocity in a simple, linear way — a better engine helps proportionally. But delta-v grows only with the logarithm of the mass ratio. That logarithm is unforgiving. To double your delta-v at a fixed exhaust velocity, you do not double the mass ratio — you must square it. A mass ratio of 3 becomes a mass ratio of 9; a ratio of 9 becomes 81. Propellant fraction climbs toward 99 percent, and there is simply no room left for tanks, engines, or payload. This diminishing return is what engineers call the tyranny of the rocket equation, and it is the direct reason rockets are staged: each stage is dropped once empty so the remaining stages no longer have to accelerate dead structural mass.

A worked example

Consider a single rocket stage with a specific impulse of Isp = 300 s — a reasonable figure for a good kerosene engine — and a mass ratio of m0/mf = 3.

Step 1 — convert specific impulse to exhaust velocity. Multiply Isp by standard gravity:

v_e = Isp * g = 300 * 9.81 = 2943 m/s
Enter fullscreen mode Exit fullscreen mode

Step 2 — apply the rocket equation. Substitute the exhaust velocity and the mass ratio:

delta_v = v_e * ln(m0 / mf)
delta_v = 2943 * ln(3)
delta_v = 2943 * 1.0986
delta_v = 3233 m/s
Enter fullscreen mode Exit fullscreen mode

So this stage delivers about 3.23 km/s of delta-v. That is a substantial number — but reaching orbit needs roughly 9.4 km/s, nearly three times as much.

Now look at what the logarithm demands to close that gap. To triple the delta-v of this stage at the same exhaust velocity, you would need ln(m0/mf) to triple, which means raising the mass ratio to 3 cubed — a mass ratio of 27. A vehicle that is 27 parts fuel to 1 part everything-else is not buildable. The propellant fraction would be over 96 percent, leaving almost nothing for the tanks that hold the propellant. This is precisely why a single stage cannot reach orbit and why launch vehicles split the job across two or three stages, each starting fresh with its own modest mass ratio.

Common mistakes

Confusing exhaust velocity with specific impulse. Isp is in seconds; v_e is in meters per second. They differ by the factor g = 9.81. Plugging Isp straight into delta_v = v_e * ln(m0/mf) underestimates delta-v by nearly a factor of ten.

Inverting the mass ratio. The equation uses wet mass over dry mass, a number greater than one, so its logarithm is positive. Writing mf/m0 instead gives a negative delta-v. Always check that the ratio exceeds one.

Treating delta-v as the speed the rocket reaches. Delta-v is the ideal velocity change in the absence of any external force. Real flight bleeds off velocity to gravity losses and atmospheric drag — often 1.5 to 2 km/s on the way to orbit. The vehicle's delta-v capability must exceed the orbital requirement by that margin.

Expecting a bigger tank to scale linearly. Because of the logarithm, adding propellant gives steadily smaller returns. The first doublings of the mass ratio buy a lot of delta-v; later ones buy very little. Intuition built on linear systems badly overestimates what extra fuel achieves.

Ignoring residual and reserve mass. The dry mass is not just structure. It includes unusable trapped propellant, pressurant, and reserves. Counting only the usable propellant inflates the effective mass ratio and the predicted delta-v.

Try the interactive NovaSolver calculator

The single-stage arithmetic is easy by hand, but real vehicles stack stages, and tracking the mass ratios and losses across them is where the bookkeeping gets tricky. The Rocket Equation Calculator on NovaSolver lets you configure up to three stages with their own wet mass, dry mass, and Isp, computes the per-stage and total delta-v from the Tsiolkovsky equation, and lets you add gravity and drag losses to see the net delta-v — then checks whether your design reaches LEO, GEO, or the Moon.

Related calculators

You can browse the full set in the space and orbital mechanics tools hub.

Closing note

The Tsiolkovsky rocket equation is barely more than a logarithm, yet it dictates the shape of every launch vehicle ever built. The lessons are compact: delta-v rewards exhaust velocity proportionally but mass ratio only logarithmically, real flight adds losses on top of the orbital budget, and that punishing logarithm is exactly why rockets shed stages as they climb. Keep those ideas in hand, run your own mass ratios, and the imposing tanks on the launch pad start to look less like brute force and more like the only honest answer to an unforgiving equation.

Top comments (0)