Planetary Science

Pluto and Charon

Demoted from planet, but still a fascinating binary system in the Kuiper Belt

Pluto and its largest moon Charon form a binary system — Charon is so large (~half Pluto's diameter) that they orbit a common center of gravity OUTSIDE Pluto. Pluto was demoted from "planet" to "dwarf planet" in 2006 (with Eris discovery). New Horizons (2015) revealed surprisingly complex geology — nitrogen ice glaciers, mountains of water ice, atmospheric haze. Most distant world humanity has visited.

  • Pluto diameter2,376 km (smaller than Moon)
  • Charon diameter1,212 km (~half Pluto)
  • Distance from Sun39.5 AU average; 30-50 AU range (eccentric)
  • Year length247.94 Earth years
  • Surface temperature-230°C (43 K)
  • New Horizons visitJuly 14, 2015

Interactive visualization

Press play, or step through manually. The visualization is yours to drive — try it before reading on.

Open visualization fullscreen ↗

Watch the 60-second explainer

A condensed visual walkthrough — narrated, captioned, under a minute.

Pluto's features

FeatureDescription
Sputnik PlanitiaLarge ice plain (size of Texas); nitrogen ice glaciers
Tombaugh RegioHeart-shaped feature; Sputnik Planitia is left lobe
Cthulhu MaculaDark, cratered region (older terrain)
Norgay Mons / Hillary MonsMountain ranges of water ice; up to 3.5 km tall
Wright Mons / Piccard MonsPossible cryovolcanoes (ice volcanoes)
Bladed terrainMethane ice ridges
Atmospheric hazesMultiple layers of methane chemistry products

JavaScript — Pluto-Charon

// Pluto orbital eccentricity is high
const a_PLUTO = 39.48;  // AU
const e_PLUTO = 0.249;
const peri_pluto = a_PLUTO * (1 - e_PLUTO);
const aph_pluto = a_PLUTO * (1 + e_PLUTO);
console.log(`Pluto: ${peri_pluto.toFixed(2)} AU peri, ${aph_pluto.toFixed(2)} AU aph`);
// 29.66 to 49.31 AU — overlaps Neptune's orbit at perihelion

// Solar flux at Pluto
console.log(`Flux at peri: ${(1361 / Math.pow(peri_pluto, 2)).toFixed(2)} W/m²`);
console.log(`Flux at aph: ${(1361 / Math.pow(aph_pluto, 2)).toFixed(2)} W/m²`);

// Pluto-Charon barycenter
const M_PLUTO = 1.303e22;
const M_CHARON = 1.586e21;
const distance_PC = 19.591e6;  // m
const barycenter_distance = distance_PC * M_CHARON / (M_PLUTO + M_CHARON);
const R_PLUTO = 1188e3;
console.log(`Barycenter from Pluto: ${(barycenter_distance/1000).toFixed(0)} km`);
console.log(`Pluto radius: ${R_PLUTO/1000} km`);
console.log(`Outside Pluto? ${barycenter_distance > R_PLUTO}`);  // TRUE — true binary

// Year on Pluto
const T_pluto = Math.pow(a_PLUTO, 1.5);
console.log(`Pluto year: ${T_pluto.toFixed(0)} Earth years`);

// Light travel time
const ly_per_AU = 8.317;  // light minutes
console.log(`Light to Pluto: ${(a_PLUTO * 8.317 / 60).toFixed(1)} hours`);

Why Pluto-Charon matters

  • Solar system formation. Kuiper Belt — primitive material from formation era.
  • Binary planet physics. Pluto-Charon: most extreme example in solar system.
  • Cryovolcanism. Active geology on small frozen world.
  • Atmospheric science. Thin atmosphere with seasonal changes.
  • Reclassification debate. Tests definitions of "planet."
  • New Horizons legacy. Detailed images we'd never have without mission.
  • Future missions. Orbiter would reveal Pluto's interior, Charon's history.

Common misconceptions

  • Pluto is a dead frozen rock. Active geology — flowing nitrogen ice glaciers, possible cryovolcanism.
  • Pluto has no atmosphere. Thin atmosphere exists; varies seasonally.
  • Pluto is just like the Moon. Different — dwarf planet, ice-rich, complex geology.
  • Pluto's demotion was scientific consensus. Heated debate; "Plutoid" classification still informal among many.
  • Charon is a normal moon. Half Pluto's size; they're effectively binary.
  • Pluto is past Neptune always. Eccentric orbit; sometimes inside Neptune (1979-1999 was inside Neptune's orbit).

Frequently asked questions

Why was Pluto demoted?

2006 IAU definition of "planet" — must (1) orbit Sun; (2) have enough mass for hydrostatic equilibrium (round); (3) "cleared its orbit" of debris. Pluto fails #3 — shares orbit with Kuiper Belt objects. Eris (2005) discovery, similar size to Pluto, forced reclassification. Now: "dwarf planet" with Eris, Haumea, Makemake, Ceres.

What's special about Pluto-Charon?

Charon is so massive relative to Pluto (1:8 ratio) that they orbit a common center of gravity OUTSIDE Pluto's surface. Earth-Moon barycenter is INSIDE Earth (1:80 mass ratio). Pluto-Charon is essentially binary system. Both are tidally locked — same face always toward each other.

What did New Horizons find?

Surprising complexity for a small frozen world. Sputnik Planitia — vast plain of nitrogen ice, glaciers flowing. Mountains of water ice (only material strong enough at -230°C). Atmosphere with multiple haze layers. Possible cryovolcanism. Smooth and old/cratered terrains adjacent. Pluto remains geologically active despite small size.

How is Pluto's atmosphere?

Thin (1-3 Pa, ~10⁻⁵ Earth) — but exists. N₂, CH₄, CO. Pressure varies with orbit — sublimating from surface as Pluto approaches Sun. Currently shrinking as Pluto recedes. Will essentially freeze out by 2030s.

What about the other moons?

Pluto has 5 moons. Charon (largest), and four smaller — Styx, Nix, Kerberos, Hydra. Smaller moons orbit chaotically — gravitational dance with Pluto-Charon binary. Some tumble irregularly. Discovered post-2005.

Will we go back to Pluto?

New Horizons was a flyby — provided ~95% of our Pluto data in just hours. No orbiter mission planned. Proposals exist (Persephone, Pluto Orbiter and Lander) but cost prohibitive. We've seen Pluto for the first time in 2015; complete characterization may wait decades.

Where else is similar?

Eris (slightly smaller mass; bigger volume — debate). Other large Kuiper Belt objects — Haumea, Makemake, Sedna. Similar formation (icy bodies in outer solar system). The dwarf planets are the new hot topic in solar system astronomy.