Chapter 3 — Key Takeaways (The Rocket Equation)

A one-page reference. Reread this before an exam, or before you size any rocket.

The equation, three ways

Form Use it to find
$\Delta v = v_e \ln\!\left(\dfrac{m_0}{m_f}\right)$ the delta-v of a stage from its masses and exhaust velocity
$\dfrac{m_0}{m_f} = e^{\Delta v / v_e}$ the mass ratio needed for a target delta-v
$\dfrac{m_p}{m_0} = 1 - e^{-\Delta v / v_e}$ the propellant fraction needed for a target delta-v

What every symbol means (and its units)

Symbol Name Units Notes
$\Delta v$ delta-v (velocity change) m/s or km/s the "currency" — every maneuver has a price
$v_e$ effective exhaust velocity m/s set by engine + propellant; higher is better
$m_0$ initial (wet) mass kg structure + engines + payload + all propellant
$m_f$ final (dry) mass kg everything except the burned propellant
$m_0/m_f$ mass ratio the whole build in one number
$I_{sp}$ specific impulse s $= v_e/g_0$; multiply by 9.81 to get $v_e$
$g_0$ standard gravity 9.81 m/s² a unit-conversion constant here, not local gravity

The exponential (the tyranny), at a glance

Target $\Delta v$ (at $v_e=3.4$ km/s) mass ratio propellant fraction
1 km/s 1.3 25%
3.4 km/s 2.7 63%
7 km/s 7.8 87%
9.4 km/s (to orbit) 16 94%

Read it as: near orbital speed, each extra km/s of delta-v costs exponentially more propellant. You cannot reach orbit by "adding fuel" — the fuel mostly lifts the fuel.

Specific impulse landscape (memorize the order of magnitude)

Propellant / engine $I_{sp}$ (s) $v_e$ (km/s)
Solid motor 250–280 ~2.6
LOX / kerosene (Merlin) 280–340 ~2.9–3.3
LOX / methane (Raptor) 330–380 ~3.3–3.7
LOX / hydrogen (RS-25) 360–460 ~3.5–4.5
Ion / Hall (electric) 1,500–4,000+ ~15–40 (tiny thrust)

Hydrogen wins among chemicals because its exhaust molecules are lightest → fastest at a given temperature (Ch. 19). Electric wins on $I_{sp}$ but cannot launch (Ch. 20).

Staging — the escape hatch

  • Chemical $v_e$ caps near 4.5 km/s; orbit needs ~9.4 km/s → mass ratio ~16 → ~94% propellant. Almost nothing is left for payload with one stage.
  • Fix: drop empty structure so later engines don't accelerate it. Stage delta-vs add: $\Delta v_{\text{total}} = \sum_i v_{e,i}\ln(m_{0,i}/m_{f,i})$, each stage's masses including everything above it.
  • Structural coefficient $\varepsilon = m_s/(m_s+m_p)$ (~0.08 for good stages) caps a single stage's mass ratio at $1/\varepsilon$ (~12.5). That ceiling is why staging is mandatory.

Decision aid — "which form do I use?"

You know… You want… Use
masses + $v_e$ delta-v $\Delta v = v_e\ln(m_0/m_f)$
target $\Delta v$ + $v_e$ mass ratio $m_0/m_f = e^{\Delta v/v_e}$
target $\Delta v$ + $v_e$ + $\varepsilon$ + payload stage mass $m_{\text{stage}} = m_{\text{above}}\dfrac{R-1}{1-R\varepsilon}$
$I_{sp}$ $v_e$ $v_e = I_{sp}\,g_0$

Common pitfalls

Pitfall Reality
"A bigger rocket goes faster." Delta-v depends on the mass ratio, not size. Scaling up changes nothing.
"More thrust → more delta-v." Thrust sets the rate of spending delta-v (and gravity losses), not the total.
"$I_{sp}$ in seconds is weird / wrong." It's $v_e/g_0$; multiply by 9.81 to recover the real exhaust velocity.
"Staging just splits the same fuel." It stops later engines from hauling dead structure — same fuel, more delta-v.
Using sea-level $I_{sp}$ everywhere. $I_{sp}$ rises with altitude; use a vacuum value upstairs, an average for stage 1.

Numbers worth memorizing

  • Delta-v to LEO ≈ 9.4 km/s (7.8 orbital + ~1.6 losses).
  • Best chemical $v_e$ ≈ 4.5 km/s; $g_0 = 9.81$ m/s².
  • Orbital rockets are ~90% propellant; payload fraction ~1–4%.
  • Delta-v map highlight: most of the cost is just reaching LEO — "once in orbit, halfway to anywhere."

Mission / astrotools additions this chapter

  • MDR: started your mission's delta-v budget (maneuvers + margin → total).
  • rocket.py: isp_to_ve(isp), delta_v(ve, m0, mf), stage_delta_v(stages).