3.2.15 · D2Orbital Mechanics & Astrodynamics

Visual walkthrough — Solving Kepler's equation — Newton-Raphson iteration

2,245 words10 min readBack to topic

We are chasing this one boxed sentence:

But before that box means anything, we must draw the shapes, name the angles, and count the areas. Let's go from zero.


Step 1 — Draw the orbit and its shadow-circle

WHAT. We draw the elliptical orbit (the squashed circle the planet actually travels) and then draw a perfect circle around it that just touches its widest points. That circle is the auxiliary circle.

WHY. An ellipse is awkward to measure angles on — its "radius" changes everywhere. A circle is friendly: every point sits the same distance from the centre. The trick of the whole derivation is: do the geometry on the easy circle, then squash the answer down onto the ellipse. (This same auxiliary circle is the home of the eccentric anomaly.)

PICTURE. Look at the figure. The mint ellipse has:

  • semi-major axis — half the long width (centre to the far edge, along the wide direction),
  • semi-major axis label and semi-minor axis — half the short height.

The lavender circle has radius exactly . The centre is the dot marked . Off to one side sits the focus — the special point the Sun lives at, not the centre.


Step 2 — Name the steady clock-angle

WHAT. We invent a pretend angle that grows at a perfectly constant rate as time ticks. Call it , the mean anomaly.

WHY. The real planet does not move at constant angular speed (Kepler's 2nd law: it hurries near the Sun, dawdles far away). That makes "where is it at time ?" hard. So we first build something that is uniform in time — a mental clock-hand — and later connect it to the real position. is defined so that it sweeps a full in exactly one orbital period (see Mean Motion and Orbital Period).

PICTURE. The butter-coloured clock-hand sweeps at a steady rate. In equal time-slices it opens equal angles — the little arcs are all the same size. That uniformity is the entire reason exists.


Step 3 — Name the geometric angle on the circle

WHAT. Take the planet on the ellipse. Slide straight up (parallel to the short axis) until you hit the auxiliary circle. The angle at the centre to that circle-point is the eccentric anomaly .

WHY. We need a handle on the planet's real position, but measured on the friendly circle. is that handle. Crucially is measured from the centre, while the true angle of the planet is measured from the focus — that mismatch is where the whole equation's "correction term" will come from.

PICTURE. Notice the vertical dashed line: the planet on the ellipse and the point on the circle share the same horizontal position. The angle (from the wide axis, at centre ) is . The height of is ; its horizontal offset from centre is .


Step 4 — Equal areas means equal time

WHAT. By Kepler's 2nd law, the line from the focus to the planet sweeps equal areas in equal times (see Kepler's Laws of Planetary Motion). So the area swept since perihelion is a fixed fraction of the total ellipse area — and that fraction is exactly from Step 2.

WHY. This is what converts a time statement into an area statement. Time is invisible; area we can compute with geometry. This is the pivot of the whole derivation.

PICTURE. The shaded coral wedge is the area the focus-line has swept from perihelion out to the planet. Its size, divided by the whole ellipse, equals the fraction of the period elapsed.


Step 5 — Compute the swept area on the circle: pie slice minus triangle

WHAT. Do the swept area on the circle instead. The region swept from perihelion, measured from the focus, is a pie slice about the centre minus a triangle that hangs off toward the focus.

WHY. Circle areas are trivial: a pie slice of angle in a circle of radius has area . But our wedge is measured from the focus, not the centre — the focus is shoved over by . That offset carves off a triangle. Subtract it.

PICTURE. The lavender pie slice is the full wedge from the centre. The coral triangle must be removed because our real reference point is , sitting to the side. That triangle has base (centre-to-focus) and height (height of ).


Step 6 — Squash the circle area onto the ellipse

WHAT. Every point on the circle drops to the ellipse by shrinking its height by the factor . Shrinking every height by shrinks every area by too.

WHY. Areas scale by the same factor as the one direction you squash (widths are untouched, heights all multiply by , so the product — area — multiplies by ). This lets us borrow the easy circle-area result and land it on the hard ellipse.

PICTURE. The tall lavender circle-wedge on the left, and the same wedge squashed flat into the coral ellipse-wedge on the right. Every vertical strip lost the same fraction of its height.


Step 7 — Assemble and watch the letters cancel

WHAT. Put the squashed area into the area-law of Step 4 and simplify.

WHY. This is the final algebra — and it is beautiful, because every and cancels, leaving a pure relation between angles.

PICTURE. The cancellation, drawn: on top and on the bottom both carry the same ; strike them out and only and survive.


Step 8 — Edge cases: the equation must survive the extremes

WHAT. Check the corners: a circle, the two apsides, and the near-parabolic limit.

WHY. A law you trust must not break at or . Let's stress-test it.

PICTURE. Three mini-panels: a perfect circle (left), the perihelion/aphelion line where the correction dies (middle), and the stretched near-parabola where the correction rages (right).


The one-picture summary

Everything above, compressed: the circle gives the pie-slice, the focus carves the triangle, the squash by drops it onto the ellipse, and the area-law equates it to the clock fraction — leaving .

Recall Feynman retelling — say the whole walkthrough in plain words

We wanted to connect the time on a planet's journey to where it actually is. Time is smooth and boring, so we invented a pretend clock-hand called that sweeps at perfectly even speed — after a fraction of the orbit's period, it has swept that same fraction of a full turn.

But the planet cheats: near the Sun it races, far away it crawls, sweeping equal areas in equal times. So instead of chasing its messy angle directly, we drew a big helper circle around the squashed orbit and marked the angle from the centre up to the planet's shadow on that circle.

To measure the area the planet swept, we cut a clean pie slice out of the circle (easy: ), then sliced off a triangle because the Sun sits off-centre by — that triangle is . Slice minus triangle gives . We then squashed the whole circle-area down onto the ellipse by the factor , so the real swept area is .

Finally we said: (area swept)/(whole ellipse ) must equal (clock fraction) . All the 's and 's cancel, and out pops the jewel: . The is just the memory of that off-centre triangle. And because you can't peel back out of that equation with algebra, we have to guess-and-correct — which is where Newton-Raphson takes over.

Recall Quick self-test

Why does the correction term vanish at perihelion and aphelion? ::: Because there (at and ), so the off-centre triangle has zero height and area — nothing to subtract. What geometric object is the term? ::: The triangle from centre to focus to the circle-point , with base and height . Why work on the circle instead of the ellipse directly? ::: Circle sectors have the trivial area ; we compute there and squash by onto the ellipse.


Parent: Solving Kepler's equation — Newton-Raphson iteration · Related: Eccentric Anomaly and the Auxiliary Circle · True Anomaly and the Orbit Equation · Mean Motion and Orbital Period