3.2.17 · D5Orbital Mechanics & Astrodynamics
Question bank — Converting between orbital elements and state vectors (r, v)


True or false — justify
Six numbers, one ellipse. Decide, then defend.
State vectors and elements carry exactly the same information.
True in general — both are 6 numbers describing the same orbit, and conversion loses no physics. Caveat: at the circular () or equatorial () singularities some angles (, ) become undefined, so the classical element set is momentarily incomplete even though stays perfectly valid.
The eccentricity vector always points from the focus toward apoapsis.
False — it points toward periapsis, the closest point. At periapsis lies along , so and .
Because is constant, the orbit plane never changes in the two-body problem.
True — constant means a fixed perpendicular direction, so both and stay in the one plane is normal to; that's exactly why fixes and .
Specific angular momentum points along the orbit's motion.
False — is the cross product , so it is perpendicular to the plane of motion (it points "out of" the orbit), not along the path.
A larger semi-major axis always means a faster satellite.
False — by vis-viva, larger means lower total speed on average (higher, slower orbits); energy rises toward zero as grows, meaning less kinetic energy for a given .
If at some instant, the body is at either periapsis or apoapsis.
True — is the rate of change of distance; zero means is momentarily neither growing nor shrinking, which happens only at the two turning points of the ellipse.
The node vector points toward periapsis.
False — points toward the ascending node (where the orbit crosses the reference plane going up). Periapsis is fixed by , and the angle between and is the argument of periapsis .
For a hyperbolic trajectory the semi-major axis comes out negative.
True — hyperbolas have positive specific energy , and then forces ; the formula handles all conics without a special case.
Two orbits with identical but different are different orbits.
False — same orbit, different positions along it; is the only element that changes with time, so it names the point, not the path.
Spot the error
Each line contains a plausible-sounding mistake. Name it and fix it. (See figure s01 for the rotation-axis convention.)
"To go from perifocal to inertial, rotate by ."
Wrong signs and order. Building the perifocal frame from inertial is a swivel , tilt , spin ; going the other way is the inverse, and the inverse of a rotation product reverses the order and negates each angle. So the correct transform is .
"I used , done."
Missing the quadrant check — only returns . If (moving toward periapsis) the true value is . More robust: compute style two-argument arctangent, which returns the full in one step with no sign patch. See figure s03.
" so the argument of periapsis is by definition."
False reasoning — small does not fix to zero; is still the well-defined angle from the node to periapsis. Only when exactly does become undefined.
", and since cosine can be negative I must check the sign of separately."
No quadrant check needed for — inclination lives in , exactly the range returns, so gives uniquely with no ambiguity.
"For I wrote ."
Dropped the — the tangential component is , not . Forgetting it makes velocity wrong everywhere except the special points, and violates energy conservation.
" gives the orbit size from energy."
Sign slip — the correct relation is . Why the minus: for a bound orbit the specific energy is negative (, the body is trapped in the potential well), so flips that into a positive size. A plus sign would give a nonsensical negative for an ordinary ellipse.
"The RAAN is measured from periapsis."
Wrong reference. Why from : describes how the orbit plane is swivelled, which is set entirely by where the plane crosses the equator — the ascending node. That crossing is measured in the reference plane from the fixed inertial direction (the reference/vernal direction). Periapsis lies inside the plane and is measured separately by (from the node) and (from periapsis).
Why questions
The parent recipe does things — here's why they can't be skipped. (Step numbers refer to the one-glance recipe above.)
Why do steps 6, 7, 8 need a companion-sign check but step 5 (inclination) does not?
Because matches 's output range exactly, but span the full , so a second quantity's sign is needed to know which half of the circle the angle lives in. See figure s03.
Why is the right sign-flag for the true anomaly ?
Because means the body is moving away from the focus, i.e. climbing from periapsis toward apoapsis, so ; a negative value means descending, so .
Why does converting elements → state split into "build in PQW, then rotate"?
In the perifocal frame periapsis sits on one axis, so and have dead-simple forms; all the messy orientation () is then delivered by a single rotation matrix afterward.
Why does the eccentricity vector deserve to be derived rather than memorised?
Its derivation shows it is a genuine constant of motion (crossing the two-body equation with integrates to a fixed vector), which is why it can reliably encode both and the periapsis direction .
Why does fix two elements ( and ) while fixes only one ()?
is a vector — its direction pins the plane's orientation (giving both tilt and swivel ), while is a single scalar and can only set one size number, .
Why does the vis-viva relation let a single speed measurement (with ) reveal ?
Because ties speed, position, and size together; knowing and leaves only unknown — see Two-body problem and the vis-viva equation.
Why must the same rotation matrix be applied to both and ?
They are two vectors expressed in the same perifocal frame; changing frames is one geometric re-orientation, so it acts identically on every vector living in that frame.
Edge cases
The scenarios where naive formulas quietly break. (Figure s04 shows the two singular geometries.)
Circular orbit (): which element becomes undefined, and how is it patched?
becomes undefined because there is no periapsis to measure from (). Patch: use the argument of latitude , the angle from the node to the body. See Orbital singularities and equinoctial elements.
Equatorial orbit (): what fails, and why?
because is parallel to , so there is no ascending node and is undefined; the fix is to track the true longitude instead of and separately.
Both and (circular equatorial): how many elements collapse?
Both and vanish, and only plus a single angle (the true longitude ) remain meaningful; equinoctial elements are built precisely to avoid these dual singularities.
Parabolic escape (): what happens to ?
Energy , so blows up (infinite) — a parabola has no finite semi-major axis, and one instead uses the semi-latus rectum to describe it.
At exact apoapsis, — how does the recipe pick over ?
The dot product is zero at both turning points, so the sign rule is inconclusive; you resolve it from , which is at apoapsis (giving ) and at periapsis.
Radial (straight-line) trajectory, : why does the whole scheme break?
Then , so the orbit plane, , , and are all undefined — a degenerate "orbit" with no angular momentum that the element set simply cannot represent.
Retrograde orbit ( between and ): does still work?
Yes — makes the cosine negative and returns an angle above , correctly flagging retrograde motion with no extra sign fix (that's why needs no quadrant check).
Nearly-zero eccentricity where numerical noise makes slightly exceed : what's the safe habit?
Clamp the argument to before calling ; floating-point round-off can push it past the valid range and crash an otherwise correct computation.
Recall One-sentence summary of every trap
The recurring lessons: points out of the plane (not along), points to periapsis, semi-major axis uses a minus sign (), needs a companion sign except for , transforming PQW→ECI uses negative angles, and whenever or some element dissolves and must be swapped for , longitude, or equinoctial elements.