Hi everyone!
The foregoing discussion about the metric tensor of a perfect fluid in its rest frame has helped me very much in solving the problem from which my doubt arose: the deduction of the Friedmann equations from the Einstein field equations, keeping track of the “c” term.
If someone is interested in this topic, here is the solution I elaborated.
The starting point is the fully contravariant energy-stress tensor of a perfect fluid in a Local Inertial Frame:
(1) T_Hij = diag[ ρ * c^2, p, p, p ]
where Hij means “High ij indexes”, ρ is the mass density, p is the pressure of the fluid.
In the LIF the metric tensor is:
(2) g_Hij = g_Lij = diag[ +1, -1, -1, -1 ]
and the contravariant 4-velocity tensor is:
(3) u_Hi = d/dτ [ c*t, x, y, z ] = γ [ c, dx/dt, dy/dt, dz/dt ],
where τ is the proper time and γ the relativistic contraction factor.
Thus, if the fluid and the LIF are at rest:
(4) u_Hi = [ c, 0, 0, 0 ]
If we leave the LIF and enter a generic frame, the energy-stress tensor becomes:
(6) T_Hij = (ρ – p/c^2)*(u_H0)^2 + p*g_Hij
Please note that eq.6 becomes eq.1 if u_Hi is as in eq.4 and g_Hij as in eq.2 .
Now, if the new reference frame is the Friedmann Walker Robertson one
the fully covariant metric tensor is:
(7) g_Lij = diag[ + c^2, - a^2/(1- k * x^2), - (a^2 * x^2), - (a^2 * x^2 * sinθ^2) ]
the fully contravariant metric tensor is:
(8) g_Hij = diag[ +1/c^2, - (1- k * x^2)/a^2, - 1/(a^2 * x^2), - 1/(a^2 * x^2 * sinθ^2) ]
and the contravariant 4-velocity tensor is:
(9) u_Hi = d/dτ [ t, x, θ, φ] = γ [ 1, dx/dt, dθ/dt, dφ/dt ]
Thus, if the fluid and the FWR frame are at rest:
(10) u_Hi = [ 1, 0, 0, 0 ]
In the FRW frame, from eq.6, by eq.10 and eq.8, the fully contravariant energy-stress tensor is:
(11) T_Hij = diag[ + ρ, + p*(1- k * x^2)/a^2, + p/(a^2 * x^2), + p/(a^2 * x^2 * sinθ^2)]
The trick to remove the distorting effect of the metric on the fully contravariant energy-stress tensor as in eq.11 is to consider its Mixed indexes tensor. Since:
(12) T_Mij = T_Hik * g_Lkj
from eq.12, eq.11 and eq.7 we obtain:
(13) T_Mij = diag[ + ρ*c^2, - p, - p , -p ]
Therefore the Einstein field equations to be solved (keeping track of the “c” term) are:
(14) G_Mij = (8 π G/ c^4)*T_Mij
The mixed Einstein tensor G_Mij in eq.14 may be computed using the open source wxMaxima algebra system app by, for instance, the following (.wmx) program:
kill(all)$
dim: 4$
array(g,dim,dim)$
g[1,1]: c^2$
g[1,2]: 0$
g[1,3]: 0$
g[1,4]: 0$
g[2,1]: 0$
g[2,2]: -(a(t)^2)/(1-k*x^2)$
g[2,3]: 0$
g[2,4]: 0$
g[3,1]: 0$
g[3,2]: 0$
g[3,3]: -(a(t)*x)^2$
g[3,4]: 0$
g[4,1]: 0$
g[4,2]: 0$
g[4,3]: 0$
g[4,4]: -(a(t)*x*sin(theta))^2$
gg: genmatrix(g,dim,dim)$
kill(ctensor)$
load(ctensor)$
lg: gg$
cmetric(false) $
ct_coords: [t,x,theta,phi]$
christof(false)$
ricci(false)$
R: scurvature()$
einstein(true);
The output is:
(15) G_M00 = 3*k / a^2 + 3*(da/dt)^2 / a^2
and
(16) G_M11 = k / a^2 + (da/dt)^2 / (c^2 * a^2) + 2 (d^2 a / dt^2) / (c^2 * a)
From eq.15, eq.14 and eq.13, we obtain the equations:
(17) 3*k / a^2 + 3*(da/dt)^2/ a^2 = (8 π G/ c^4)* ρ*c^2
and
(18) k / a^2 + (da/dt)^2 / (c^2 * a^2) + 2 (d^2 a / dt^2) / (c^2 * a) = - (8 π G/ c^4)* p
which are the basis for the deduction of the Friedmann equations by keeping track of the “c” term.