This is to explore these ideas.

Plotting geodesics in the space with metric: ds2 = (dx2 – dt2)/t2

Coordinates are xi = <t, x> (i →). The space is of such points where t > 0.
gij =
–1/t20
01/t2
(i →; j ↓)
gij =
–t20
0t2
(i →; j ↓)
kgij =
2/t30
0–2/t3
|
00
00
(i →; j ↓; k →→)

About the (i →; j ↓; k →→) Notation

Tkji =
Tttt Tttx
Ttxt Ttxx
|
Txtt Txtx
Txxt Txxx
(i →; j ↓; k →→)

Christoffel symbols

igjk + ∂jgik – ∂kgij =
2/t30
02/t3
|
0–2/t3
–2/t30
(i →; j ↓; k →→)
gkn( ∂igjn + ∂jgin – ∂ngij ) =
–2/t0
0–2/t
|
0–2/t
–2/t0
(i →; j ↓; k →→)
Γijk = 1/2 gkn( ∂igjn + ∂jgin – ∂ngij ) =
–1/t0
0–1/t
|
0–1/t
–1/t0
(i →; j ↓; k →→)

The Geodesic Equation

If <t(λ), x(λ)> are points along a geodesic curve, where λ is the parameter then the differential equation for t and x is:
d2xk/dλ2 = –Γijk(dxi/dλ)(dxj/dλ)

d2t/dλ2 = ((dt/dλ)2 + (dx/dλ)2)/t
d2x/dλ2 = 2(dt/dλ) (dx/dλ)/t

I wish there were an easy check for these error prone calculations. Those simple equations suggest a short Java program that plots these geodesics. The look like hyperbolae with centers on the X axis. This would match the fact that with metric gij = δij/y2 geodesics are semi-circles with center on the X axis. I don't know how to prove either fact.


For
gij =
1/t20
01/t2
we get
Γijk =
–1/t0
01/t
|
0–1/t
–1/t0
(i →; j ↓; k →→)
and
d2t/dλ2 = ((dt/dλ)2 – (dx/dλ)2)/t
d2x/dλ2 = 2(dt/dλ) (dx/dλ)/t

Making the relevant change to the java program yields the familiar semi-circles. This forms a check of sorts for our calculations.