Clock Paradox and Accelerated Motion in Special Relativity

by Vladimir L. Kalashnikov

[email protected]

 

 

Abstract: The pedagogical analysis of the accelerated motion and clock paradox in framework of the special relativity is presented. Following for A. A. Logunov's statements we caution against an incorrect and too broad interpretation of the equivalence principle for accelerated motion.

Usually, the sense of the theory of special relativity is reduced to the description of the uniform motion and corresponding Lorentzian transformations. The pure geometrical interpretation of theory is attributed to the general relativity with its assumption concerning general coordinates transformations. This is not correct opinion. Both theories are the theories of a space-time and admit the arbitrary permissible coordinate transformations. In a sense, the "general relativity" is not good name for the theory whose main meaning is the interpretation of the gravitation as a curvature of the space-time. The difference between considered theories concerns the space-time structure: the flat pseudo-Euclidian (topologically simple) manifold of special relativity and the curved Riemannian (topologically nontrivial) manifold of general relativity. The gravitation is the curvature and, as result of its tensor nature, we can not "turn off" it in some finite region by means of any coordinate transformations. Therefore the equivalence principle has only local and heuristic meaning: the observer always can distinguish the gravitation from the acceleration. It should be emphasized, that the acceleration is not allied to curvature of space-time and, as result, it can be described in framework of special relativity.

Here we will consider a simple example of the uniformly accelerated motion. Suggested references are J. L. Synge, Relativity: the general theory, Amsterdam (1960) , L.D. Landau, E.M. Lifshitz, The classical theory of fields, Pergamon Press, Oxford (1962) . Our consideration is ruled by A. A. Logunov's statements ( Lectures on relativity and gravitation: modern analysis of problem, Moscow, Nauka (1987) (in Russian)).

> restart:
with(tensor):
with(difforms):

Let us start with the relativistic low of motion:

> Diff(v/sqrt(1-v^2/c^2),t) = w;

Diff(v/(sqrt(1-v^2/(c^2))),t) = w

Here v and w are the velocity and acceleration relatively rest observer, respectively. The solution of this equation taking into account the initial velocity v0 is

> e1 := int(lhs(%),t) = int(rhs(%),t) + v0;

e1 := v/(sqrt(1-v^2/(c^2))) = w*t+v0

The elementary transformations result in

> e2 := simplify( (lhs(e1)/c)^2 + 1 ) = (rhs(e1)/c)^2 + 1;

e2 := -c^2/(-c^2+v^2) = (w*t+v0)^2/(c^2)+1

Hence we have for the moving co-ordinates:

> Diff(x(t),t) = rhs(e1)/sqrt(rhs(e2));

Diff(x(t),t) = (w*t+v0)/(sqrt((w*t+v0)^2/(c^2)+1))

In the vector form:

> eq := diff(r(t),t) = (w*t+v0)/sqrt(1+(w_s^2*t^2+2*w_v0*t+v0_s^2)/c^2);#this is vector form of the previous expression, w_v0 is the scalar product of vectors w and v0, w_s and v_s are their lengths

eq := diff(r(t),t) = (w*t+v0)/(sqrt(1+(w_s^2*t^2+2*...

By solving we can obtain the following expression:

> dsolve(%,r(t));#result

r(t) = w*c^2*sqrt((c^2+w_s^2*t^2+2*w_v0*t+v0_s^2)/(...
r(t) = w*c^2*sqrt((c^2+w_s^2*t^2+2*w_v0*t+v0_s^2)/(...

or r(t) = w c^2/(abs(w)^2) [ sqrt(1+(w*t+v0)^2/(c^2)) - 1] + c/abs(w) ( v0 - w ( v0 w )/ abs(w)^2 ) ln(abs(w)*t/c+v0*w/(c*abs(w))+sqrt(1+(w*t+v0)^2/(c^... + _C , where abs(w) is the length of vector w , _C is the constant of integration.

One can find the expression for proper time of moving observer:

> d(tau) = d(t)*sqrt(1-v^2/c^2); #this is definition of proper time
# or
d(tau) = d(t)*1/sqrt(rhs(e2));

d(tau) = d(t)*sqrt(1-v^2/(c^2))

d(tau) = d(t)/(sqrt((w*t+v0)^2/(c^2)+1))

In the vector form the right-hand side of this expression can be rewritten as

> 1/(sqrt((w_s^2*t^2+2*w_v0+v0_s^2)/(c^2)+1));

1/(sqrt((w_s^2*t^2+2*w_v0+v0_s^2)/(c^2)+1))

Then the proper time is

> tau = int(%,t) + _C;

tau = ln(w_s^2*t/(c^2*sqrt(w_s^2/(c^2)))+sqrt(w_s^2...

or t = c/abs(w) ln(abs(w)*t/c+sqrt(1+(w*t+v0)^2/(c^2))) + _C .

Now we can write the expressions of transition from inertial coordinates ( T , X , Y , Z ) to uniformly accelerated ones ( t , x , y , z ). Let's the accelerated system moves along X -axis, the directions of axes are equal, v0 = 0 and X = x = Y = y = Z = z = 0 at t = 0.

> defform(f=0,c=const,w=const,X=0,T=0,x=0,t=0):
X - c^2*(sqrt(1+w^2*T^2/c^2)-1)/w;# low of motion of point of origin of accelerated coordinates
d(x) = d( % );# motion with r=x, x0=0, v0=0, and t=T (time of rest system)

X-c^2*(sqrt(1+w^2*T^2/(c^2))-1)/w

d(x) = d(X)-w*T*d(T)/(sqrt((c^2+w^2*T^2)/(c^2)))

> subs({T=t,d(T)=d(t)},%);# transition to time t

d(x) = d(X)-w*t*d(t)/(sqrt((c^2+w^2*t^2)/(c^2)))

> s1 := solve(%,d(X));# space differential in rest (inertial) system through accelerated coordinates

s1 := (d(x)*sqrt((c^2+w^2*t^2)/(c^2))+w*t*d(t))/(sq...

Hence we have the expression for the interval describing space-time properties of accelerated coordinates. If in the inertial system d(s)2=d(T)2-d(X)2-d(Y)2 -d(Z)2, then a new interval is:

> expand(s1^2):
d(s)^2 = c^2*d(t)^2 - % - d(y)^2 - d(z)^2:
collect(%,{d(x),d(x)^2,d(t)^2,d(y)^2,d(z)^2});# result

d(s)^2 = (-c^2/(c^2+w^2*t^2)-w^2*t^2/(c^2+w^2*t^2))...

or d(s)2 = c^2*d(t)^2/(1+w^2*t^2/(c^2))-2*w*t*d(x)*d(t)/sqrt(1.... This metric is not form-invariant to the initial (inertial) Galilean metric that results in the difference between physical processes in the accelerated and inertial coordinates. The metric tensor in our case is:

> coord := [t, x, y, z]:# accelerated coordinates
g_compts := array(symmetric,sparse,1..4,1..4):# metric components
g_compts[1,1] := 1/(1+w^2*t^2/(c^2)):# component of interval attached to d(t)^2
g_compts[1,2] := -w*t/c/sqrt(1+w^2*t^2/(c^2)):# component of interval attached to d(x)*d(t)
g_compts[2,2] := -1:# component of interval attached to d(x)^2
g_compts[3,3] := -1:# component of interval attached to d(y)^2
g_compts[4,4] := -1:# component of interval attached to d(z)^2

g1 := create([-1,-1], eval(g_compts));# covariant metric tensor
g1_inv := invert( g1, 'detg' ):# contravariant metric tensor

g1 := TABLE([compts = matrix([[1/(1+w^2*t^2/(c^2)),...

The nonzero Christoffel symbols Gj,k i for this metric is

> D1g := d1metric( g1, coord ):
Cf1_1 := Christoffel1 ( D1g ):
Cf2_1 := Christoffel2( g1_inv, Cf1_1 ):
displayGR(Christoffel2,%);

`The Christoffel Symbols of the Second Kind`

`non-zero components :`

` {2,11}` = w/(c*((c^2+w^2*t^2)/(c^2))^(3/2))

It should be noted, that the correct dimensional expression is G0,01 = w/(c^2*(1+w^2*t^2/(c^2))^(3/2)) because of diff(g[i,j],x[0]) inserts 1/c as x0 = ct . We can see the geometrical sense of the relativity of the acceleration: the acceleration connects with the Christoffel symbols ( d*u^i/(d*s) = c*Gamma[0,0]^i/g[0,0] = w^i/(c*sqrt(1-v^2/(c^2))) , i =1,2,3, ui is the spatial part of 4-velocity), but the Christoffel symbols obey the inhomogeneous transformational low and, as result, the acceleration is relative, i. e. it can be "turned off" by coordinate transformation. It should be noted, that our system does not concern any gravitational processes because of the space-time is obviously flat:

> D2g := d2metric( D1g, coord ):
RMN := Riemann( g1_inv, D2g, Cf1_1 ):
displayGR(Riemann,%);

`The Riemann Tensor`

`non-zero components :`

None

`character : [-1, -1, -1, -1]`

This demands to restrict the meaning of the equivalence principle to the heuristic device (see first part in our Introduction to relativistic astrophysics and cosmology through Maple).

Now let 's choose as the time coordinate the proper time of accelerated system and make some transformations:

> # we choose the time of accelerated system:
c*ln(w*T/c+sqrt(1+w^2*T^2/c^2))/w = c*arcsinh(w*T/c)/w;# identity
t = c*arcsinh(w*T/c)/w;

c*ln(w*T/c+sqrt(1+w^2*T^2/(c^2)))/w = c*arcsinh(w*T...

t = c*arcsinh(w*T/c)/w

> sinh(w*t/c) = sinh( arcsinh(w*T/c) );# sinh of previous expression
d( lhs(%) ) = d( rhs(%) );
s2 := solve(%%,T);# this is T
s3 := solve(%%,d(T));# this is d(T)

sinh(w*t/c) = w*T/c

cosh(w*t/c)*w*d(t)/c = w*d(T)/c

s2 := sinh(w*t/c)*c/w

s3 := cosh(w*t/c)*d(t)

> # expression of d(X) through accelerated coordinates
X-c^2*(sqrt(1+w^2*T^2/(c^2))-1)/w;# low of motion of point of origin of accelerated coordinates
d(x) = d( subs(T=s2,%) );
s4 := solve(%,d(X));# this is d(X)

X-c^2*(sqrt(1+w^2*T^2/(c^2))-1)/w

d(x) = d(X)-c*sinh(w*t/c)*cosh(w*t/c)*d(t)/(sqrt(1+...

s4 := (d(x)*sqrt(1+sinh(w*t/c)^2)+c*sinh(w*t/c)*cos...

Thus the interval in the accelerated coordinates is:

> d(s)^2 = c^2*s3^2 - s4^2 - d(y)^2 - d(z)^2:
simplify(%,trig,radical):
collect(%,{d(t)^2,d(x)^2,d(x),d(y)^2,d(z)^2});# result

d(s)^2 = c^2*d(t)^2-d(x)^2-2*d(x)*csgn(cosh(w*t/c))...

or d(s)2 = c^2*d(t)^2-2*c*sinh(w*t/c)*d(x)*d(t)-d(x)^2-d(y)^2-... :

> coord := [t, x, y, z]:# accelerated coordinates
g_compts := array(symmetric,sparse,1..4,1..4):# metric components
g_compts[1,1] := 1:# component of interval attached to d(t)^2
g_compts[1,2] := -sinh(w*t/c):# component of interval attached to d(x)*d(t)
g_compts[2,2] := -1:# component of interval attached to d(x)^2
g_compts[3,3] := -1:# component of interval attached to d(y)^2
g_compts[4,4] := -1:# component of interval attached to d(z)^2

g2 := create([-1,-1], eval(g_compts));# covariant metric tensor
g2_inv := invert( g2, 'detg' ):# contravariant metric tensor

g2 := TABLE([compts = matrix([[1, -sinh(w*t/c), 0, ...

The Christoffel symbols are

> D1g := d1metric( g2, coord ):
Cf1_2 := Christoffel1 ( D1g ):
Cf2_2 := Christoffel2( g2_inv, Cf1_2 ):
displayGR(Christoffel2,%);

`The Christoffel Symbols of the Second Kind`

`non-zero components :`

` {1,11}` = sinh(w*t/c)*cosh(w*t/c)*w/((1+sinh(w*t/...

` {2,11}` = cosh(w*t/c)*w/((1+sinh(w*t/c)^2)*c)

in obviously flat space-time:

> D2g := d2metric( D1g, coord ):
RMN := Riemann( g2_inv, D2g, Cf1_2 ):
displayGR(Riemann,%);

`The Riemann Tensor`

`non-zero components :`

None

`character : [-1, -1, -1, -1]`

The obtained expressions are sufficient for the consideration of the so-called "clock paradox". As it is know, this paradox concerns the difference between clock reading of rest ( T ) and moving ( t ) observers due to the moving induced time slowing-down in special relativity: T = t/sqrt(1-v^2/(c^2)) . But the inertial motion is relative and we can not decide whose clock "lags". Such decision will result from the comparison of clocks after the return home of "traveler". But such return breaks the inertial character of motion. There is an opinion, that the accelerations demand to use the general relativity for the description of this situation. It is not correct. Let's T1 , t1 and T2 , t2 are the durations of accelerated (acceleration and deceleration of traveler) and inertial sections of motion, respectively. The way there and back takes T = 4 T1 + 2 T2 and t = 4 t1 + 2 t2 in rest (always inertial) and moving (traveler's) coordinates, respectively. Let's consider the travel from the point of view of inertial (first) observer. From the definition of the proper time t (see above, we have to replace t and t by t and T , respectively), we have for second observer (traveler):

> # 1) acceleration
t_1 := c*ln(w*T_1/c+sqrt(1+w^2*T_1^2/(c^2)))/w;

t_1 := c*ln(w*T_1/c+sqrt(1+w^2*T_1^2/(c^2)))/w

> # 2) inertial motion
V := w*T_1/sqrt(1+w^2*T_1^2/c^2):# velocity of inertial motion
t_2 := simplify( T_2*sqrt(1-V^2/c^2) );

t_2 := T_2*sqrt(c^2/(c^2+w^2*T_1^2))

> # taking into account the reverse motion:
t_proper := 4*t_1 + 2*t_2;

t_proper := 4*c*ln(w*T_1/c+sqrt(1+w^2*T_1^2/(c^2)))...

> # the time's difference between clocks of second and first observers is
t_diff := t_proper - 4*T_1 - 2*T_2;

t_diff := 4*c*ln(w*T_1/c+sqrt(1+w^2*T_1^2/(c^2)))/w...

This is a negative value:

> plot3d(subs({c=1,T_1=10*T_2},t_diff),w=0..1,T_2=0..10,axes=boxed, title=`time difference`);

[Maple Plot]

that means the time lag of the moving clock.

Now let's consider this situation from the point of view of traveler. His clock rests in the origin of coordinates. But the first clock moves in the space-time with metric g1 by geodesic line. Then the low of motion obeys the following equations:

> geodesic_eqns( coord, s, Cf2_1 );

{diff(z(s),`$`(s,2)) = 0, diff(x(s),`$`(s,2))+w*dif...

So diff(u^x,s)+w*u^0*u^0/(c^2*((c^2+w^2*t^2)/(c^2))^(3... . Here the additional c in denominator results from x0 = ct and u is the 4-velocity. As ux = u^0/c dx/dt and d/ds = u^0/c d/dt , we have:

> diff(u(t),t) + w/(1+w^2*t^2/c^2)^(3/2) = 0;
dsolve({%,u(0)=0},u(t)):
simplify(%,radical,symbolic);# velocity of motion (in negative direction of x!)

diff(u(t),t)+w/((1+w^2*t^2/(c^2))^(3/2)) = 0

u(t) = c*w*sqrt(-(-w*t+I*c)*(w*t+I*c))*t/((-w*t+I*c...

> diff(x(t),t) = -w*t/sqrt(1+w^2*t^2/c^2);
dsolve({%,x(0)=0},x(t)):
sol := simplify(%);

diff(x(t),t) = -w*t/(sqrt(1+w^2*t^2/(c^2)))

sol := x(t) = -c^2*(sqrt((c^2+w^2*t^2)/(c^2))-1)/w

Now let's find the proper time of first (inertial) observer from the metric: dt = ds/c = dt sqrt(g[0,0]+2*g[0,1]*dx/(c*dt)-(dx/dt)^2/(c^2)) . Hence

> d(t)*sqrt(get_compts(g1)[1,1] + 2*get_compts(g1)[1,2]*diff(rhs(sol),t)/c - diff(rhs(sol),t)^2/c^2):
d(tau) = simplify(%);

d(tau) = d(t)

So t1 = t1 . The proper time of second clock, which is in rest relatively accelerated system, is dT1 = dt sqrt(g[0,0]) .

> t_1 := 't_1':
Int(sqrt(get_compts(g1)[1,1]),t=0..t_1);
value(%):
simplify(%,radical,symbolic);

Int(sqrt(1/(1+w^2*t^2/(c^2))),t = 0 .. t_1)

1/2*c*(2*ln(t_1*w+sqrt(c^2+w^2*t_1^2))-ln(c^2))/w

That is c/w ln(w*t[1]/c+sqrt(1+w^2*t[1]^2/(c^2))) . After acceleration we have the section of inertial motion with v= w*t[1]/sqrt(1+w^2*t[1]^2/(c^2)) (low of motion is x = v t ). But here we have some problem: we can not use the Lorenzian transformations because of they correspond to the Galilean (diagonal) metric and the transformation of g1 into such metric is discontinuous. Let's introduce the nondiagonal metric d(s)2 = c^2*d(t)*(1-v^2/(c^2))-2*v*d(x)*d(t)-d(x)^2-d(y)^2-... :

> coord := [t, x, y, z]:
g_compts := array(symmetric,sparse,1..4,1..4):# metric components
g_compts[1,1] := 1-v^2/c^2:# component of interval attached to d(t)^2
g_compts[1,2] := -v/c:# component of interval attached to d(x)*d(t)
g_compts[2,2] := -1:# component of interval attached to d(x)^2
g_compts[3,3] := -1:# component of interval attached to d(y)^2
g_compts[4,4] := -1:# component of interval attached to d(z)^2

g3 := create([-1,-1], eval(g_compts));# covariant metric tensor
g3_inv := invert( g3, 'detg' ):# contravariant metric tensor

g3 := TABLE([compts = matrix([[1-v^2/(c^2), -v/c, 0...

This metric is obviously inertial:

> D1g := d1metric( g3, coord ):
Cf1_3 := Christoffel1 ( D1g ):
Cf2_3 := Christoffel2( g3_inv, Cf1_3 ):
displayGR(Christoffel2,%);

`The Christoffel Symbols of the Second Kind`

`non-zero components :`

None

and continuously is transformed into g1 , when t = t1. In this metric the geodesic motion of first clock gives the low of motion:

> geodesic_eqns( coord, s, Cf2_3 );

{diff(x(s),`$`(s,2)) = 0, diff(y(s),`$`(s,2)) = 0, ...

and

> d(t)*sqrt(get_compts(g3)[1,1] + 2*get_compts(g3)[1,2]*(-v)/c - (-v)^2/c^2):# D(x)(0)=-v
d(tau) = simplify(%);

d(tau) = d(t)

So t2 =t2 . The proper time of second clock is dT2 = dt sqrt(g[0,0]) :

> t_2 := 't_2':
Int(sqrt(get_compts(g3)[1,1]),t=0..t_2);
value(%):
simplify(subs(v=w*t_1/sqrt(1+w^2*t_1^2/c^2),%),radical,symbolic);

Int(sqrt(1-v^2/(c^2)),t = 0 .. t_2)

c*t_2/(sqrt(c^2+w^2*t_1^2))

As result, the difference between second and first clocks is:

> t_diff := 4*c/w*ln(w*t_1/c+sqrt(1+w^2*t_1^2/(c^2))) + 2*t_2/(sqrt(1+w^2*t_1^2/c^2)) - 4*t_1 - 2*t_2;

t_diff := 4*c*ln(w*t_1/c+sqrt(1+w^2*t_1^2/(c^2)))/w...

This expression is equal to above obtained one. Hence the time difference is an invariant and there is no any paradox . In order to emphasize this fact, let's consider the limit t1 --> 0, w --> infinity so that v is the finite value (instant accelerations).

> v^2 = x/(1+x/c^2);# x=w^2*t_1^2
sol := solve(%,x);
4*c*ln(sqrt(sol)/c+sqrt(1+sol/(c^2)))/w+2*t_2/(sqrt(1+sol/(c^2)))-2*t_2:#time difference
simplify(%,radical,symbolic):
expand(%):
limit(%,w=infinity);

v^2 = x/(1+x/(c^2))

sol := -v^2*c^2/(-c^2+v^2)

-2*t_2*(sqrt(c^2-v^2)+c)/c

That is 2 t2( sqrt(1-v^2/(c^2)) - 1). This expression corresponds to one, which can be obtained from the special relativity in the case of inertially moving clocks. But in our case the observers are not equal and the obtained expression is the invariant!

So, we consider a pure geometrical interpretation of the acceleration as the non-zero Christoffel symbols in a flat pseudo-Euclidian space-time. This allows the description of the accelerated motion in framework of special relativity. We didn't restrict oneself to Galilean (diagonal) metric and gave the invariant description of the so-called "clock paradox".

2001�Kalashnikov

Hosted by www.Geocities.ws

1