Astrophysics · Mathematics
📅 July 2026 ⏱ ≈ 8 min read 🎯 Intermediate

Hill Sphere and Sphere of Influence

Why does the Moon orbit Earth and not get pulled away by the Sun, which is 330,000 times heavier? The answer is a bubble of gravitational dominance around every orbiting body — the Hill sphere — and a simpler practical approximation used to plan spacecraft trajectories: the sphere of influence.

TL;DR: A moon stays with its planet, not the Sun, because of a "Hill sphere" — a bubble of gravitational dominance sized by a simple cube-root formula, which also explains why Lagrange points L1/L2 sit where they do. Engineers use a related but simpler "sphere of influence" for spacecraft routing, and real moons orbit well inside these boundaries for stability.

1. The question: why doesn't the Sun steal the Moon?

The Sun's gravitational pull on the Moon is actually about twice as strong as Earth's — a fact that surprises most people the first time they compute it. Yet the Moon has orbited Earth stably for over four billion years. The resolution isn't about the strength of a single force; it's about the difference between how the Sun pulls on the Moon versus how it pulls on Earth. Because the Moon and Earth are close together compared to their distance from the Sun, the Sun pulls on both of them almost equally — and it's that near-cancellation, not the raw force, that determines whether Earth can keep the Moon.

This is exactly the same restricted three-body setup that produces Lagrange points: a small body (the Moon) in the combined field of two large bodies (Earth and the Sun) whose own orbit around each other we treat as fixed for the purpose of the calculation.

2. The Hill sphere formula

The Hill sphere (named after American astronomer George William Hill, who derived it in 1878 while studying the Moon's motion) is the region around a smaller body m — orbiting a larger body M at distance a — within which m's own gravity dominates over the tidal pull of M:

r_Hill ≈ a · (m / 3M)^(1/3) ← a = semi-major axis of m's orbit around M

Notice the cube root: because tidal forces fall off as 1/a³ (the difference of two 1/r² forces separated by a small baseline), the Hill radius scales gently with mass ratio — even a 1000× mass difference only shrinks the sphere by a factor of ten.

/** Hill sphere radius. All lengths in the same unit (e.g. AU). */
function hillRadius(a, m, M) {
  return a * Math.cbrt(m / (3 * M));
}
// Earth around the Sun: a = 1 AU, m = 3.0e-6 M_sun
hillRadius(1, 3.0e-6, 1);  // ≈ 0.0098 AU ≈ 1.47 million km
Earth's Hill radius is about 1.5 million km — roughly four times the Moon's orbital distance of 384,400 km. That comfortable margin is why the Moon's orbit is stable rather than marginal.

4. Hill radii across the Solar System

Planet a (AU) Mass / M_sun Hill radius Compare to
Mercury0.3871.66e-7≈ 220,000 km0.57× Earth radius orbit gap
Venus0.7232.45e-6≈ 1.0 million km
Earth1.0003.00e-6≈ 1.5 million km≈ 4× Moon's orbit
Mars1.5243.23e-7≈ 980,000 km≈ 42× Phobos' orbit
Jupiter5.2039.55e-4≈ 53 million km≈ 22× Callisto's orbit
Saturn9.5372.86e-4≈ 65 million km≈ 50× Titan's orbit
Neptune30.075.15e-5≈ 116 million km≈ 2.4× Triton's orbit

Jupiter's enormous Hill sphere is why it hosts dozens of stable moons and can capture passing asteroids as temporary "moons" for decades — its sphere of dominance is larger than most planets' entire orbits around the Sun.

5. The patched-conic sphere of influence

For mission-design purposes, engineers often use a simpler, slightly different formula: the sphere of influence (SOI), used in the classic patched-conic approximation for interplanetary trajectories (the method NASA used for early missions before full numerical integration became routine):

r_SOI ≈ a · (m / M)^(2/5) ← note the 2/5 exponent, not 1/3

The SOI answers a slightly different question than the Hill sphere: instead of "where does tidal stretching overwhelm local gravity," it asks "where is the ratio of perturbing acceleration to primary acceleration equal from both bodies' point of view" — a definition tuned for patching together two-body Kepler arcs rather than describing long-term orbital stability.

PropertyHill SphereSphere of Influence
Exponent1/32/5
AnswersWhere can a stable orbit exist?Where to switch gravity models?
Used forMoon stability, exoplanet moonsSpacecraft trajectory design
Earth's radius≈ 1.5 million km≈ 925,000 km
Rule of thumb: the SOI is always somewhat smaller than the Hill sphere for planets in our Solar System, but both describe the same broad phenomenon — a boundary beyond which the smaller body stops being the dominant gravitational influence.

6. Moon stability and the practical safety margin

A moon sitting exactly at the Hill radius is not stable in practice — perturbations from the moon's own eccentricity, solar radiation pressure, and other planets nudge it around. Numerical simulations of the restricted three-body problem show that stable circular orbits require staying within roughly 1/3 to 1/2 of the Hill radius:

r_stable ≈ 0.4 · r_Hill ← common empirical rule for prograde circular orbits

This safety margin explains observed moon systems: even Jupiter's farthest confirmed irregular moons orbit well inside its Hill sphere, and no natural satellite in the Solar System is found orbiting near the theoretical edge. The same margin is why mission designers place spacecraft in "halo orbits" around L1/L2 rather than sitting exactly at the equilibrium point — any orbit that approaches the true boundary of gravitational dominance becomes progressively harder to maintain without station-keeping.

🌑 Orbital Mechanics simulation

Explore gravitational slingshots and Lagrange-point dynamics interactively.

Open simulation →

🔗 Related Simulations

🌑Orbital Mechanics ☀️Solar System Binary Stars ☄️N-Body