Mass–Energy · The two-ledger derivation

Opposite pulses and two energy ledgers.

If a body at rest emits two equal pulses of light in opposite directions, what do the energy accounting books of two different inertial observers force you to conclude about the body's energy of motion?

An executable model

Two ledgers and opposite pulses

Static worked example

CurrentThese numbers match the current settings.

Model note
  • Primary output lightComplexEnergyMoving: Host calculation (massEnergy.movingBalanceLight). Owner massEnergy.movingBalanceLight.
  • Primary output emittedEnergyRestFrame: Host calculation (massEnergy.restBalanceLight). Owner massEnergy.restBalanceLight.
  • Primary output bodyEnergyRestBefore: Host calculation (massEnergy.restBodyBefore). Owner massEnergy.restBodyBefore.
  • Primary output bodyEnergyRestAfter: Host calculation (massEnergy.restBodyAfter). Owner massEnergy.restBodyAfter.
  • Primary output bodyEnergyMovingBefore: Host calculation (massEnergy.movingBodyBefore). Owner massEnergy.movingBodyBefore.
  • Primary output bodyEnergyMovingAfter: Host calculation (massEnergy.movingBodyAfter). Owner massEnergy.movingBodyAfter.
  • Primary output kineticEnergyDifference: Host calculation (massEnergy.kineticEnergyDifference). Owner massEnergy.kineticEnergyDifference.
  • Primary output additiveEnergyConstant: Host calculation (massEnergy.additiveEnergyConstant). Owner massEnergy.additiveEnergyConstant.
  • Accepted input revision 1.
  • Snapshot version 1.
  • Not modeled: recoil from asymmetric emission; finite pulse duration and shape; the emission mechanism; radiation pressure on the body during emission; gravity; the quantum nature of light; the body's absolute rest energy (kept symbolic).

Predict before the numbers

If the body emits the two opposite pulses at an angle φ = 60° rather than along the direction of motion (φ = 0°), what happens to the total energy of the two light pulses measured by the moving observer?

Three relations the model could have

The result appears when you choose, say you have one in mind, or skip.

Try
Experiment settings emitted energy, the premise, how internal energy is written, notation, a link to these settings
The additive constant C
Internal energies written as
Notation

Worked example: a body emits 1 L of light in its rest frame; seen from a frame moving at 0.6c the two pulses carry 1.25 L together, and the body's kinetic energy falls by 0.25 L.

Seen from a frame moving at v = 0.6c

The body sends out two equal pulses in opposite directions, at φ = 0° to the direction of motion.

v = 0.6cbodypulse 1: 0.25 Lpulse 2: 1 L

The two energy accounts

In the body's rest frame (K₀)
Light sent out: L/2 + L/2 = 1.0000 L
E₀ − E₁ = L
In the moving frame (k, speed v)
Light sent out: 1.25 L (= 1/√(1 − v²/V²)·L)
H₀ − H₁ = 1/√(1 − v²/V²)·L

Subtracting one account from the other

(H₀ − E₀) − (H₁ − E₁) = L(1/√(1 − v²/V²) − 1)

Drop in energy of motion: 0.25 L

The body's internal energies at rest cancel.

Show the reference code & kernel bindings

Reference evaluator: src/physics/reference/massEnergy.ts

// evaluatePulseEnergies
const g = 1 / Math.sqrt(1 - frameSpeed * frameSpeed);
const p1 = (emittedEnergyRestFrame / 2) * g * (1 - frameSpeed * Math.cos(phi));
const p2 = (emittedEnergyRestFrame / 2) * g * (1 + frameSpeed * Math.cos(phi));
const pulseSumMoving = g * emittedEnergyRestFrame; // invariant under phi!

// evaluateSubtraction
const subtractionDifference = emittedEnergyRestFrame * (g - 1);
const kineticEnergyDifference = premise === "unchanged" ? subtractionDifference : null;

Not modeled in this ideal reference calculation:

recoil from asymmetric emission · finite pulse duration and shape · the emission mechanism · radiation pressure on the body during emission · gravity · the quantum nature of light · the body's absolute rest energy (kept symbolic)

Two equal flashes of light leave a body at rest in opposite directions. Seen by someone moving past, the flashes carry more energy than they do for the body, and the extra can only come from the body's energy of motion, which falls as if the body had lost mass.

The mass–energy paper imports one result from §8 of the relativity paper: light of energy l, seen from a frame moving at v along x, has energy l* = l(1 − (v/V) cos φ)/√(1 − (v/V)²), where φ is the angle between the light's direction and the x-axis. A body at rest in (x, y, z) sends out light of energy L/2 at the angle φ and an equal amount the opposite way, and stays at rest. The energy principle must hold in both frames: in the rest frame E₀ − E₁ = L, and in the moving one H₀ − H₁ = γL, writing γ for 1/√(1 − (v/V)²), because the two direction factors, 1 − (v/V) cos φ and 1 + (v/V) cos φ, add to 2. The body's energies E and H stay symbolic, and the lab never gives them values. Subtracting the two balances removes them: (H₀ − E₀) − (H₁ − E₁) = L{1/√(1 − (v/V)²) − 1}. Each H − E is the body's kinetic energy K in the moving frame plus a constant C, and C does not change during the emission, so K₀ − K₁ = L{1/√(1 − (v/V)²) − 1}. At the lab's default, L = 1 J and v = 0.6c, the moving observer counts 1.25 J of light, and the body's kinetic energy falls by 0.25 J whatever the angle. Drop the premise that C is unchanged and the difference is underdetermined, and the lab says so. To lowest order the drop is (L/V²)(v²/2), the kinetic energy of a mass L/V², and the paper concludes that a body giving off energy L as radiation loses mass L/V².

Open the derivation

The imported light-energy transformation

Einstein imports a result proven in §8 of his third 1905 paper (Special Relativity). When light of energy l is emitted in the stationary system at an angle φ to the direction of relative motion, an observer moving past at speed v measures its energy l* as:

l∗=l1−vVcos⁡φ1−(vV)2l^* = l \frac{1 - \frac{v}{V}\cos\varphi}{\sqrt{1 - \left(\frac{v}{V}\right)^2}}

In modern notation with β = v/c and the Lorentz factor γ = 1/√(1 − β²):

l∗=l γ (1−βcos⁡φ)l^* = l\,\gamma\,(1 - \beta\cos\varphi)

The two accounting sheets: rest frame and moving frame

Let the body at rest have initial internal energy E₀. It emits two equal light pulses of energy L/2 in opposite directions (φ and φ + 180°). Conservation of energy in the stationary frame requires:

E0=E1+12L+12L=E1+L  ⟹  E0−E1=L\begin{gathered}E_0 = E_1 + \frac{1}{2}L + \frac{1}{2}L = E_1 + L \\ \implies E_0 - E_1 = L\end{gathered}

Now consider the same physical event as measured by an observer moving at speed v. The initial energy of the body in this frame is H₀. The two pulses have energies:

Pulse 1=12L γ (1−βcos⁡φ),Pulse 2=12L γ (1+βcos⁡φ)\begin{gathered}\text{Pulse 1} = \frac{1}{2}L\,\gamma\,(1 - \beta\cos\varphi), \\ \text{Pulse 2} = \frac{1}{2}L\,\gamma\,(1 + \beta\cos\varphi)\end{gathered}

When the two pulse energies are added together, the angle terms −β cos φ and +β cos φ cancel identically:

Total moving light=12L γ (1−βcos⁡φ)+12L γ (1+βcos⁡φ)=γL\begin{aligned}&\text{Total moving light} \\ &\quad = \frac{1}{2}L\,\gamma\,(1 - \beta\cos\varphi) \\ &\qquad + \frac{1}{2}L\,\gamma\,(1 + \beta\cos\varphi) \\ &\quad = \gamma L\end{aligned}

Energy conservation in the moving frame therefore gives:

H0=H1+γL  ⟹  H0−H1=γL\begin{gathered}H_0 = H_1 + \gamma L \\ \implies H_0 - H_1 = \gamma L\end{gathered}

The subtraction: removing the unknown internal energies

Neither E₀ nor H₀ is known. But subtracting the stationary-system balance from the moving-system balance completely eliminates the body's unknown internal rest energy:

(H0−E0)−(H1−E1)=γL−L=L (γ−1)\begin{aligned}&(H_0 - E_0) - (H_1 - E_1) \\ &\qquad = \gamma L - L \\ &\qquad = L\,(\gamma - 1)\end{aligned}

Identifying the kinetic energy drop

The difference between a body's energy in a moving system and its energy in the rest system differs from its kinetic energy K only by an additive constant C:

H−E=K+CH - E = K + C

Under Einstein's source premise that the constant C does not alter upon the emission of light (C = C'), substituting this relation yields:

(K0+C)−(K1+C)=K0−K1=L (γ−1)\begin{aligned}(K_0 + C) - (K_1 + C) &= K_0 - K_1 \\ &= L\,(\gamma - 1)\end{aligned}

The body's energy of motion drops by L(γ − 1) while its speed remains unchanged.

Embed this laboratory on another page. It starts from its worked defaults, not your current settings.