The Coriolis Effect: Deflection in the Northern and Southern Hemispheres
Satellite loops of hurricanes always show the same thing: counter-clockwise spin above the equator, clockwise below it. This isn't a coincidence or an artifact of the imaging — it's the direct, measurable consequence of the Earth's rotation acting on moving air.
1. A force that only exists because you're spinning
The Coriolis effect is not a real force in the Newtonian sense — it is a fictitious (inertial) force that appears only because we insist on describing motion from the point of view of a rotating platform: the Earth. An observer floating outside the Earth in an inertial frame sees air moving in perfectly straight lines, obeying Newton's first law exactly. It's only when we, standing on the spinning ground, try to describe that same straight-line motion using our rotating coordinate grid that the path appears to curve.
The same trick shows up on any rotating platform. Sit at the edge of a spinning merry-go-round and try to throw a ball to someone standing at the center — from the ball's point of view it travels in a straight line, but from your rotating point of view it appears to swerve sideways.
2. Deriving the deflection
Formally, the acceleration measured in the rotating frame differs from the acceleration measured in the inertial frame by exactly the Coriolis and centrifugal terms:
Ω is the Earth's rotation vector, pointing out of the North Pole, and v is the velocity of the air parcel as measured on the rotating Earth. The cross product means the deflection is always perpendicular to the direction of motion — it changes an object's direction, never its speed. In the Northern Hemisphere this rotates moving air to the right; in the Southern Hemisphere, to the left.
George Hadley described the deflection of trade winds in 1735, but it was French engineer Gaspard-Gustave de Coriolis who, in 1835, gave the general mathematical treatment for any body moving on a rotating reference frame — originally in the context of rotating machinery, not the atmosphere.
3. The Coriolis parameter and latitude
Only the component of Earth's rotation vector perpendicular to the ground — i.e. the local vertical — matters for horizontal deflection. That gives the Coriolis parameter:
Ω = 7.292 × 10⁻⁵ rad/s , φ = latitude
f is maximal at the poles (φ = 90°) and exactly zero at the equator (φ = 0°). This is why tropical cyclones essentially never form within about 5° of the equator — there simply isn't enough Coriolis deflection to organize convection into a rotating vortex; converging air just rushes straight to the low-pressure center and cancels itself out instead of spinning.
4. Why hemispheres rotate oppositely
Consider air converging toward a low-pressure center (a cyclone) in the Northern Hemisphere. As it flows inward, the Coriolis force continuously deflects it to the right of its motion. Air approaching from the south gets pushed east; air approaching from the east gets pushed north; and so on around the circle — the net effect is a counter-clockwise (cyclonic) rotation when viewed from above.
In the Southern Hemisphere, f is negative (sin φ < 0), so the same inward-flowing air is deflected to the left at every point, producing a clockwise rotation instead. High-pressure systems (anticyclones) rotate the opposite way in each hemisphere — clockwise in the North, counter-clockwise in the South — because the outward flow is deflected in the same physical direction but away from, rather than toward, the center.
Result: wind flows parallel to isobars, low pressure to the left of the flow (N. Hemisphere)
5. The Rossby number: when Coriolis matters
The Rossby number Ro compares inertial (advective) acceleration to Coriolis acceleration and tells you whether rotation is dynamically important for a given flow:
where U is a characteristic velocity and L a characteristic length scale. For a hurricane (U ≈ 30 m/s, L ≈ 500 km, f ≈ 5×10⁻⁵ s⁻¹ at 20°N), Ro ≈ 1 — Coriolis is essential. For a draining bathtub (U ≈ 0.1 m/s, L ≈ 0.1 m), Ro is on the order of 10⁶ — Coriolis is utterly negligible compared to the initial swirl imparted by the plug, plumbing geometry and residual currents from filling the tub.
6. Common myths (bathtubs and toilets)
The oft-repeated claim that toilets and bathtubs drain in opposite directions in each hemisphere is a myth for exactly the reason above: Ro is far too large at that scale for the Coriolis force to overcome pre-existing rotation from the basin shape or the way water was poured in. Careful laboratory experiments with perfectly still, symmetric, room-temperature water in large circular tanks can demonstrate the effect after 20+ minutes of settling — but your bathroom sink is nowhere close to that controlled.
7. Pseudocode: deflection in a simulation
function applyCoriolis(particle, latitudeDeg, dt):
const OMEGA = 7.292e-5 // rad/s
const phi = latitudeDeg * Math.PI / 180
const f = 2 * OMEGA * Math.sin(phi)
// a = -2 * Omega x v → in 2D (x=east, y=north):
const ax = f * particle.vy
const ay = -f * particle.vx
particle.vx += ax * dt
particle.vy += ay * dt
particle.x += particle.vx * dt
particle.y += particle.vy * dt
Note the sign of f flips automatically between hemispheres because Math.sin(phi)
is negative south of the equator — the same formula produces opposite rotation with no special
casing needed.
🌪️ Explore a rotating vortex
The Tornado simulation shows a tight vortex of particles — a useful mental model for the much larger-scale rotation Coriolis induces in cyclones, minus the hemisphere dependence since a tornado's scale is far too small for Ro to matter.
Open simulation →