Aerospace Foundations — Installation
What You're Setting Up
Every example in this guide is hand-calculable with a scientific calculator — nothing here strictly requires software. This section sets up a small Python environment anyway, because every later technology in this academy (Aerodynamics, Propulsion, Orbital Mechanics) builds on exactly this same pattern of "compute a formula, check it against a known example" — establishing the habit and the toolchain here, on the simplest possible formulas, makes every later Installation section faster.
Install Python
(needs verification — recheck against current source: exact current numpy version changes frequently; the install command above pulls whatever is current, which is what you want.)
Verify Your Setup — Recompute Overview's Climb Example
This reproduces Overview's worked climb-angle example (W = 10,000 N, γ = 15°) in Python.
A Second Check — Vector Magnitude and Direction
A genuinely new check (not just Overview's example repeated): given a force's horizontal and vertical components, compute its magnitude and direction — the reverse operation from decomposing a known force into components.
Verify Everything Works
Common Setup Issues
Computed angle comes out positive when a negative (or vice versa) was expected
Check the sign convention you're using for Fy — a downward-pointing force component should be entered as negative if "up" is your positive y-direction, which is the standard convention used throughout this guide. Mixing sign conventions between different parts of a calculation is a common source of an answer that's correct in magnitude but wrong in direction.
math.atan2 gives a different answer than expected compared to math.atan
Use atan2(Fy, Fx), not plain atan(Fy/Fx), whenever you need the correct quadrant — atan alone can't distinguish between a vector pointing into the first quadrant versus the third quadrant (opposite direction), since the ratio Fy/Fx is identical for both; atan2 takes both components separately and resolves this ambiguity correctly.
What's Set Up
Next Steps
Go to the Fundamentals section to continue building on this same vector/Newton's-laws toolkit.

