Skip to main content

Special Theory of Relativity

A revolutionary framework reconciling classical mechanics with electromagnetism by postulating the constancy of the speed of light and the equivalence of inertial reference frames.

Special Theory of Relativity

The Special Theory of Relativity, published in 1905 in the paper Zur Elektrodynamik bewegter Körper (“On the Electrodynamics of Moving Bodies”), was constructed on two deceptively simple postulates: first, that the laws of physics are the same in all inertial reference frames; and second, that the speed of light in a vacuum is the same for all observers, regardless of the motion of the light source. These postulates together forced a radical revision of our understanding of space and time, dissolving the Newtonian notion of absolute simultaneity and replacing it with a four-dimensional spacetime continuum.

Among the most celebrated consequences of this framework is the mass–energy equivalence, encapsulated in the equation E = mc². This relation reveals that mass and energy are different manifestations of the same underlying quantity, separated only by the enormous conversion factor c². The practical and philosophical implications proved vast — from the physics of nuclear reactions to the very nature of inertia. Equally striking were the kinematic predictions: time dilation, whereby moving clocks tick more slowly, and length contraction, whereby moving objects are measured as shorter along the direction of motion.

Special relativity also resolved a long-standing tension in nineteenth-century physics between Newtonian mechanics and Maxwell’s electrodynamics. By treating the Lorentz transformation as the fundamental symmetry of spacetime rather than an ad hoc correction, the theory placed electricity and magnetism on a fully unified geometric footing. The subsequent development of relativistic mechanics, four-vector notation, and eventually relativistic quantum field theory all trace their conceptual origins to the work reported here.

Special relativity visualization
Spacetime diagram
Lorentz transformation
Visualizations of spacetime, Lorentz transformations, and relativistic phenomena that underpin the Special Theory of Relativity.

Key Equations

The cornerstone of special relativity is mass–energy equivalence:

E=mc2E = mc^2

More completely, the relativistic energy–momentum relation is:

E2=(pc)2+(m0c2)2E^2 = (pc)^2 + (m_0 c^2)^2

where pp is momentum, m0m_0 is rest mass, and cc is the speed of light.

Lorentz Transformations

For a frame SS' moving at velocity vv along the xx-axis relative to frame SS, the Lorentz transformation is:

t=γ(tvxc2),x=γ(xvt)t' = \gamma \left(t - \frac{vx}{c^2}\right), \qquad x' = \gamma(x - vt)

where the Lorentz factor γ\gamma is defined as:

γ=11β2,β=vc\gamma = \frac{1}{\sqrt{1 - \beta^2}}, \qquad \beta = \frac{v}{c}

Time Dilation

A clock moving at velocity vv ticks more slowly by a factor of γ\gamma:

Δt=γΔt0\Delta t' = \gamma \, \Delta t_0

where Δt0\Delta t_0 is the proper time (time measured in the rest frame of the clock).

Numerical Example

The following Python snippet computes γ\gamma as a function of β=v/c\beta = v/c and demonstrates time dilation for a muon traveling at 99.5% of the speed of light:

import math

def lorentz_factor(beta):
    """Compute the Lorentz factor γ = 1/sqrt(1 - β²)."""
    if abs(beta) >= 1:
        raise ValueError("β must be strictly less than 1")
    return 1 / math.sqrt(1 - beta**2)

# Muon traveling at 99.5% of c
beta = 0.995
gamma = lorentz_factor(beta)

# Muon proper lifetime ~ 2.2 μs
tau_0 = 2.2e-6  # seconds

# Observed lifetime due to time dilation
tau_observed = gamma * tau_0

print(f"β = {beta}")
print(f"γ = {gamma:.4f}")
print(f"Proper lifetime:   {tau_0 * 1e6:.1f} μs")
print(f"Observed lifetime: {tau_observed * 1e6:.1f} μs")

Output:

β = 0.995
γ = 10.0125
Proper lifetime:   2.2 μs
Observed lifetime: 22.0 μs

This factor of ~10 explains why muons produced in the upper atmosphere (≈ 15 km altitude) reach Earth’s surface despite their short intrinsic lifetime — a celebrated experimental confirmation of special relativity.

References

  1. Albert Einstein On the Electrodynamics of Moving Bodies . Annalen der Physik , 1905 .
  2. Albert Einstein Does the Inertia of a Body Depend Upon Its Energy Content? . Annalen der Physik , 1905 .