Case Study: How Big Must the Rocket Be? Feeling the Exponential
"The rocket equation does not care how clever you are. It only asks how fast you want to go, and then presents the bill."
Executive Summary
In the first case study we took a finished spacecraft apart. Here we do something harder and more revealing: we try to build a launcher on paper, and watch it fail. Given the simplest possible goal — loft a small $10\ \text{kg}$ payload to low Earth orbit — we will use only the rocket-equation preview from §1.2 to estimate how big the rocket must be. We will discover that a single-stage rocket cannot do it at all, not for lack of cleverness but because of a hard structural ceiling, and that the escape from this trap — throwing part of the rocket away mid-flight — is forced on us by the same exponential that created it. This is the chapter's thesis, "space is hard," turned into a design you can feel in your hands, and it is the exact reasoning that opens Chapter 3.
Skills applied
- Turning a delta-v requirement into a required mass ratio via $m_0/m_f = e^{\Delta v/v_e}$ (§1.2).
- Confronting the structural ceiling that makes single-stage-to-orbit nearly impossible (§1.2).
- Motivating staging as the response to the tyranny of the rocket equation (§1.2, §1.5).
- Sanity-checking a paper design against a real small launch vehicle.
Background
The requirement
- Payload: $m_L = 10\ \text{kg}$ — a small satellite, about the size of a large shoebox.
- Destination: low Earth orbit, so the rocket must supply the chapter's admission price, $\Delta v = 9.4\ \text{km/s}$ (orbital speed plus the losses we meet in Chapter 4).
The one honest fact
The best kerosene rocket engines throw their exhaust out at about $v_e = 3.4\ \text{km/s}$. That single number, set by chemistry, is all the physics we need — plus one dose of engineering reality we will introduce when the moment comes. Everything else follows from the rocket-equation preview.
Phase 1: Turn the speed into a mass ratio
The rocket-equation preview says the mass ratio a rocket needs is $m_0/m_f = e^{\Delta v/v_e}$. For our mission,
$$ \frac{m_0}{m_f} = e^{9.4/3.4} = e^{2.76} \approx 15.9. $$
So the fueled rocket must be about sixteen times heavier than the empty rocket — fifteen of every sixteen kilograms are propellant, a $94\%$ propellant fraction. If structure and tanks were weightless, the whole vehicle would be $15.9 \times 10\ \text{kg} = 159\ \text{kg}$: a $159\ \text{kg}$ rocket, of which $149\ \text{kg}$ is kerosene and liquid oxygen, to put $10\ \text{kg}$ in orbit. Even in this fantasy of massless tanks, you must launch sixteen times the payload to deliver the payload. That is the exponential of §1.2, priced out.
import math
def mass_ratio(dv, ve): return math.exp(dv / ve)
def prop_fraction(dv, ve): return 1 - math.exp(-dv / ve)
dv, ve = 9400, 3400 # to LEO, kerosene engine (m/s)
R = mass_ratio(dv, ve)
print(f"single-stage mass ratio needed: {R:.1f}")
print(f"propellant fraction: {prop_fraction(dv, ve)*100:.0f}%")
print(f"structural ceiling (eps=0.08): {1/0.08:.1f}")
# Expected output:
# single-stage mass ratio needed: 15.9
# propellant fraction: 94%
# structural ceiling (eps=0.08): 12.5
That third line is the twist. To understand it, we have to stop pretending tanks are weightless.
Phase 2: The structural ceiling — why one stage fails
Real tanks, engines, and structure are not free. Engineers capture this with a structural coefficient: the dry structure of a good stage is roughly $8\%$ of the propellant it holds (we will call this $\varepsilon \approx 0.08$ and use it properly in Chapter 3). This innocent-looking number sets a hard ceiling on the mass ratio any single stage can reach, no matter how much propellant you pour in.
Here is the trap, in words. To raise your mass ratio you add propellant. But propellant needs a bigger tank, and a bigger tank is more structure, and that structure is part of the empty mass $m_f$ that sits in the denominator of the mass ratio. Past a point, every kilogram of propellant you add brings almost a kilogram of tank with it, and the ratio stops climbing. The ceiling works out to $1/\varepsilon$: with $\varepsilon = 0.08$, no single stage can exceed a mass ratio of about
$$ \frac{1}{\varepsilon} = \frac{1}{0.08} = 12.5. $$
But our mission needs a mass ratio of $15.9$. Since $15.9 > 12.5$, the requirement is above the ceiling: a single kerosene stage cannot reach orbit at all, with any amount of fuel. The design does not merely come out heavy or expensive; it comes out impossible. This is not a failure of imagination — it is the rocket equation and the strength of materials meeting head-on, and materials winning.
💡 Intuition: Trying to reach orbit in one stage is like trying to fill a bucket that has a hole whose size grows with how much water you pour. Below the ceiling you make progress; approaching it, the hole (the structure needed to hold ever more propellant) swallows every addition. No matter how big you build, you cannot fill past the leak. The only fix is to change buckets partway up — which is staging.
Phase 3: Stage it — the escape the exponential forces
Section 1.2 named the escape hatch: throw the empty part away. Split the job between two stages, each of which only has to reach a mass ratio below the $12.5$ ceiling. The cleanest first guess is to split the delta-v evenly — $4.7\ \text{km/s}$ each — so each stage needs a mass ratio of only
$$ R_{\text{stage}} = e^{4.7/3.4} = e^{1.38} \approx 3.98, $$
comfortably under $12.5$ and easily buildable.
import math
def mass_ratio(dv, ve): return math.exp(dv / ve)
ve = 3400
half = 9400 / 2 # split the delta-v evenly between two stages
R_stage = mass_ratio(half, ve)
print(f"per-stage delta-v: {half:.0f} m/s")
print(f"per-stage mass ratio: {R_stage:.2f} (below the 12.5 ceiling? {R_stage < 12.5})")
print(f"ideal two-stage total ratio: {R_stage**2:.1f}")
# Expected output:
# per-stage delta-v: 4700 m/s
# per-stage mass ratio: 3.98 (below the 12.5 ceiling? True)
# ideal two-stage total ratio: 15.9
Look hard at that last line. The two stages multiply to a total ratio of $3.98 \times 3.98 = 15.9$ — the same $15.9$ the single stage needed. Staging does not reduce the total mass ratio the mission demands; the exponential is untouchable. What staging changes is feasibility: it splits one impossible mass ratio ($15.9$, above the ceiling) into two possible ones ($3.98$ each, below it). You reach orbit not by cheating the equation but by never asking any single stage to do more than its structure allows.
🚪 Threshold Concept. Staging is not an optimization — it is a necessity handed down by the rocket equation. The exponential drives the required mass ratio above what any real structure can achieve in one piece, so the vehicle must shed mass in flight to reach orbit at all. Every orbital rocket in history is multistage for this single reason. Once you see that the tyranny of §1.2 forces the staging of Chapter 3, the architecture of every launch vehicle you will ever see stops looking like a choice and starts looking like an answer.
Phase 4: A reality check against a real rocket
Our two stages, with massless structure, still weigh in around $159\ \text{kg}$ to loft $10\ \text{kg}$ — and once we add the real $8\%$ structure to each stage, the lift-off mass climbs to a few hundred kilograms. Call it a payload fraction of roughly $2$–$4\%$: a couple hundred kilograms of rocket for every ten kilograms delivered.
Is that believable? Compare a real small launcher. Rocket Lab's Electron masses about $13{,}000\ \text{kg}$ on the pad and delivers roughly $300\ \text{kg}$ to low orbit — a payload fraction of about
$$ \frac{300}{13{,}000} \approx 2.3\%. $$
Our paper estimate of $2$–$4\%$ lands right on top of the real vehicle. The exponential we derived from one line of algebra predicts, correctly, that a small orbital rocket is roughly forty times heavier than the thing it delivers — and that almost all of that mass is propellant. That agreement is the whole lesson of Chapter 1 in a single ratio: reaching orbit is expensive not by accident or bad engineering, but because the rocket equation charges an exponential price that even the best materials can barely pay.
🔧 Engineering Reality: Our even $4.7/4.7$ delta-v split was a guess, and the true optimum (which minimizes lift-off mass) gives the more efficient stage a bit more of the work. We also ignored that a first stage's engine performs worse in the thick lower atmosphere. Both refinements are real, and both are the business of Chapter 3 and Chapter 22. They change the numbers by tens of percent — they do not change the verdict, which the ceiling already delivered: one stage cannot; two can.
Discussion Questions
- The single-stage design failed not because it was too heavy but because it was impossible. Explain the difference, and what physically happens as a stage's mass ratio approaches $1/\varepsilon$.
- Staging left the total required mass ratio unchanged at $15.9$, yet made the mission feasible. Reconcile those two facts in your own words.
- Suppose a breakthrough gave you an engine with $v_e = 4.5\ \text{km/s}$ instead of $3.4$. Recompute the single-stage mass ratio for $9.4\ \text{km/s}$. Is single-stage-to-orbit now below the $12.5$ ceiling? What does this say about the value of a better engine?
- Our payload fraction (~2–4%) matched Electron's 2.3%. Why should a paper calculation using only the rocket equation land so close to a real, complex vehicle?
Your Turn: Extensions
- Option A (analysis). Redo Phase 1 for a $100\ \text{kg}$ payload instead of $10\ \text{kg}$. Does the required mass ratio change? Does the lift-off mass? Explain why one scales and the other does not.
- Option B (computation). Write
feasible_single_stage(dv, ve, eps)that returnsTrueif the required mass ratio $e^{\Delta v/v_e}$ is below the ceiling $1/\varepsilon$, elseFalse. Trace it for the LEO kerosene case(9400, 3400, 0.08)and the hydrogen case(9400, 4500, 0.08). (Do not run it — hand-trace and add# Expected output:.) - Option C (your mission). For your chosen track, look up (or estimate from the checkpoint) the delta-v your spacecraft's own engine must supply after the launcher drops it in orbit, and use $m_0/m_f = e^{\Delta v/v_e}$ to find the mass ratio it needs. Record it in your MDR — it is the first real number of your design.
Key Takeaways
- A delta-v requirement becomes a mass ratio through $m_0/m_f = e^{\Delta v/v_e}$; for LEO with kerosene that is about $15.9$, i.e. $94\%$ propellant.
- Structure imposes a hard ceiling. With $\varepsilon = 0.08$, no single stage can exceed a mass ratio of $1/\varepsilon = 12.5$ — below what orbit demands, so single-stage-to-orbit is essentially impossible.
- Staging is forced, not chosen. Splitting the delta-v puts each stage under the ceiling; the total mass ratio is unchanged, but the mission becomes buildable. Every orbital rocket is multistage for this reason.
- The exponential predicts reality. A one-line calculation gives a ~2–4% payload fraction, matching a real small launcher — proof that "space is hard" is a quantitative fact, not a figure of speech.