Prerequisites
This is a rigorous book, but it starts from a modest foundation. Here is exactly what you need, and how to tell whether you have it.
What you need
Calculus. You should be comfortable with derivatives and integrals — what they mean (a rate of change; an accumulated total) as much as how to compute them. Orbital mechanics is applied calculus, and propulsion leans on it constantly. You do not need multivariable calculus or differential equations in advance; where we need a differential equation (the equations of motion, a trajectory), we introduce it in context and often solve it numerically. Appendix D is a refresher on the vector calculus and ordinary differential equations the book uses.
Physics. About one year of college physics: Newton's laws, work and energy, momentum, gravitation, and the basics of thermodynamics (temperature, pressure, the ideal gas law, heat). If you know why a ball thrown horizontally still falls at the same rate as one dropped, you already have the seed of orbital mechanics.
Basic chemistry. Enough to know that combustion combines a fuel and an oxidizer to release energy, and that molecules have mass. We build up what we need for propellants and combustion (Chapter 18) from there.
Comfort with equations. The book uses mathematics extensively — but it always explains what the equations mean physically. You need to be willing to read an equation slowly, not to have seen it before.
Python (optional). For the computational exercises and the astrotools project, a little Python
helps — enough to read a function and a loop. Every code example is fully explained and shows its
output, so you can follow the reasoning even without running anything. Appendix C gets you set up if you
want to run the code.
You do not need any aerospace-engineering background, any prior rocketry experience, or any familiarity with orbital mechanics. That is what the book is for.
A quick self-check
If you can answer these, you are ready:
- A car accelerates from 0 to 30 m/s in 6 s. What is its acceleration, and what force does that take on a 1,200 kg car? (Newton's second law.)
- What is $\displaystyle\int_0^{2} 3t\,dt$? (Basic integration — and physically, if $3t$ were a velocity, this is a distance.)
- A 2 kg object sits at the top of a 10 m cliff. How much gravitational potential energy does it have relative to the ground ($g \approx 9.8\ \text{m/s}^2$)? (Energy.)
- Two ice skaters push off each other. The 50 kg skater moves at 2 m/s. How fast does the 40 kg skater move, and in which direction? (Conservation of momentum — this is literally how a rocket works.)
Answers
1. $a = 30/6 = 5\ \text{m/s}^2$; $F = ma = 1200 \times 5 = 6{,}000\ \text{N}$. 2. $\int_0^2 3t\,dt = \left[\tfrac{3}{2}t^2\right]_0^2 = 6$. 3. $U = mgh = 2 \times 9.8 \times 10 = 196\ \text{J}$. 4. By conservation of momentum, $40\,v = 50 \times 2$, so $v = 2.5\ \text{m/s}$, in the opposite direction. The lighter skater recoils faster — exactly why low-mass, high-speed exhaust is efficient.If those felt hard, that is fine — spend some time with a calculus and an introductory-physics resource first, then come back. In the DataField series, the Calculus and Physics volumes are built to be exactly this book's on-ramp, and Linear Algebra and Differential Equations deepen the later chapters (attitude dynamics, trajectory analysis). None of them is required to begin.