- #71
JDoolin
Gold Member
- 723
- 9
Chalnoth said:There is no physical definition for any particular coordinates in General Relativity. These are not physical entities, just labels we place on the system.
However, in this case the primed coordinates are the Minkowski coordinates, with the unprimed coordinates being the Milne coordinates. The Milne coordinates can be thought of as the inside of a light cone in Minkowski space-time. There is a plot here that shows the shape:
http://world.std.com/~mmcirvin/milne.html#time
In any case, coordinates are not physical things, and are merely chosen for their convenience for a particular problem. The Milne coordinates are exactly equivalent to the Minkowski coordinates.
If you have Mathematica, you can paste this into it. Otherwise, treat it as pseudocode.
e0 = Table[{r, 0}, {r, -10, 10}];
e1 = Table[{r, 1}, {r, -10, 10}];
comovingWorldLines = Transpose[{e0, e1}];
ListLinePlot[comovingWorldLines]
e0 = Table[{0 Sinh[r], 0 Cosh[r]}, {r, -1.5, 1.5, .1}];
e1 = Table[{1 Sinh[r], 1 Cosh[r]}, {r, -1.5, 1.5, .1}];
milneWorldLines = Transpose[{e0, e1}];
ListLinePlot[milneWorldLines]
What "the metric" is doing is converting a homogeneous group of comoving particles into a set of particles which are separated by an equipartition of rapidity. (i.e. they start together at a point, and are flying away from each other.)
These two things are in no way the same. Milne's model is flying apart. The standard model is standing still. There's no way to claim they're both the same. In Milne's model, the particles were all at the same point at t=0. In the Standard Model, all the particles were at different points at t=0.
This is analogous to a mercator projection of the earth. On the Mercator Projection, the north and south poles occupy the same space as the equator. In real life, the north and south poles are points. And there is no confusion about which form is real.
Last edited by a moderator: