Planetary Science

Mercury Transit

Mercury crosses the face of the Sun — rare event seen as small black dot moving across solar disk

A Mercury transit occurs when Mercury passes directly between Earth and the Sun, appearing as a tiny black dot crossing the solar disk. Visible from Earth roughly 13-14 times per century. Used historically to measure the astronomical unit. Today studied for atmosphere, calibrating instruments, and confirming planet detection methods (transit method for exoplanets uses same principle).

  • Frequency13-14 transits per century
  • PatternMay or November (Earth-Mercury orbital alignment)
  • Last transitNovember 11, 2019
  • Next transitNovember 13, 2032
  • Duration5-7 hours typical
  • Apparent diameter~10 arcsec (vs Sun's 1900 arcsec — tiny)

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.

The transit phenomenon

For Earth-bound observers, Mercury transit appears as a small dark dot slowly moving across the Sun's bright disk. Mercury subtends only ~10 arcseconds; the Sun spans ~1900. The contrast is stark — black silhouette against bright photosphere.

YearDateNotes
1631November 7First observation (Gassendi)
1957May 6Used to refine orbital parameters
2003May 7Visible from much of world
2006November 8
2016May 9Visible from Americas, Europe, Africa
2019November 11Most recent
2032November 13Next predicted
2039November 7Following

Orbital mechanics

Mercury's orbit is tilted ~7° to Earth's. Transits occur only when Mercury is at one of two nodes (orbit intersection with Earth's orbital plane) AND Earth is on the right side. Result — transits only in May (descending node) or November (ascending node).

JavaScript — Mercury transit calculations

// Mercury's apparent angular motion across Sun
function mercuryAngularMotion() {
  // Mercury orbital speed at perihelion: 58.98 km/s; aphelion: 38.86; mean: ~47.4
  // Earth orbital speed: ~29.78 km/s
  // Relative speed during transit ≈ Mercury_speed - Earth_speed (in radial direction)
  // Approximate angular motion across Sun:
  const v_relative = 47.4 - 29.78;  // km/s in transit-line direction (rough)
  const distance_AU = 1 - 0.387;  // distance Mercury-Earth
  const arcsec_per_AU_per_km_per_s = 206265 / (1.496e8);
  return v_relative * arcsec_per_AU_per_km_per_s / distance_AU;
}

console.log(`Mercury angular motion: ${mercuryAngularMotion().toFixed(2)} arcsec/sec`);
// ~0.05-0.1 arcsec/sec depending on geometry

// Transit duration estimate
function transitDuration_hours(angularMotion_arcsec_per_sec, sun_diameter_arcsec = 1920) {
  return sun_diameter_arcsec / angularMotion_arcsec_per_sec / 3600;
}

console.log(`Diameter transit: ${transitDuration_hours(0.06).toFixed(1)} hours`);

// Angular size of Mercury during transit
function mercuryAngularSize() {
  const d_mercury_km = 4879;
  const distance_km = (1 - 0.387) * 1.496e8;
  return (d_mercury_km / distance_km) * 206265;  // arcsec
}

console.log(`Mercury angular: ${mercuryAngularSize().toFixed(1)} arcsec`);
// ~10-12 arcsec — tiny vs 1920 arcsec Sun

// Brightness dip if observed as exoplanet
function transitDip(planet_radius_km, star_radius_km) {
  return Math.pow(planet_radius_km / star_radius_km, 2);
}

console.log(`Mercury transit dip: ${(transitDip(2440, 696000) * 100).toExponential(2)}%`);
// ~10⁻⁵ — much too small for current exoplanet detection methods

Why this matters

  • Public engagement. Rare astronomical event accessible to amateur observers (with proper equipment).
  • Solar physics. Mercury silhouette helps calibrate solar telescopes.
  • Exoplanet science. Direct analogy of transit method.
  • Historical importance. Used for centuries to refine astronomical knowledge.
  • Mercury research. Atmosphere studies during transit (sodium absorption).
  • Test of orbital mechanics. Predictions verified to high precision.
  • Education. Demonstrates orbital geometry, alignments, transits.

Common misconceptions

  • Looking at Sun without filter. NEVER look at Sun directly. Use telescope with proper solar filter. Even with naked eye, Mercury too small to see anyway.
  • Mercury transits are rare. ~13-14 per century is more frequent than many think. Venus transits ARE rare (every ~100 years).
  • Visible from anywhere. Sun must be above horizon for the observation location during transit. Best to predict visibility for your area.
  • Mercury moves fast. Slow! Hours to cross Sun's disk. Patience required.
  • Black dot is dramatic. Small (10 arcsec) — needs telescope. With binoculars + filter, very subtle.
  • Same as eclipse. Transit is small disk crossing; eclipse is Moon blocking Sun. Eclipses are dramatic; transits are subtle.

Frequently asked questions

How does a Mercury transit happen?

Mercury, Earth, and Sun must be roughly aligned. Mercury's orbital plane is tilted ~7° from Earth's, so most "lineups" miss. Transits happen only when Mercury is at one of the two nodes (intersection points of its orbit with Earth's orbital plane). May (descending node) and November (ascending node) — those are the months when transits can occur.

How was Mercury transit used to measure AU?

Halley (1716) proposed using Mercury and Venus transits to measure parallax — observers at distant Earth locations see Mercury at slightly different positions on Sun. From the difference, calculate Mercury's distance, then via Kepler's law, the absolute size of solar system. Many expeditions in 18th-19th century. Modern measurements use radar/spacecraft telemetry instead.

How is Mercury transit different from a Venus transit?

Both involve a planet crossing the Sun. Mercury transits — small (10 arcsec), short, more frequent (~13/century). Venus transits — bigger (1 arcmin), more dramatic, but extremely rare (pairs every 100+ years). Last Venus transit: 2012; next: 2117. Mercury is more common because closer to Sun.

Can I see Mercury transit with my eye?

Generally no — Mercury subtends only 10 arcsec; eye resolution is ~60 arcsec. Need a telescope with solar filter (NEVER look directly without one). Visible as a sharp small black dot moving slowly across the Sun (~0.06 arcsec/sec). Observe for hours to see the transit unfold.

What can scientists learn from transits?

(1) Calibrate solar telescopes (sharp edge of Mercury for resolution checks). (2) Study Mercury's tenuous atmosphere (sodium tail visible). (3) Refine orbital parameters. (4) Educational/public engagement. (5) Some studies of exoplanet transit techniques use Mercury as a known-perfect test.

How long does a transit last?

5-7 hours typically. Mercury moves across the Sun at ~0.06 arcsec/sec; Sun is ~1900 arcsec across. Total transit time = solar diameter / Mercury's apparent motion ~ 5-7 hours depending on chord length (full diameter vs grazing).

Are exoplanet detections related?

Same physics! Most exoplanets discovered via transit method — they cross their parent star, dimming its light slightly. Kepler space telescope monitored 150,000 stars for transits. Mercury at our Sun causes 0.003% dim for ~6 hours every century — too rare and shallow for typical exoplanet survey. But same principle.