> "It is difficult to say what is impossible, for the dream of yesterday is the hope of today and the reality of tomorrow."
Prerequisites
- 2
Learning Objectives
- Derive the Tsiolkovsky rocket equation from conservation of momentum.
- Interpret each term — delta-v, exhaust velocity, and the mass ratio — physically, and explain why the relationship is exponential.
- Compute the delta-v of a real rocket stage from its masses and specific impulse, and sanity-check the result.
- Explain why rockets are roughly 90% propellant by mass, and why staging is the response.
- Define specific impulse and convert between specific impulse and exhaust velocity.
- Build a first delta-v budget for a mission and read the delta-v map of the solar system.
In This Chapter
- Overview
- Learning Paths
- 3.1 From momentum to the rocket equation
- 3.2 What each term means
- 3.3 The exponential and the 90%-fuel reality
- 3.4 Specific impulse and exhaust velocity
- 3.5 Staging: beating the equation
- 3.6 Delta-v budgets and the map of the solar system
- Mission Design Checkpoint: your delta-v budget and rocket.py
- Summary
- Spaced Review
- What's Next
Chapter 3: The Rocket Equation
"It is difficult to say what is impossible, for the dream of yesterday is the hope of today and the reality of tomorrow." — Robert H. Goddard
Overview
There is one equation in this book you should be able to write from memory by the time you finish it, recite at a party, and see behind every rocket ever flown. It is the Tsiolkovsky rocket equation, and it is the closest thing spaceflight has to a law of nature all its own.
The equation tells you something profound and slightly depressing. To go twice as fast, you do not need twice as much fuel. You need the square of the fuel. Your final speed grows like the logarithm of the mass you burn — which is the same as saying the mass you must burn grows like the exponential of the speed you want. That single exponential is why rockets are ninety percent propellant by mass, why we build them in stages and throw the empty parts away, why a rocket the size of a skyscraper delivers a payload the size of a school bus, and why leaving Earth has stayed hard even as almost everything else in engineering has gotten easy. Every other decision in this book — the choice of fuel, the shape of the nozzle, the number of stages, the obsessive hunt for a few kilograms of structure — is a response to this one relationship. We call it, with feeling, the tyranny of the rocket equation.
In Chapter 1 we quoted the number that makes spaceflight hard: about $9.4\ \text{km/s}$ of velocity change to reach low Earth orbit. In Chapter 2 we found the physics that lets a rocket change its velocity at all — Newton's third law and the conservation of momentum, the only propulsion that works in vacuum. This chapter puts those together into the equation that connects them, and then spends the rest of its length teaching you to use it on real rockets with real numbers.
In this chapter, you will learn to:
- Derive the rocket equation from conservation of momentum, and say what each symbol means.
- Explain the exponential — why "just add more fuel" fails, and why rockets are almost all propellant.
- Compute the delta-v of a real Falcon 9 stage, and see why one stage cannot reach orbit but two can.
- Define specific impulse, the number engineers actually quote, and convert it to exhaust velocity.
- Build a delta-v budget and read the "subway map" of the solar system.
Learning Paths
🚀 Space Enthusiast: Read 3.1 for the idea (you can skim the algebra of the derivation), then spend your time on 3.2, 3.3, and 3.6. The exponential in 3.3 and the delta-v map in 3.6 are the two ideas that will change how you watch a launch.
📐 Engineering Student: Read everything and do the derivation in 3.1 yourself before reading ours. This chapter's worked examples and the ⭐⭐/⭐⭐⭐ exercises are foundational for all of Part III.
🎮 KSP Player: You already feel this equation every time you stage. Focus on 3.3–3.6; the delta-v map in 3.6 is the same map the game's mods draw for you, now with the math behind it.
🛰️ Industry Prep: Section 3.6 (delta-v budgets) is the language of mission design; you will build one for your own mission at the end of this chapter and add to it in every chapter after.
3.1 From momentum to the rocket equation
A rocket flies by throwing mass backward. We established the why in Chapter 2: in the vacuum of space there is nothing to push against, so the only way to change your momentum is to carry your own reaction mass — propellant — and hurl it out the back as fast as you can. Newton's third law does the rest: the momentum the exhaust carries backward is matched, exactly, by the momentum the rocket gains forward.
Strategy first. We are going to watch the rocket for one infinitesimal instant, during which it throws out a tiny bit of propellant. We will write down that momentum is conserved over that instant, keep only the terms that matter, and add up (integrate) all those instants from a full rocket to an empty one. The whole rocket equation falls out of that one bookkeeping step. The key physical idea is simply this: the rocket speeds up because the propellant it just threw out was moving slower than the rocket wanted to be.
Consider a rocket of mass $m$ moving at velocity $v$. In a short time $dt$ it burns and expels a small mass of propellant $dm_p$, throwing it out at a velocity $v_e$ relative to the rocket (the effective exhaust velocity). As it does, the rocket's own mass drops by that amount — so if $dm$ is the change in the rocket's mass, then $dm = -dm_p$ (the rocket loses what the exhaust gains), and the rocket's velocity rises by a small $dv$.
Let us bookkeep the momentum, working in an inertial frame and taking the instant just before and just after the burn. Before: the whole system (rocket + the about-to-be-expelled propellant) has momentum $m\,v$. After: the rocket has mass $m + dm$ (remember $dm$ is negative) and velocity $v + dv$, while the expelled propellant $-dm$ moves at the rocket's velocity minus the exhaust speed, $v - v_e$. Setting the two equal because no external force acts over this instant,
$$ m\,v = (m + dm)(v + dv) + (-dm)(v - v_e). $$
Multiply out the right-hand side and cancel the $m v$ that appears on both sides:
$$ 0 = m\,dv + v\,dm + dm\,dv - v\,dm + v_e\,dm. $$
The $v\,dm$ terms cancel. The term $dm\,dv$ is a product of two infinitesimals — vanishingly small compared to the rest — so we drop it. What remains is beautifully simple:
$$ m\,dv = -v_e\,dm. $$
Read it in words: a little bit of speed gained ($dv$) equals the exhaust velocity times the fractional bit of mass lost. Now separate the variables and integrate, as the rocket goes from its initial (full) mass $m_0$ to its final (empty) mass $m_f$, and its speed changes by the total we care about, $\Delta v$:
$$ \int_0^{\Delta v} dv = -v_e \int_{m_0}^{m_f} \frac{dm}{m}. $$
The left side is just $\Delta v$. The right side is a logarithm — the integral of $1/m$ — and the minus sign flips the limits for us:
$$ \boxed{\ \Delta v = v_e \ln\!\left(\frac{m_0}{m_f}\right)\ } $$
That is the Tsiolkovsky rocket equation, first written down by Konstantin Tsiolkovsky in 1903. It says the velocity change a rocket can achieve is its exhaust velocity multiplied by the natural logarithm of the ratio of its full mass to its empty mass.
Definition (rocket equation). For a rocket that expels propellant at effective exhaust velocity $v_e$, starting at mass $m_0$ and ending at mass $m_f$, the achievable velocity change is $\Delta v = v_e \ln(m_0/m_f)$. The ratio $m_0/m_f$ is called the mass ratio.
📜 From History: Tsiolkovsky was a nearly deaf schoolteacher in provincial Russia who never built a rocket in his life. He derived this equation from pure physics decades before the technology existed, and understood its consequences so clearly that he predicted multistage rockets, liquid propellants, and the need to reach about 8 km/s for orbit — all from $\Delta v = v_e \ln(m_0/m_f)$. Robert Goddard, an ocean away, would independently reach the same conclusions and then do what Tsiolkovsky could not: in 1926 he flew the first liquid-fueled rocket, in a Massachusetts cabbage field. Theory first, hardware second — the pattern of this whole book.
🔄 Check Your Understanding 1. In the derivation, why were we allowed to throw away the term $dm\,dv$? 2. The equation contains $v_e$, the exhaust velocity relative to the rocket, not relative to the ground. Why does the relative velocity turn out to be the one that matters?
Answers
- It is a product of two infinitesimally small quantities, so it is "second order" — negligible next to terms with a single $dm$ or $dv$. Keeping it changes nothing in the limit. 2. Because thrust comes from the momentum the rocket imparts to its own exhaust, and that exchange depends only on how fast the exhaust leaves relative to the vehicle. The ground has nothing to do with it — which is exactly why a rocket works in empty space, where there is no ground to push against.
3.2 What each term means
An equation you cannot feel is an equation you cannot use. Let us give each symbol its physical weight.
-
$\Delta v$ (delta-v) is the velocity change the rocket can produce by burning all its propellant. It is the currency of spaceflight — not fuel, not thrust, but delta-v. Every maneuver, from reaching orbit to landing on Mars, has a price tag measured in delta-v, and a rocket is a bank account measured in the same units. Reaching low Earth orbit costs about $9.4\ \text{km/s}$; we will build a whole budget from prices like it in Section 3.6.
-
$v_e$ (effective exhaust velocity) is how fast the rocket throws its propellant out the back, relative to the rocket. It is set by the engine and propellant — how much energy the chemistry releases and how efficiently the nozzle turns that energy into directed speed. This is the number you most want to make large, because delta-v scales directly with it. Chemical rockets top out around $v_e \approx 4.5\ \text{km/s}$; we will see why in Chapter 19.
-
$m_0$ (initial mass) is the fully fueled rocket at ignition: structure, engines, payload, and every kilogram of propellant.
-
$m_f$ (final mass) is what is left when the propellant is gone: the "dry" rocket — structure, engines, and payload — with empty tanks.
-
The mass ratio $m_0/m_f$ is the whole story of the rocket's construction in a single number. A mass ratio of 10 means the rocket started ten times heavier than it ended — nine parts propellant to one part everything-else.
💡 Intuition: Think of delta-v as a "speed budget" you can spend however you like, and the rocket equation as the exchange rate between propellant and speed. A better engine (higher $v_e$) gives you a better exchange rate. A lighter, more propellant-heavy rocket (higher mass ratio) lets you carry more to spend. Everything a rocket engineer does is an attempt to improve one of those two numbers.
It is worth naming the fractions that describe how a rocket's mass is divided, because we will use them constantly. If $m_p$ is propellant mass, $m_s$ is structural (dry) mass, and $m_L$ is payload, then the propellant mass fraction is $m_p / m_0$ — the share of the whole rocket that is fuel. For an orbital rocket this fraction is startlingly close to 1.
Worked Example: reading a mass ratio. A rocket stage masses $50\ \text{t}$ fully fueled and $10\ \text{t}$ empty. Its mass ratio is $m_0/m_f = 50/10 = 5$, so $80\%$ of it was propellant. With a kerosene engine at $v_e = 3.0\ \text{km/s}$, its delta-v is $\Delta v = 3.0 \times \ln 5 = 3.0 \times 1.609 = 4.83\ \text{km/s}$. Notice how much work the logarithm does: a fivefold mass ratio yields only about $1.6$ exhaust-velocities of delta-v. Going to a tenfold mass ratio — nine parts fuel to one part everything else — would multiply the delta-v by only $\ln(10)/\ln(5) \approx 1.43$, not double it. The logarithm is the mathematical face of the tyranny: enormous increases in propellant buy ever-smaller increases in speed.
🔗 Connection: Notice what the equation does not contain: time, thrust, or the size of the rocket. Two rockets with the same $v_e$ and the same mass ratio have the same delta-v whether one is a model rocket and the other is the size of a building, and whether one burns for ten seconds and the other for ten minutes. Thrust and burn time decide how fast you spend your delta-v (which matters enormously for fighting gravity during launch — that is Chapter 4), but not how much you have. Delta-v is a property of the propellant and the mass fractions alone.
3.3 The exponential and the 90%-fuel reality
Here is where the tyranny shows itself. Solve the rocket equation for the mass ratio by exponentiating both sides:
$$ \frac{m_0}{m_f} = e^{\Delta v / v_e}. $$
The mass ratio you need grows exponentially with the delta-v you want, scaled by the exhaust velocity. This is the single most consequential fact in rocketry, so let us make it concrete. Take a chemical rocket with a good exhaust velocity, $v_e = 3.4\ \text{km/s}$ (a kerosene engine in vacuum), and ask how much of the rocket must be propellant for various target delta-vs. The propellant fraction is $1 - m_f/m_0 = 1 - e^{-\Delta v/v_e}$.
| Target $\Delta v$ | Mass ratio $m_0/m_f = e^{\Delta v/v_e}$ | Propellant fraction |
|---|---|---|
| $1\ \text{km/s}$ | $1.34$ | $25\%$ |
| $3.4\ \text{km/s}$ (= $v_e$) | $2.72$ ($=e$) | $63\%$ |
| $7\ \text{km/s}$ | $7.8$ | $87\%$ |
| $9.4\ \text{km/s}$ (to orbit) | $16$ | $94\%$ |
| $12\ \text{km/s}$ | $34$ | $97\%$ |
Look at what happens. Doubling the delta-v from 3.4 to 7 km/s does not double the propellant fraction — it drives the mass ratio from 2.7 to 7.8. Pushing to orbital delta-v demands a mass ratio of 16: for every kilogram of structure, engine, and payload, you must carry fifteen kilograms of propellant. The rocket must be 94% propellant and only 6% everything-else — and that 6% has to include the tanks strong enough to hold the propellant, the engines, the guidance, and whatever you actually wanted to send to space.
🚪 Threshold Concept. The exponential is the reason spaceflight is hard, and once you see it you cannot unsee it. In most of engineering, wanting a bit more performance costs a bit more. In rocketry, wanting a bit more delta-v when you are already near orbital speed costs exponentially more — and since the mass you add is mostly propellant, and propellant needs tanks, and tanks are structure that must also be accelerated, the demands compound viciously. This is why you cannot reach orbit by "adding more fuel" to an ordinary vehicle: the fuel you add is almost entirely spent lifting the fuel you added. Every clever thing in rocket engineering — staging, lightweight structures, high-energy propellants, the relentless war on mass — exists to fight this one exponential.
This exponential is also why progress in spaceflight is measured in single-digit percentages, not the doublings we take for granted in computing. A microchip gets faster every couple of years; a chemical rocket's exhaust velocity has barely improved since the 1960s, because it is bounded by chemistry itself. When you cannot move the exponent much, you are left fighting for the base — shaving structural mass, refining mass fractions, staging — which is precisely the grinding, unglamorous engineering that fills much of the rest of this book. The rocket equation does not merely describe rockets; it sets the tempo of the entire endeavor.
🔧 Engineering Reality: The propellant fractions above (94% for orbit) assume you burn every drop. Real rockets cannot. Some propellant is trapped in tanks and plumbing (residuals), some is held in reserve for a landing or a contingency, and cryogenic propellant boils off before ignition. Each unusable kilogram lowers the effective mass ratio and quietly eats delta-v. Engineers track these losses obsessively, because near a mass ratio of 16 even a percent of trapped propellant takes a disproportionate bite out of the thin margin between reaching orbit and falling short.
⚠️ Common Misconception: "Why can't you just build a bigger rocket?" Making the rocket bigger does not help, because the equation depends on the ratio of masses, not their absolute size. Scale a rocket up by a factor of ten and, if the proportions stay the same, the mass ratio — and therefore the delta-v — is unchanged. You have a rocket ten times as heavy that goes exactly as fast. The only ways to more delta-v are a higher exhaust velocity (better propellant/engine) or a higher mass ratio (lighter structure, more propellant fraction) — and the second is bounded by the brutal fact that tanks and engines cannot be made arbitrarily light. That wall is what staging climbs over (Section 3.5).
🔄 Check Your Understanding 1. A rocket has $v_e = 3\ \text{km/s}$ and needs $\Delta v = 6\ \text{km/s}$. What mass ratio does it need, and what propellant fraction is that? 2. If you improved the engine to $v_e = 4\ \text{km/s}$ for the same $6\ \text{km/s}$ mission, what mass ratio would you need now? What does the comparison tell you about the value of a better engine?
Answers
- Mass ratio $= e^{6/3} = e^2 \approx 7.39$; propellant fraction $= 1 - 1/7.39 \approx 86\%$.
- Mass ratio $= e^{6/4} = e^{1.5} \approx 4.48$; propellant fraction $\approx 78\%$. Raising $v_e$ by a third cut the required mass ratio from 7.4 to 4.5 — a huge structural relief. Because $v_e$ sits in the exponent, small improvements in exhaust velocity pay off enormously. This is exactly why engineers chase every second of specific impulse (Section 3.4).
3.4 Specific impulse and exhaust velocity
Walk into any propulsion lab and you will rarely hear an engineer quote an exhaust velocity. They quote specific impulse, written $I_{sp}$ and measured — confusingly, at first — in seconds. It is the single most common figure of merit for a rocket engine, so we need to make peace with it.
Specific impulse is the thrust an engine produces per unit weight of propellant burned per second. Equivalently, and more usefully for us, it is just the exhaust velocity divided by the standard gravitational acceleration $g_0 = 9.81\ \text{m/s}^2$:
$$ I_{sp} = \frac{v_e}{g_0}, \qquad\text{equivalently}\qquad v_e = I_{sp}\, g_0. $$
That is the whole relationship. Specific impulse and exhaust velocity are the same number in different clothes; to convert, multiply or divide by $g_0 \approx 9.81$.
⚠️ Common Misconception: "Why is a velocity measured in seconds?" The seconds are an accident of history and units. Specific impulse was originally defined as impulse (force × time) per unit weight of propellant, not unit mass — and weight carries a hidden factor of $g_0$. Divide a velocity ($\text{m/s}$) by an acceleration ($\text{m/s}^2$) and you get seconds. The upshot: $I_{sp}$ in seconds is a "gravity-free" way to quote engine efficiency that comes out the same whether you work in metric or imperial units — which is why it stuck. To recover the physical exhaust velocity, always multiply by $g_0$. A rule of thumb worth memorizing: multiply $I_{sp}$ by about 9.8 to get $v_e$ in m/s.
Here is why $I_{sp}$ is worth caring about. Because $v_e = I_{sp}\,g_0$ sits in the exponent of the mass ratio, every second of specific impulse is directly a bit more delta-v for the same rocket. A sense of the landscape:
| Engine / propellant | Typical $I_{sp}$ (s) | $v_e = I_{sp}\,g_0$ (km/s) |
|---|---|---|
| Cold gas thruster | 60–70 | ~0.65 |
| Solid rocket motor | 250–280 | ~2.6 |
| LOX / RP-1 (kerosene), e.g. Merlin | 280–340 | ~2.9–3.3 |
| LOX / liquid methane, e.g. Raptor | 330–380 | ~3.3–3.7 |
| LOX / liquid hydrogen, e.g. RS-25 | 360–460 | ~3.5–4.5 |
| Ion / Hall thruster (electric) | 1,500–4,000+ | ~15–40 |
Two things jump out. First, chemical rockets are all bunched between roughly $I_{sp} = 250$ and $460$ seconds — a factor of less than two separates the worst from the best, because chemistry can only pack so much energy into a kilogram of propellant. Hydrogen wins among chemicals because its exhaust molecules are the lightest, and lighter molecules move faster at the same temperature — a story we will tell properly in Chapter 19. Second, electric propulsion (Chapter 20) blows past all of them with $I_{sp}$ in the thousands — but, as we will see, at thrust so feeble it cannot lift itself off a table, let alone off the ground. The exchange rate is wonderful; the transaction is just very, very slow.
Worked Example: the same rocket, two propellants. Suppose a stage has a mass ratio of $m_0/m_f = 4$. With a kerosene engine at $I_{sp} = 300\ \text{s}$, its exhaust velocity is $v_e = 300 \times 9.81 = 2{,}943\ \text{m/s}$, so its delta-v is $\Delta v = 2{,}943 \times \ln 4 = 2{,}943 \times 1.386 = 4{,}080\ \text{m/s}$. Now swap in a hydrogen engine at $I_{sp} = 450\ \text{s}$ — same tanks, same mass ratio — and $v_e = 4{,}414\ \text{m/s}$, giving $\Delta v = 4{,}414 \times 1.386 = 6{,}120\ \text{m/s}$. The hydrogen stage delivers over $2\ \text{km/s}$ more delta-v from identical structure, purely because its exhaust molecules are lighter and therefore leave faster. That is the prize engineers chase when they accept the enormous headache of a fuel that must be kept at $-253\,^\circ\text{C}$ and occupies vast volume — a trade-off we weigh in Chapter 18.
🔧 Engineering Reality: An engine's specific impulse is not one number — it rises as the rocket climbs. A nozzle is tuned for a particular outside pressure, and it works best in vacuum, where there is no atmosphere pushing back on the exhaust. A Merlin engine on Falcon 9 has an $I_{sp}$ near 282 s at sea level and about 311 s in vacuum; the vacuum-optimized version on the second stage reaches ~348 s because its enormous nozzle would be impossible at sea level. When we compute a first stage's delta-v, we will use an average that reflects its climb through the thinning air. Real engineering is full of these "it depends on altitude" caveats; the equation is exact, but the numbers you feed it require judgment.
3.5 Staging: beating the equation
We now know the wall: chemical exhaust velocities cap out near $4.5\ \text{km/s}$, reaching orbit needs about $9.4\ \text{km/s}$ of delta-v, and the mass ratio that demands is around 16 — which means a single-stage rocket would have to be about 94% propellant, leaving only 6% for tanks, engines, plumbing, guidance, and payload. It is not quite impossible — a bare single-stage-to-orbit vehicle can be built — but there is essentially nothing left over to carry. The empty tanks and engines are dead weight you drag all the way to orbit.
Staging is the fix, and it is such a good idea that Tsiolkovsky proposed it over a century ago. The insight: stop carrying mass you no longer need. Once the first stage's tanks are empty, they are just weight the remaining engines must accelerate. So throw them away. Ignite a fresh, smaller stage that no longer has to haul the dead structure of the first. Each stage gets its own mass ratio, and — here is the gift — the delta-vs of the stages simply add:
$$ \Delta v_{\text{total}} = \sum_i v_{e,i} \ln\!\left(\frac{m_{0,i}}{m_{f,i}}\right), $$
where each stage's initial and final masses include everything above it (the stages yet to fire, plus the payload) as its "payload." Let us prove to ourselves that this actually works, on a real rocket.
Worked Example: does Falcon 9 reach orbit?
We will use approximate, widely reported masses for a Falcon 9 (Block 5 class); treat them as illustrative (Tier 2), since exact values vary by version and mission. Take a payload of $m_L = 15{,}000\ \text{kg}$ bound for low Earth orbit.
Stage Dry mass $m_s$ Propellant $m_p$ Exhaust velocity $v_e$ First $25{,}600\ \text{kg}$ $395{,}700\ \text{kg}$ $2.84\ \text{km/s}$ ($I_{sp}\approx 290$ s, sea-level→vacuum average) Second $4{,}000\ \text{kg}$ $92{,}000\ \text{kg}$ $3.41\ \text{km/s}$ ($I_{sp}\approx 348$ s, vacuum) First-stage delta-v. At ignition the first stage must lift everything: both stages, all propellant, and the payload. $$m_{0,1} = 15{,}000 + (4{,}000+92{,}000) + (25{,}600+395{,}700) = 532{,}300\ \text{kg}.$$ When the first stage burns out, its propellant is gone but its structure and the whole upper stack remain: $$m_{f,1} = 15{,}000 + 96{,}000 + 25{,}600 = 136{,}600\ \text{kg}.$$ Its mass ratio is $532{,}300 / 136{,}600 = 3.90$, so $$\Delta v_1 = 2.84\ \text{km/s} \times \ln(3.90) = 2.84 \times 1.360 = 3.86\ \text{km/s}.$$
Second-stage delta-v. Now the first stage is gone. The second stage lifts only itself and the payload: $$m_{0,2} = 15{,}000 + 96{,}000 = 111{,}000\ \text{kg}, \qquad m_{f,2} = 15{,}000 + 4{,}000 = 19{,}000\ \text{kg}.$$ Mass ratio $111{,}000/19{,}000 = 5.84$, so $$\Delta v_2 = 3.41\ \text{km/s} \times \ln(5.84) = 3.41 \times 1.765 = 6.02\ \text{km/s}.$$
Total. $\Delta v_{\text{total}} = 3.86 + 6.02 = 9.9\ \text{km/s}.$
That is enough to reach orbit (about $9.4\ \text{km/s}$ needed, including the losses we will meet in Chapter 4) with a little margin. The two-stage rocket works.
Now the counterfactual that reveals why we bothered to stage. Suppose we combined both stages into one — same total propellant, same total structure, but no throwing anything away — and gave it a generous vacuum-class exhaust velocity of $3.05\ \text{km/s}$ throughout:
$$ m_0 = 532{,}300\ \text{kg}, \qquad m_f = 15{,}000 + (25{,}600+4{,}000) = 44{,}600\ \text{kg}, $$ $$ \Delta v = 3.05 \times \ln\!\left(\frac{532{,}300}{44{,}600}\right) = 3.05 \times \ln(11.9) = 3.05 \times 2.48 = 7.6\ \text{km/s}. $$
Only $7.6\ \text{km/s}$ — well short of orbit, even being generous with the engine. The single-stage rocket carries its heavy first-stage structure all the way up, and that dead weight costs it more than two full kilometers per second of delta-v. Staging turned a rocket that cannot reach orbit into one that can, by the simple act of dropping empty mass. That is the whole game.
💡 Intuition: A useful way to feel it: in the single-stage rocket, in the final seconds of the burn your engines are spending most of their effort accelerating empty tanks. Staging lets you set those tanks down partway up the hill so you only have to carry them as far as they are useful. You do not add any propellant or improve any engine — you just stop hauling the corpse.
🐛 Find the Error. A student computes the total delta-v of the two-stage Falcon 9 by adding the propellant of both stages and the dry mass of both stages into a single mass ratio — getting the 7.6 km/s single-stage number above — and then concludes that "staging makes no difference to delta-v, because it is the same propellant either way." Where is the reasoning wrong?
Answer
The error is treating the two-stage rocket as if it carried all the dry mass to the end. It does not: after first-stage separation, $25{,}600\ \text{kg}$ of structure is left behind and never accelerated by the second stage. In the correct calculation, the second stage's final mass excludes the discarded first stage, which is exactly why its mass ratio (5.84) is so much better than it would otherwise be. The propellant is indeed the same; what changes is how much dead structure that propellant has to push at each moment. Staging does not give you more fuel — it stops the fuel from being wasted on empty tanks. Same propellant, more delta-v.
📜 From History: The first object to reach space, the V-2, was a single stage. The first to reach orbit — the R-7 that launched Sputnik in 1957 — used a cluster that shed four strap-on boosters, an example of parallel staging. Every rocket that has carried humans toward the Moon has been multistage: the Saturn V dropped two colossal stages before its third pushed Apollo out of Earth orbit. The pattern has never broken, because the arithmetic above is inescapable — no single chemical stage has ever delivered a useful payload to orbit with anything left over. Engineers did not adopt staging for elegance; the rocket equation forced it on them, and they have lived with the added plumbing, separation mechanisms, and failure modes ever since, because the alternative is not reaching orbit.
There are diminishing returns to adding stages (each new stage brings its own engines and structure), so most rockets use two or three. Why two or three, and how to split the mass optimally between them, is a question we will answer in Chapter 22; for now, the point is that staging is the rocket equation's designated escape hatch, and every orbital launcher in history has used it.
3.6 Delta-v budgets and the map of the solar system
If delta-v is the currency of spaceflight, then a delta-v budget is the bill for a mission: a list of every maneuver and its cost, added up to a total that the rocket must be able to pay. Mission design, which we will formalize in Chapter 29, begins and ends with this budget. Build it, and the rocket equation tells you how big a rocket you need; overrun it, and no amount of engineering will save the mission.
Here are representative prices — approximate and version-dependent (Tier 2), but good enough to plan with. Each is the ideal delta-v; real maneuvers add margins for losses and errors.
| Maneuver | Approx. $\Delta v$ |
|---|---|
| Earth surface → low Earth orbit (LEO) | ~9.4 km/s (incl. gravity & drag losses) |
| LEO → geostationary transfer orbit (GTO) | ~2.5 km/s |
| GTO → geostationary orbit (GEO) | ~1.5 km/s |
| LEO → trans-lunar injection (toward the Moon) | ~3.1 km/s |
| LEO → escape Earth entirely | ~3.2 km/s |
| LEO → trans-Mars injection | ~3.6 km/s |
| Soft landing on the Moon (from low lunar orbit) | ~1.7 km/s |
| Station-keeping, per year (GEO) | ~0.05 km/s |
Drawn as a diagram, these numbers form what enthusiasts call the delta-v map — the "subway map" of the solar system, where the distance between two places is measured not in kilometers but in the delta-v to get from one to the other. Here is a simplified sketch of the inner map (values in km/s along each leg):
~3.6 (capture/land vary)
Earth surface --9.4--> LEO --------> Trans-Mars ------> Mars orbit
| \
~3.1 | \ ~2.5
v v
Trans-Lunar GTO --1.5--> GEO
|
~0.7 v
Low Lunar Orbit --1.7--> Moon surface
The map makes a truth visible that surprises everyone the first time: most of the delta-v to anywhere is spent just getting off Earth. Reaching LEO costs $9.4\ \text{km/s}$. Once you are in LEO, you are — in delta-v terms — already halfway to anywhere in the solar system. Trans-Mars injection from LEO is only $3.6\ \text{km/s}$; escaping Earth entirely is $3.2$. As the writer Robert Heinlein put it, once you are in orbit you are halfway to anywhere. The map is why.
Worked Example: a communications satellite's delta-v budget. A satellite bound for GEO is usually dropped by its launch vehicle into GTO, so its own propulsion must cover the rest. From the table, GTO → GEO is about $1.5\ \text{km/s}$. Over a 15-year life it also needs station-keeping at roughly $0.05\ \text{km/s}$ per year — about $0.75\ \text{km/s}$ total — plus a small end-of-life burn to a graveyard orbit (~$0.01\ \text{km/s}$). Summing: $1.5 + 0.75 + 0.01 = 2.26\ \text{km/s}$. Add a 5% margin and the design budget is about $2.4\ \text{km/s}$. That number, not the launch, is what the satellite's own thrusters and tanks must be sized for; via the rocket equation it becomes a propellant mass when you size your spacecraft in Chapter 29. A mission is a route across the delta-v map, and its budget is the sum of the fares.
🔗 Connection: Notice how the map connects to what we have built. Each leg is a delta-v; the rocket equation converts that leg into a required mass ratio; the mass ratio, through staging, sizes the rocket. In Chapter 6 we will compute the LEO-to-GTO and transfer numbers ourselves from orbital energy, and in Chapter 10 we will derive the Hohmann-transfer legs exactly. For now, the delta-v map is the itinerary; the rocket equation is the fare table; your mission is a route across it.
Mission Design Checkpoint: your delta-v budget and rocket.py
Across this book you will design one real space mission and, if you like, build a small Python package,
astrotools, to compute it. This chapter starts both.
The design. In Chapter 1 you chose a mission — a communications satellite to GEO (Track A), a lunar lander (B), a Mars orbiter (C), or an asteroid rendezvous (D). Open your Mission Design Review (MDR) document and start its delta-v budget: a table with a row for each major maneuver your mission needs, using the delta-v map above as your price list. A Track-A comsat, for example, needs LEO → GTO (~2.5) plus GTO → GEO (~1.5), and then ~0.05 km/s per year of station-keeping for its lifetime. Add a 5–10% margin (we will justify margins in Chapter 29) and write down a total. That total is the delta-v your spacecraft's own propulsion must provide after the launch vehicle drops it in LEO — the number that will size its tanks in later chapters.
The code. Create astrotools/rocket.py and add the equation of this chapter:
import math
G0 = 9.80665 # standard gravity, m/s^2
def isp_to_ve(isp):
"""Convert specific impulse (s) to effective exhaust velocity (m/s)."""
return isp * G0
def delta_v(ve, m0, mf):
"""Tsiolkovsky rocket equation: delta-v (m/s) for exhaust velocity ve (m/s)
and initial/final masses m0, mf (any consistent unit)."""
return ve * math.log(m0 / mf)
def stage_delta_v(stages):
"""Total delta-v of a multistage rocket.
`stages` is a list of (ve, m0, mf) tuples, each including everything above it."""
return sum(delta_v(ve, m0, mf) for (ve, m0, mf) in stages)
# Falcon 9 (approximate): does two-stage beat single-stage? (see Section 3.5)
falcon9 = [
(isp_to_ve(290), 532_300, 136_600), # stage 1
(isp_to_ve(348), 111_000, 19_000), # stage 2
]
print(round(stage_delta_v(falcon9)))
# Expected output:
# 9892
The output — about $9{,}900\ \text{m/s}$ — is the two-stage total we computed by hand, and it clears the
$9{,}400\ \text{m/s}$ needed for orbit. In later chapters you will point these same functions at your
mission: given the delta-v budget you just started and a chosen engine's $I_{sp}$, rocket.py will tell
you the mass ratio and propellant load your spacecraft needs. The rocket equation is not just this
chapter's idea — it is the tool you will use to size everything you design.
Summary
The Tsiolkovsky rocket equation is the master equation of spaceflight. Carry these forward:
| Idea | The essential fact |
|---|---|
| Rocket equation | $\Delta v = v_e \ln(m_0/m_f)$ — velocity change is exhaust velocity times the log of the mass ratio. |
| It's exponential | $m_0/m_f = e^{\Delta v/v_e}$ — required propellant grows exponentially with target delta-v. Orbit ($9.4$ km/s) needs a mass ratio near 16, i.e. ~94% propellant. |
| Delta-v is the currency | Every maneuver has a delta-v price; a rocket is a delta-v bank account. Thrust and burn time set the rate of spending, not the amount. |
| Specific impulse | $I_{sp} = v_e / g_0$; multiply $I_{sp}$ (s) by $9.81$ to get $v_e$ (m/s). Chemical: 250–460 s; electric: thousands (but tiny thrust). |
| Staging | Drop empty mass so later engines don't accelerate dead structure. Stage delta-vs add. It turns a sub-orbital single stage into an orbital rocket. |
| Delta-v budget & map | Sum the delta-v of every maneuver; the "subway map" shows most of the cost is just reaching LEO. |
Key numbers worth memorizing: orbital delta-v $\approx 9.4\ \text{km/s}$; best chemical $v_e \approx 4.5\ \text{km/s}$; $g_0 = 9.81\ \text{m/s}^2$; orbital rockets are ~90% propellant.
Spaced Review
Retrieval strengthens memory. Answer from memory before checking, then look back at the cited section.
- (§3.1, Ch. 2) The rocket equation came from conservation of momentum. In one sentence, why can a rocket change its velocity in vacuum at all, where there is nothing to push against?
- (§3.3) Without computing, which needs a bigger jump in mass ratio: going from $\Delta v = 1$ to $2\ \text{km/s}$, or from $8$ to $9\ \text{km/s}$ (same $v_e$)? Why?
- (§3.4) An engine has $I_{sp} = 320\ \text{s}$. What is its exhaust velocity, roughly?
- (§3.5) In your own words, staging gives more delta-v not by adding fuel but by ______.
Answers
- Because thrust comes from throwing the rocket's own propellant backward; by conservation of momentum the rocket gains exactly the forward momentum the exhaust carries away — no external surface is needed. 2. From 8 to 9 km/s, by far. The mass ratio is $e^{\Delta v/v_e}$, an exponential, so the same 1 km/s step costs far more mass ratio when you are already high up the curve. 3. $v_e = 320 \times 9.81 \approx 3{,}140\ \text{m/s} \approx 3.1\ \text{km/s}$. 4. …by not carrying empty structure that later engines would otherwise have to accelerate — you drop the dead mass instead of hauling it.
What's Next
We now have the equation that says how much delta-v a rocket carries — but not how much a launch actually costs, because getting to orbit is not free. Gravity pulls you back down while you climb, and the atmosphere drags on you the whole way up, and both steal delta-v you would rather spend on orbital speed. Worse, the most common intuition about launch — that a rocket goes "up" — is wrong: orbit is not about height at all, but about going sideways fast enough to miss the ground. In Chapter 4 we turn the rocket equation loose on the real problem of ascent: the gravity turn, gravity and drag losses, and why the $9.4\ \text{km/s}$ to orbit is more than the $7.8\ \text{km/s}$ of orbital speed alone.