Convert mean anomaly into eccentric anomaly using robust numerical solvers fast here. Explore iteration details, unit conversions, and optional orbital geometry outputs with ease.
For an elliptical orbit, the eccentric anomaly E satisfies Kepler’s equation:
M = E − e sin(E)
This calculator solves for E numerically. With Newton-Raphson:
Eₙ₊₁ = Eₙ − (Eₙ − e sin(Eₙ) − M) / (1 − e cos(Eₙ))
If orbital geometry is enabled, it also computes:
tan(ν/2) = √((1+e)/(1−e)) · tan(E/2)
r = a(1 − e cos(E))
| e | M (deg) | Approx. E (deg) | Approx. ν (deg) | a | Approx. r |
|---|---|---|---|---|---|
| 0.20 | 30 | 36.111 | 43.126 | 7000 km | 5869 km |
| 0.60 | 120 | 154.773 | 177.746 | 1 AU | 1.55 AU |
| 0.05 | 300 | 297.182 | 294.388 | 10000 m | 10482 m |
Eccentric anomaly E links motion on a reference circle to motion on an ellipse. In orbital work you solve for E, then derive true anomaly ν, radius r, and position. This intermediate step stays numerically stable across many eccentricities. Common in orbit analysis.
Mean anomaly M grows linearly with time: M = n(t − τ), with mean motion n and periapsis time τ. Because M is uniform, it is ideal for propagation. Mean motion n is typically expressed in rad/s. Inputs accept degrees or radians and are normalized to 0–2π.
Elliptical orbits require 0 ≤ e < 1. Earth has e ≈ 0.0167, so E and M differ slightly. Transfer orbits often use e = 0.2–0.8. Halley’s Comet has e ≈ 0.967, stressing solvers. For e ≳ 0.9, choose good guesses and realistic iteration limits.
Newton-Raphson often converges in a few steps when 1 − e cosE is not near zero. With tolerance 1e−10 radians, the last update is tiny, supporting accurate geometry. For moderate e, 3–6 iterations are typical. The iteration log lets you verify convergence and spot slow or unstable cases.
Fixed-point iteration applies E = M + e sinE. It is slower but useful for teaching and comparisons. It behaves best when e is small. If convergence is slow, raise max iterations or relax tolerance to observe the trend without truncating the process.
True anomaly ν locates the body in the orbital plane. Using tan(ν/2) = √((1+e)/(1−e)) tan(E/2) is well behaved at small angles. Returning degrees and radians helps match textbooks, telemetry, and simulation outputs.
With semi-major axis a, compute radius via r = a(1 − e cosE). For a ≈ 7000 km and e = 0.2, r varies by thousands of kilometers over an orbit. Periapsis and apoapsis radii are a(1−e) and a(1+e) respectively. Seeing r alongside E ties the math to physical distance.
Professional use benefits from checks on units, normalization, and sensitivity. If different starting guesses change E beyond tolerance, the solve likely failed. Compare runs after changing solver settings. CSV/PDF exports capture inputs and outputs for traceable reports, while the iteration table supports audits and reviews.
It is an intermediate angle that makes Kepler’s equation solvable and connects mean anomaly to true anomaly, radius, and orbital position on an ellipse.
The displayed formulas are for elliptical orbits. Parabolic and hyperbolic trajectories use different anomaly definitions and different forms of Kepler’s equation.
Use Newton-Raphson for speed and reliability in most cases. Fixed-point iteration is slower but helpful for learning or comparing convergence behavior.
For many engineering tasks, 1e−8 to 1e−10 radians is strong. Looser tolerances run faster but can slightly affect derived quantities like radius and true anomaly.
Normalization removes ambiguity across multiple revolutions and keeps iteration stable. It also makes outputs easier to compare across different input conventions and datasets.
Only when you enable orbital geometry and want radius r. If you only need eccentric anomaly, you can disable geometry and skip a.
Very high eccentricity, poor initial guesses, or too-strict tolerance with too few iterations can cause non-convergence. Increase max iterations, adjust the guess, or use Newton-Raphson.
Important Note: All the Calculators listed in this site are for educational purpose only and we do not guarentee the accuracy of results. Please do consult with other sources as well.