Talk:2853: Redshift

Explain xkcd: It's 'cause you're dumb.
Revision as of 09:32, 12 November 2023 by 162.158.166.205 (talk) (Calculation: slightly neater)
Jump to: navigation, search


Does it make any sense to try and relate the two Z values to a more "normal" time? MAP (talk) 21:08, 10 November 2023 (UTC)

I have added exactly that, using `astropy.cosmology` for the calculations Juandesant (talk) 21:16, 10 November 2023 (UTC)

There is a big error in the current explanation, saying it means they were interested in this since the early universe, but that would only be true if the z value was much closer to 1. I'm not exactly sure as I haven't done the math, but with that many decimal places of zero's it is probably near enough history to be during their lifetime. So the joke isn't being interested in the early universe since the early universe, but rather so interested in it that they talk about other things with the same terminology.--172.70.126.142 21:18, 10 November 2023 (UTC)

Why aren't these values expressed in scientific notation? Separately, do they make sense logarithmically? JohnHawkinson (talk) 07:12, 11 November 2023 (UTC)

Part of the joke is that the values are unwieldy to use compared to everyday language and units. The scientific notation would have lessened this. However they are given in a universal standard time instead of some solar system or human related units, so they generally should be clearly preferred. Sebastian --172.68.110.188 15:37, 11 November 2023 (UTC)

I feel like the Earth's gravitational field would affect the answer as z goes to zero? 172.69.22.210 06:57, 12 November 2023 (UTC)

Calculation

Thanks to ChatGPT-4 and the Fortran-90 code from arxiv:1303.5961, here's how to get the look-back time from redshift in Python:

from scipy.integrate import quad
from numpy import format_float_positional

# Cosmological parameters from the Fortran params.f90 header
H0 = 67.15       # Hubble constant in km/s/Mpc
OL = 0.683       # Density parameter for dark energy
Om = 0.317       # Density parameter for matter

# Define the integrand function
def agef(z, OL, Om):
    return 1 / ((1 + z) * ((OL + Om * (1 + z)**3)**0.5))

# Function to calculate the age of the universe at redshift z in Gyr
def age_z(z, H0, OL, Om):
    integral, _ = quad(agef, z, 1000, args=(OL, Om))
    return integral * 977.8 / H0

# Current age of the universe at redshift 0 in Gyr
age0 = age_z(0, H0, OL, Om)

# Function to calculate the look-back time at redshift z in Gyr
def zt(z, H0, OL, Om, age0):
    return age0 - age_z(z, H0, OL, Om)

# For z = 0.00000000038
z1 = 0.00000000038
look_back_time_years_z1 = zt(z1, H0, OL, Om, age0) * 1e9 # from Gyr to years
print("Look-back time for z =", 
      f"{format_float_positional(z1)}: {look_back_time_years_z1:.1f} years")

# For z = -0.000000000000045
z2 = -0.000000000000045
look_back_time_hours_z2 = zt(z2, H0, OL, Om, age0) * 1e9 * 365.25 * 24
print("Look-back time for z =",
      f"{format_float_positional(z2)}: {look_back_time_hours_z2:.1f} hours")

The output being:

Look-back time for z = 0.00000000038: 5.5 years
Look-back time for z = -0.000000000000045: -5.7 hours

172.69.22.12 08:50, 12 November 2023 (UTC)