Special Relativity

Proper Time

The time a clock reads along its own worldline — dτ² = dt² − dx²/c²

Proper time τ is the elapsed time measured by a clock carried along its own worldline — the duration an object actually experiences between two events. It is defined by dτ² = dt² − (dx² + dy² + dz²)/c² and equals c⁻² times the invariant spacetime interval, so every inertial observer agrees on it even though they disagree about coordinate time. Proper time is maximized along the straight inertial (geodesic) path, which is precisely why the twin who leaves and returns ages less than the twin who stays home.

  • Symbolτ (tau), units of seconds
  • Differential formdτ² = dt² − dx²/c²
  • Relation to coordinate timedτ = dt/γ = dt·√(1 − v²/c²)
  • Interval linkc²dτ² = ds² (timelike)
  • Along a worldlineτ = ∫ √(1 − v²/c²) dt
  • InvarianceSame in every inertial frame (Lorentz scalar)
  • Extremal principleMaximized on the inertial / geodesic path

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.

Definition

Proper time is the reading of a clock that travels with an object. If you strap a stopwatch to a muon, a spaceship, or your own wrist, the accumulated time it displays between two events on its path is the proper time τ between those events. Everyone in every inertial frame agrees on that reading — it is a physical, local fact, not a coordinate convention.

Formally, over an infinitesimal step of the object's worldline (its curve through spacetime):

dτ² = dt² − (dx² + dy² + dz²)/c²

where t, x, y, z are coordinates in any inertial frame and c = 299,792,458 m/s is the speed of light. Symbols and units:

  • τ — proper time, seconds (s).
  • t — coordinate time in the chosen inertial frame, seconds (s).
  • x, y, z — spatial coordinates, metres (m).
  • c — speed of light, 299,792,458 m/s (exact).

Divide through by dt² and use v² = (dx² + dy² + dz²)/dt² to get the compact rate form:

dτ = dt · √(1 − v²/c²) = dt / γ,   γ = 1/√(1 − v²/c²)

Here v is the object's speed in that frame and γ ≥ 1 is the Lorentz factor. A moving clock always logs less proper time than the frame's coordinate clocks by exactly the factor γ.

Proper time and the spacetime interval

Minkowski geometry equips spacetime with an invariant interval. Using the metric signature (+, −, −, −):

ds² = c²dt² − dx² − dy² − dz²

Every inertial observer, no matter how fast they move relative to one another, computes the same numerical ds² between two events — this invariance is the defining property of Lorentz transformations, exactly as rotations preserve ordinary Euclidean distance. Comparing to the definition of proper time gives the clean relation

c²dτ² = ds²   ⇒   dτ = ds / c   (timelike separation)

So proper time is just the spacetime interval measured in units of time. The sign of ds² sorts every pair of events into three regimes:

SeparationSign of ds²Physical meaningClock reading
Timelikeds² > 0One event can causally influence the other; a massive clock can travel between themProper time dτ = ds/c > 0
Lightlike (null)ds² = 0Connected only by a light raydτ = 0 — photons log no proper time
Spacelikeds² < 0No causal link; no clock can travel between themNo proper time; proper distance dσ = √(−ds²)

Because a photon's worldline is null, it accumulates exactly zero proper time — a striking way to say that, in its own reckoning, light experiences no passage of time between emission and absorption.

Integrating along a worldline

For a finite journey you add up the infinitesimal proper times along the whole path. If the object moves with speed v(t) through an inertial frame, the total proper time between departure and arrival is the line integral

τ = ∫ dτ = ∫ √(1 − v(t)²/c²) dt   (integrated along the worldline)

The integrand is always ≤ 1, so proper time never exceeds coordinate time and equals it only for a clock at rest (v = 0). This integral is the heart of the twin paradox: two twins share the same two endpoint events but trace different worldlines, so their integrals — and their ages — differ.

In full four-vector language, if x^μ(λ) parametrizes the worldline, the four-velocity is u^μ = dx^μ/dτ and satisfies the normalization u^μu_μ = c² (with signature +−−−). Proper time is the natural, geometric parameter along any timelike worldline — the relativistic analogue of arc length.

Why the straight path is a maximum

In ordinary Euclidean geometry, a straight line is the shortest distance between two points. In spacetime the minus signs of the Minkowski metric flip the extremum: for timelike worldlines the straight, unaccelerated path accumulates the most proper time. Adding any velocity introduces the factor √(1 − v²/c²) < 1, which subtracts from the total. This is the reverse triangle inequality of Minkowski space:

τ_straight  ≥  τ_bent      (equality only if the "bend" carries no relative velocity)

Physically: the twin who never accelerates follows the proper-time-maximizing worldline; any detour through space costs elapsed time. In general relativity this becomes the geodesic principle — free-falling clocks follow worldlines that locally maximize proper time, and gravity is nothing more than the curvature of those maximal paths.

Worked example — the twin paradox

Twin A stays on Earth; Twin B flies to a star 4.0 light-years away at a constant v = 0.8c, then immediately turns around and returns at 0.8c. Compute each twin's elapsed proper time.

Twin A (stay-at-home, coordinate frame): The round trip covers 8.0 light-years at 0.8c, so the coordinate time is

t = 8.0 ly / 0.8c = 10.0 years

Twin A never moves in this frame, so their proper time equals coordinate time: τ_A = 10.0 years.

Twin B (traveler): The Lorentz factor at 0.8c is

γ = 1/√(1 − 0.8²) = 1/√(0.36) = 1/0.6 = 1.667

Because B moves at constant speed on each leg, τ_B = ∫√(1 − v²/c²) dt = t/γ:

τ_B = 10.0 years / 1.667 = 6.0 years

Twin B returns having aged 6.0 years against Twin A's 10.0 years — a real, permanent 4.0-year difference they can compare face to face. There is no paradox: the situation is not symmetric, because only B felt the acceleration at turnaround, so only B's worldline is bent. The straight worldline (A) wins the proper-time maximum.

QuantityTwin A (Earth)Twin B (traveler)
Speed relative to Earth00.8c
Lorentz factor γ11.667
Coordinate time (Earth frame)10.0 yr10.0 yr
Proper time (own clock)10.0 yr6.0 yr
Worldline shapeStraight (inertial)Bent (accelerates at turnaround)

JavaScript — computing proper time

const c = 299792458;        // m/s (exact)

// Lorentz factor
function gamma(v) { return 1 / Math.sqrt(1 - (v * v) / (c * c)); }

// Proper time for a constant-velocity leg of coordinate duration dt (seconds)
function properTimeConstant(v, dt) {
  return dt * Math.sqrt(1 - (v * v) / (c * c));  // = dt / gamma(v)
}

// Twin paradox: round trip, distance L (metres, one way) at speed v
function twinParadox(L, v) {
  const coordTime = (2 * L) / v;                 // Earth-frame time
  const properTime = coordTime / gamma(v);       // traveler's own clock
  return { coordTime, properTime, gamma: gamma(v) };
}

const ly = 9.4607e15;                            // metres in a light-year
const yr = 3.1557e7;                             // seconds in a year
const r = twinParadox(4.0 * ly, 0.8 * c);
console.log(`Earth ages ${(r.coordTime / yr).toFixed(1)} yr`);      // 10.0
console.log(`Traveler ages ${(r.properTime / yr).toFixed(1)} yr`);  //  6.0
console.log(`gamma = ${r.gamma.toFixed(3)}`);                        //  1.667

// General worldline: proper time as a numerical line integral of sqrt(1 - v^2/c^2) dt
// vFn(t) returns speed at coordinate time t; integrate from t0 to t1
function properTimeIntegral(vFn, t0, t1, steps = 100000) {
  const h = (t1 - t0) / steps;
  let tau = 0;
  for (let i = 0; i < steps; i++) {
    const t = t0 + (i + 0.5) * h;               // midpoint rule
    const v = vFn(t);
    tau += Math.sqrt(1 - (v * v) / (c * c)) * h;
  }
  return tau;
}

// A clock at rest logs proper time equal to coordinate time
console.log(properTimeIntegral(() => 0, 0, 10 * yr) / yr);         // 10.0
// A clock always at 0.8c logs 0.6x
console.log(properTimeIntegral(() => 0.8 * c, 0, 10 * yr) / yr);   //  6.0

Experimental evidence

Proper time is not a bookkeeping trick — it is measured routinely:

  • Muon decay. Cosmic-ray muons created ~15 km up have a rest-frame mean lifetime of 2.2 μs (half-life ≈ 1.52 μs) and would decay long before reaching sea level at Newtonian reckoning. Because they travel at ~0.998c, their proper time runs slow by γ ≈ 15–20, so far more survive to be detected at the ground than classical physics allows — a direct read of the muons' own clocks.
  • Hafele–Keating (1971). Cesium atomic clocks flown around the world on commercial jets returned reading different proper times than a ground reference — tens to hundreds of nanoseconds — matching the combined special- and general-relativistic prediction.
  • GPS satellites. Orbiting clocks accumulate proper time at a different rate than ground clocks (about +38 μs/day net after combining velocity and gravitational effects). Uncorrected, positioning would drift by ~10 km/day. The correction is baked into the system.
  • Particle accelerators. Unstable particles in storage rings live γ times longer in the lab frame; their extended lab-frame lifetime is exactly their (short) proper lifetime dilated by γ.

A short history

The kinematic groundwork appeared in Albert Einstein's 1905 paper "On the Electrodynamics of Moving Bodies," which introduced time dilation and the relativity of simultaneity. In 1908, Hermann Minkowski reformulated the theory geometrically, unifying space and time into a four-dimensional continuum with an invariant interval — the setting in which proper time is the natural arc length along a worldline. The word Eigenzeit ("proper time") entered the literature in this era, and by the time Einstein generalized to curved spacetime in 1915, proper time along geodesics had become the organizing principle of gravitation.

Common mistakes

  • Confusing proper time with coordinate time. Coordinate time t is a frame-dependent label; proper time τ is what a specific clock reads. They coincide only for a clock at rest in that frame.
  • Thinking proper time is minimized on the straight path. The Minkowski minus signs make the inertial worldline a proper-time maximum, not a minimum — opposite to Euclidean intuition.
  • Believing the twin paradox is symmetric. It is not. Only the traveler accelerates, so only their worldline bends; the two are not interchangeable and there is no contradiction.
  • Assigning proper time to spacelike separations. If ds² < 0 no clock can travel between the events; the relevant invariant is proper distance, not proper time.
  • Forgetting that photons log zero proper time. Null worldlines have dτ = 0; proper time cannot be used to parametrize a light ray (an affine parameter is used instead).
  • Using v²/c² with v in the wrong units. v and c must share units, or better, work in units where β = v/c is dimensionless. Mixing km/h with m/s silently corrupts γ.

Frequently asked questions

What is proper time in simple terms?

Proper time is the amount of time that actually elapses on a clock riding along with an object — the ticks of a wristwatch strapped to the moving thing. Unlike coordinate time, which depends on the reference frame you pick, proper time is the frame-independent 'lived' duration between two events on that object's worldline. Its symbol is τ (tau), and for a clock the proper time between two events is just what that clock reads at the second event minus what it read at the first.

What is the formula for proper time?

Over an infinitesimal step, dτ² = dt² − (dx² + dy² + dz²)/c², where t, x, y, z are coordinates in any inertial frame and c is the speed of light. Equivalently dτ = dt·√(1 − v²/c²) = dt/γ, where v is the object's speed in that frame and γ is the Lorentz factor. For an extended path you integrate: τ = ∫ √(1 − v²/c²) dt taken along the worldline. In terms of the spacetime interval, c²dτ² = ds² for timelike separations.

Why is proper time invariant across reference frames?

Proper time is built from the spacetime interval ds² = c²dt² − dx² − dy² − dz², which every inertial observer computes to the same value — that invariance is the defining property of Lorentz transformations. Different observers disagree about how much coordinate time dt and coordinate distance dx elapse, but the combination c²dt² − dx² is preserved, so all of them agree on dτ. Physically, they all must agree on what a single physical clock reads, since that reading is a local fact, not a coordinate choice.

How is proper time related to time dilation?

Time dilation is proper time viewed from an outside frame. A moving clock ticks off proper time dτ, but in your frame that same interval spans coordinate time dt = γ·dτ, which is larger because γ = 1/√(1 − v²/c²) ≥ 1. So the moving clock appears to run slow by the factor γ. At v = 0.866c, γ = 2, and the moving clock accumulates half the proper time your frame's coordinate clocks do.

Why does the traveling twin age less?

Both twins travel between the same two events (departure and reunion), but along different worldlines. The stay-at-home twin follows a straight inertial worldline, which maximizes proper time. The traveling twin accelerates, turns around, and returns — a bent worldline that accumulates less proper time, τ = ∫√(1 − v²/c²) dt < T. So the traveler's clock and body log fewer elapsed seconds and they return younger. The asymmetry is real and objective: only the traveler feels the acceleration at turnaround.

Why is proper time maximized on the inertial path, not minimized?

It is a quirk of the Minkowski metric's minus signs. In ordinary Euclidean space, a straight line is the shortest path. In spacetime, the interval for timelike paths carries a relative minus sign, so adding spatial 'detours' (velocity) subtracts from the accumulated proper time via the factor √(1 − v²/c²) ≤ 1. The straight, unaccelerated worldline therefore racks up the most proper time — it is a maximum, and in general relativity this is exactly the geodesic principle: free-falling clocks extremize (locally maximize) proper time.

Is proper time the same as the spacetime interval?

They are proportional. For timelike-separated events, the invariant interval ds² = c²dt² − dx² is positive, and proper time is dτ = ds/c. So proper time is just the spacetime interval expressed in units of time rather than length. For lightlike (null) paths ds = 0, so photons accumulate zero proper time. For spacelike separations ds² < 0 there is no proper time — no clock can travel between those events, and instead one speaks of proper distance dσ = √(−ds²).