Skip to content

Implement the ideas of special relativity in code, and explore the consequences of the Lorentz transformations.

License

Notifications You must be signed in to change notification settings

johanley/special-relativity-core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

special-relativity-core

Implement the ideas of special relativity in code, and explore the consequences of the Lorentz transformations.

Mostly kinematics.

The book Structure and Interpretation of Classical Mechanics by Sussman, Wisdom, and Mayer asserts that by implementing a physics theory in code, you gain deeper insight into the theory. I'm hoping that this is the case with this little project as well.

"The purpose of computing is insight, not numbers." - attributed to R. W. Hamming

"If you could see it then you'd understand." - from the song Speed of Sound, by Cold Play

In this project:

  • c=1
  • the metric signature is (ct,x,y,z) = (+,-,-,-)

The code is separated into two parts:

  • sr.core implements the core ideas of special relativity
  • sr.explore explores its consequences

Jargon

This project uses the following non-standard words.

I hope you don't find this too bothersome. I often use parens to make the jargon "bilingual" for the reader - for example, kinematic (Wigner) rotation.

Grid is used (in the code, not in the documentation) instead of inertial frame of reference.

Elbow-boost is used instead of a non-collinear pair of boosts.

Corner-boost is an elbow-boost with an angle of 90° between boosts (as seen in the intermediate frame).

Kinematic rotation is used instead of Wigner rotation and Thomas-Wigner rotation.

Kinematic spin is used instead of Thomas precession. This has units of radians per second, not angular momentum.

Flattening is used instead of Lorentz-Fitgerald contraction and length contraction.

Phase-gradient k is used here instead of wave vector k. This matches up with phase-velocity.

Boost here refers to a boost along any direction in space, not just along a coordinate axis.

Time-slice is used instead of the intersection of an object's history with a space-like hypersurface of constant ct.

Light-slice is used instead of the intersection of an object's history with the past light cone of a detection-event.

Doppler cone is used to refer to the right circular cone generated by a set of phase-gradients (wave vectors) ki having, in some frame, the same time component, and all possible directions. When a Doppler cone is boosted it retains its conical form, but is no longer a right circular cone; it's still referred to as a Doppler cone in that case.

Lorentz transformation here means a boost in any direction, excluding spatial rotations. (The exact definition of this term varies between authors; that's why I'm stating it here.)

Invariance here means invariance of the space-time interval. That is, it's related to the transformations of the Poincaré group. This includes boosts, spatial rotations, displacements (in time and space), and reversals (of clocks and spatial axes).

References

What I've learned so far in this project

Working with units in which c=1 is natural and desirable. You can think, for example, of light-years and years, or light-seconds and seconds. Numerically, its pleasant to work with numbers that are usually near 1. It emphasizes the physics, and you aren't distracted by large or small numbers simply because of a choice of units.

The speed β for some real objects (extreme cosmic rays) can't be represented with a Double in Java. It's too close to 1 (about 22 decimals). Only the BigDecimal class can represent such numbers. However, working with BigDecimal is more painful than working with Double, so this is left out as a special case. Another case of this: the implementation of a Map can coerce the speed of protons in the LHC to the value of 1 (I saw this in my Velocity class).

Formulas: many-formulas versus one-formula is a very interesting question. This project implements as many calculations as possible with the core Lorentz Transformation, instead of using a new formula for each phenomenon. The sole exception is kinematic spin (Thomas precession).

Advantages:

  • it directly manifests how the Lorentz Transformation generates diverse phenomena.
  • it gives you more confidence in the correctness of your code, since each new use case acts as a test of the core formula.
  • it pushes one towards seeing the beautiful unity in the physics in as direct a manner as possible.

Having a new formula for each phenomenon is both useful and desirable; but such formulas can be viewed as short-cuts for human computation. A computer program doesn't need such short-cuts. It actually benefits by avoiding them, since each new formula is a new source of potential error.

Formulas: textbooks and computer programs have opposing biases. Textbooks are biased towards the derivation of formulas for each and every phenomenon. Computer programs are biased in the opposite direction, towards using as few formulas as possible.

Computation is a teaching tool. It can be argued that computation provides an effective way of increasing one's understanding of physics, that could be used for one's first encounters with a theory.

The jargon of the subject is not strictly uniform. For example, the exact meaning of Lorentz group changes according to who's doing the talking. I prefer to refer to the Poincaré group, which includes all the transformations which leave the fundamental quadratic form invariant: boost, rotation, displacement, and reversal.

All phenomena connected with the theory are aspects of one single thing: the structure of space-time. We can take the Poincaré group and the invariance of the fundamental quadratic form as the definition of that structure.

The Rodrigues' rotation formula is a useful and compact way of rotating a 3-vector about an arbitrary axis.

The Java programming language is capable of modeling the concepts of special relativity very cleanly.

Vector formulas usually have simpler implementations than component formulas. Moving from components to vectors can simplify a formula. I found this with:

  • the axis-angle approach to rotation (Rodrigues' formula)
  • the velocity transformation
  • the Lorentz transformation.

However, I haven't retained this simplicity. What's more important to me here is to ensure correctness. The main way of doing that is to have the core of almost all phenomena implemented by the Lorentz Transformations. I have succeeded in doing so for all phenomena except for kinematic spin (Thomas precession) for circular motion. In that case, an implementation using the Lorentz Transformation requires numerical integration along the object's history. I have included an example which shows how using N boosts to approximate a circular orbit with regular-sided polygons closely approximates the formula for kinematic spin (Thomas precession).

Kinematic rotation is important. Most texts either ignore this effect altogether, or don't emphasize it. This is unfortunate. This effect is one of the basic consequences of the Lorentz Transformations.

Silberstein described the rotational aspect of elbow-boosts in 1914. Borel mentioned it (without much analysis) in 1913. Thomas and Wigner came much later.

The geometry of an object (for example, the direction in which a stick is pointing) is in general affected by both regular flattening (Lorentz-Fitzgerald contraction) and kinematic rotation. In general, when examining the geometry of an object, you need to disentangle these two effects.

Kinematic rotation can 'spin-up' an object, but conservation laws aren't violated in doing so. The effect is kinematic. No work is required to spin-up the object. The boost equations change geometry. Geometry means distances and angles. The orientation of an object is defined by angles. So boosts can change the orientation of an object (as seen in a rest frame), and the multiple, continuous boosts seen in circular motion (for example) will continuously alter the orientation of an object. No work is done on the object in the process.

Kinematic spin is a spin which has no associated angular momentum or rotational energy. This is very strange!

Characterizing the motion of a mass-particle in SR requires two additional items. In the Newtonian world, the history of a mass-particle in a given frame is described by its position vector r(t) and its derivatives, velocity v(t) and acceleration a(t).

In SR, there are 2 additional items one can attach to the history of a mass-particle with respect to a given frame:

  • a proper-time (because time is relative)
  • an orientation (because geometry is relative)

Both proper-time and orientation are defined only as differences with respect to some chosen initial condition.

Transformations almost always come in two variants, characterized by the sign of some quantity. (For example, see this article on active and passive transformations.) You need to always be aware of which case applies. It's very easy to forget this point, and to make mistakes in the sense of a transformation. It helps if the code makes this distinction hard to ignore. (An example of a transformation that only has a single variant is the parity transformation: in order to reverse it, you apply the exact same operation a second time.)

Some textbooks do a poor job of expressing the two-fold nature of transformations. Sometimes a transformation is written in a book in only one of its two possible forms, without stating its inverse. This is misleading.

Hollywood simulations of stars streaking rapidly by a relativistic spacecraft are definitely not realistic. In the ultra-relativistic case, most of the sky would appear black to the human eye. Stars would almost always appear only in the forward direction. A (very) rare exception would be a close fly-by of a bright early-type star (spectral class O, B), which would remain visible in the 'backward' direction for a long time.

If you could accelerate at 1 gee for a year, you could cross the Milky Way in about a year of proper-time.

The prototype for a 4-vector isn't an event x, it's rather the differential Δx. This is because of the displacement-of-the-origin operation: it applies to events, but to nothing else: it doesn't apply to differential 4-vectors, which aren't sensitive to the location of the origin. I had forgotten this. It's interesting how coding this led me to the same conclusion: applying a displacement-of-the-origin to a 4-velocity made no sense, and this became obvious in the computed result. The displacement operation needs special handling, because it doesn't apply to differential 4-vectors (only to events). This corresponds to the distinction made by mathematicians between affine and linear. (In the code, the displacement operation is a no-operation for all four-vectors except for events.)

This all goes back to the fact that the fundamental quadratic form is defined in terms of differences between events.

Four-vectors and three-vectors are not completely analogous. The cross product applies only to three-vectors.

The angle between vectors has a fundamentally different meaning in Minkowski space. It's defined only between pairs of 4-vectors that are either both time-like or both space-like. Angles in Euclidean geometry are defined as the ratio of an arc along the circumference of a circle, divided by the radius of the circle. Angles between 4-vectors can also be seen as ratios of lengths, but in this case these lengths come from the Minkowski metric, not the Euclidean one. (That is, Minkowski-distance along a hyperbolic arc, divided by the 'radius' of the hyperbola, the distance from the origin to the hyperbola's apex.)

Light is simpler than matter. The physics of plane monochromatic waves is simpler than the physics of mass-particles. Their speed is always the same. They don't have properties that apply only to mass-particles: acceleration, proper-time, and orientation (related to kinematic rotation). The effects of aberration and the Doppler effect are simpler to understand than the effects attached to matter (the distortions of geometry and time). It can be argued that aberration and the Doppler effect should be investigated first when one begins to explore the consequences of the Lorentz Transformation.

Time dilation and length contraction are two sides of the same coin. The traveler measures flattening along the line of motion (and no time dilation on the spacecraft). The stay-at-home measures time dilation on the spacecraft (but no flattening-of-the-world along the line of its motion).

The spatial geometry of an object is defined by a time-slice in the given frame (not a light-slice). Spatial geometry consists of two things: distances and angles. To measure the length of a stick (in a given frame), you need a time-slice, a surface with ct=constant, (in that frame). To measure the direction in which a stick is pointing (in a given frame), you also need a time-slice (in that frame).

Change-of-angles is just as significant as change-of-dimensions. The term length contraction is a misleading one. The effect changes more than length: it changes geometry, and geometry consists of angles and lengths. A better word is flattening. Length contraction emphasizes a special case: when a stick is parallel to the line of the boost. Only that special case has geometrical changes characterized solely as a change of length. In every other case, the stick will change both its length and its direction.

A history intersects in dramatically different ways with a time-slice versus a light-slice. The intersection of a time-slice surface (with ct=constant) with an object's history defines the spatial geometry of an object, relative to a frame. The intersection of the past light cone of a detector with an object's history (a light-slice) defines the optical appearance of the object at the detector.

For a receding stick travelling parallel to its longest dimension, the light-slice length is always shorter than the time-slice length when it's receding from the detector. At ultra-relativistic recession speeds, the light-slice length approaches 0.5 times the time-slice length.

For an approaching stick, the light-slice length is always longer than the time-slice length. Indeed, the light-slice length shows an expansion over the rest-length.

Matrices are useful for expressing the Lorentz Transformation. With rearrangement of the covariant/contravariant indices, some standard expressions based on index gymnastics can be brought into a form which maps exactly to matrix multiplication. Example: the transformation of the electromagnetic field tensor.

Aberration and the Doppler effect are two aspects of one phenomenon. Both come directly from the Lorentz Transformation of the phase-gradient (wave vector) ki.

The change in phase related to any wave phenomenon is an invariant scalar because it describes a fact in the world. Picture an electric clock having hands. You plug it in, it runs for while, and then you unplug it. Take the phase as describing the angular position of the minute hand. The total change in the phase, between the plug-it-in event and the unplug-it event, is an objective fact. It doesn't depend on the coordinate frame in any way. Every frame must agree on the size of the change in the phase. Since different zero-points can be defined for the phase, it's not true that phase itself is an invariant. These remarks apply to any wave phenomenon, not just to plane waves of light of a single frequency traveling in a vacuum.

It's a misconception that the product kixi of the phase-gradient (wave vector) ki with the coordinates xi is Poincaré-invariant. This is related to the fact that Δxi is the true 4-vector, not xi. The product kixi changes during displacement of the origin of coordinates. The dot product kiΔxi does not change during displacement of the origin of coordinates.

After a boost, a plane wave (of any speed and nature) remains a plane wave. "The concept of a plane wave is invariant under the Lorentz transformation: a plane wave remains a plane wave in all coordinate systems." - Principles of Electrodynamics, Matveyev. This is no surprise, but it's worth remembering.

There's a generalized form for the phase-gradient (wave vector) k which also allows for waves whose speed is less than c. With this expression (see formula (18)), you can model, for example light waves in media, or sound waves.

For phase-velocity of c, the phase-gradient 4-vector is null.

For phase-velocity less than c, the phase-gradient 4-vector is space-like, because its time component is smaller. In addition, after a boost from the frame in which the medium is at rest, the (3D) phase-gradient k is not generally parallel with the phase-velocity u.

There are insidious and annoying differences in jargon between the cultures of math and physics. The two cultures often speak two different languages. You may or may not be aware of the changes in meaning when you move between these cultures.

The word interval should be preferred to distance. Space-time is non-Euclidean. Using distance to refer to arcs or line segments in a space-time diagram is dangerous. It's a false friend that can very easily lead your thinking astray, by pushing you back to Euclidean ideas. For example, if an arc or line segment is parallel to an axis, the interval formula acts much like the Euclidean formula, because the signs of the terms are all the same. But if an arc or line segment is not parallel to an axis, the signs of the terms in the interval formula are no longer the same, and Euclidean thinking is entirely out of place.

Riemannian geometry has a role to play in special relativity. The four-velocity has a fixed magnitude. When c=1, four-velocity is a unit vector, and it's "confined" to the future-directed branch of the unit hyperboloid. The unit hyperboloid is a model of hyperbolic geometry. Three four-velocities on the unit hyperboloid form a triangle. Solving this hyperbolic triangle equates to relativistic velocity addition, and also to finding the kinematic (Wigner) rotation.

The kinematic (Wigner) rotation equals the area "swept out" by the four-velocity on the unit hyperboloid. The center of the sweep is the apex (1,0,0,0). In the case of an elbow-boost involving three frames K, K', and K'', it's the area of a triangle on the unit hyperboloid, formed using the intermediate frame K' as base. In the case of circular motion, it's the area of a circle on the unit hyperboloid.

Characterizing the kinematic (Wigner) rotation as a negative number works only in certain coordinate systems, in which the velocities involved define the XY plane, and the axis of rotation is understood to be the +Z-axis. Otherwise, it needs to be treated as any other rotation.

About

Implement the ideas of special relativity in code, and explore the consequences of the Lorentz transformations.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published