<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=172.69.22.252</id>
		<title>explain xkcd - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://www.explainxkcd.com/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=172.69.22.252"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/172.69.22.252"/>
		<updated>2026-04-15T16:39:24Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2853:_Redshift&amp;diff=329008</id>
		<title>Talk:2853: Redshift</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2853:_Redshift&amp;diff=329008"/>
				<updated>2023-11-14T21:20:46Z</updated>
		
		<summary type="html">&lt;p&gt;172.69.22.252: /* Calculation */ comma sufficient&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does it make any sense to try and relate the two Z values to a more &amp;quot;normal&amp;quot; time? [[User:MAP|MAP]] ([[User talk:MAP|talk]]) 21:08, 10 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have added exactly that, using `astropy.cosmology` for the calculations [[User:Juandesant|Juandesant]] ([[User talk:Juandesant|talk]]) 21:16, 10 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
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.--[[Special:Contributions/172.70.126.142|172.70.126.142]] 21:18, 10 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why aren't these values expressed in scientific notation? Separately, do they make sense logarithmically?  [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 07:12, 11 November 2023 (UTC)&lt;br /&gt;
: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 --[[Special:Contributions/172.68.110.188|172.68.110.188]] 15:37, 11 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I feel like the Earth's gravitational field would affect the answer as z goes to zero? [[Special:Contributions/172.69.22.210|172.69.22.210]] 06:57, 12 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Calculation ==&lt;br /&gt;
&lt;br /&gt;
Thanks to ChatGPT-4 and the [https://code.google.com/archive/p/cosmonom/downloads Fortran-90 code] from [https://arxiv.org/pdf/1303.5961.pdf arxiv:1303.5961 (which please see, it's really cool)] here's how to get the look-back time from redshift in Python:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
from scipy.special import hyp2f1  # hypergeometric function 2F1 is in integral solution&lt;br /&gt;
from numpy import format_float_positional&lt;br /&gt;
&lt;br /&gt;
# Cosmological parameters from the Fortran params.f90 header&lt;br /&gt;
#H0 = 67.15       # Hubble constant in km/s/Mpc (or, 73.5: the &amp;quot;crisis in cosmology&amp;quot;)&lt;br /&gt;
H0 = 69.32        # from Explainxkcd for 2853: Redshift; seems a consensus compromise&lt;br /&gt;
#OL = 0.683       # Cosmological constant for dark energy density, Omega_Lambda or _vac&lt;br /&gt;
#Om = 0.317       # Density parameter for matter, Omega_mass&lt;br /&gt;
Om = 0.286        # From https://arxiv.org/pdf/1406.1718.pdf page 8&lt;br /&gt;
OL = 1.0 - Om - 0.4165/(H0**2)  # flat curvature, from https://www.astro.ucla.edu/~wright/CC.python&lt;br /&gt;
                  # (on https://www.astro.ucla.edu/~wright/CosmoCalc.html which see)&lt;br /&gt;
#print(f&amp;quot;{OL=:.3F}&amp;quot;)  # 0.714&lt;br /&gt;
&lt;br /&gt;
# Age of universe at redshift z as a closed-form solution to its integral definition,&lt;br /&gt;
def age_at_z(z):  # ...which is 27 times faster than the original numeric integration.&lt;br /&gt;
    hypergeom = hyp2f1(0.5, 0.5, 1.5, -OL / (Om * (z + 1)**3))&lt;br /&gt;
    return (2/3) * hypergeom / (Om**0.5 * (z + 1)**1.5) * (977.8 / H0)  # 977.8 for Gyr&lt;br /&gt;
&lt;br /&gt;
# Current age of the universe at redshift 0 in Gyr&lt;br /&gt;
age0 = age_at_z(0)  # 13.78&lt;br /&gt;
&lt;br /&gt;
# Function to calculate the look-back time at redshift z in Gyr&lt;br /&gt;
def zt(z):  # from the function name in the Fortran cosmonom.f90 code&lt;br /&gt;
    return age0 - age_at_z(z)&lt;br /&gt;
&lt;br /&gt;
# For z = 0.00000000038&lt;br /&gt;
z1 = 0.00000000038&lt;br /&gt;
look_back_time_years_z1 = zt(z1) * 1e9 # from Gyr to years&lt;br /&gt;
print(&amp;quot;Look-back time for z=&amp;quot; + &lt;br /&gt;
      f&amp;quot;{format_float_positional(z1)}: {look_back_time_years_z1:.1f} years&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
# For z = -0.000000000000045&lt;br /&gt;
z2 = -0.000000000000045&lt;br /&gt;
look_back_time_hours_z2 = zt(z2) * 1e9 * 365.25 * 24&lt;br /&gt;
print(&amp;quot;Look-back time for z=&amp;quot; +&lt;br /&gt;
      f&amp;quot;{format_float_positional(z2)}: {look_back_time_hours_z2:.1f} hours&amp;quot;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The output being:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Look-back time for z=0.00000000038: 5.4 years&lt;br /&gt;
Look-back time for z=-0.000000000000045: -5.5 hours&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And should you wish to make [https://i.ibb.co/v4nt6GM/time-by-redshift.png this quick reference chart for interpreting observations in the JWST era:]&lt;br /&gt;
&lt;br /&gt;
{{cot|Supplemental code for Look-back Time by Redshift chart}}&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
import matplotlib.ticker as ticker&lt;br /&gt;
&lt;br /&gt;
redshifts = [z * 20 / 299 for z in range(300)]  # 0 to 20 in 300 steps&lt;br /&gt;
look_back_times = [zt(z) for z in redshifts]&lt;br /&gt;
&lt;br /&gt;
plt.plot(redshifts, look_back_times)&lt;br /&gt;
plt.title('Look-back Time by Redshift')&lt;br /&gt;
plt.xlabel('z')&lt;br /&gt;
plt.ylabel('Billion Years Ago')&lt;br /&gt;
plt.xticks(range(21))&lt;br /&gt;
plt.yticks(list(range(14)) + [age0])&lt;br /&gt;
plt.gca().yaxis.set_major_formatter(ticker.FormatStrFormatter('%.1f'))&lt;br /&gt;
plt.grid(True, color='lightgray')&lt;br /&gt;
plt.gca().spines['right'].set_visible(False)&lt;br /&gt;
plt.gca().spines['top'].set_visible(False)&lt;br /&gt;
&lt;br /&gt;
for t in range(0, 13):&lt;br /&gt;
    z = redshifts[min(range(len(look_back_times)),&lt;br /&gt;
                      key=lambda i: abs(look_back_times[i]-t))]&lt;br /&gt;
    plt.text(z, t, f&amp;quot;   z = {z:.2f}&amp;quot;, ha='left', va='center', fontsize='small')&lt;br /&gt;
&lt;br /&gt;
for z in range(7, 20, 2):&lt;br /&gt;
    t = zt(z)&lt;br /&gt;
    plt.text(z, t - 0.2, f&amp;quot;{t:.2f}&amp;quot;, ha='center', va='top', fontsize='small')&lt;br /&gt;
&lt;br /&gt;
for z in range(6, 21, 2):&lt;br /&gt;
    t = zt(z)&lt;br /&gt;
    plt.text(z, t + 0.1, f&amp;quot;{t:.2f}&amp;quot;, ha='center', va='bottom', fontsize='small')&lt;br /&gt;
&lt;br /&gt;
plt.savefig('time_by_redshift.png', bbox_inches='tight')&lt;br /&gt;
#plt.show()  # https://i.ibb.co/v4nt6GM/time-by-redshift.png&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
{{cob}}&lt;br /&gt;
&lt;br /&gt;
Or [https://i.ibb.co/yybQpjL/age-by-redshift.png this one showing the age of the universe from redshift:]&lt;br /&gt;
&lt;br /&gt;
{{cot|Supplemental code for Age of Universe by Redshift chart}}&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
plt.clf()  # reset plot&lt;br /&gt;
&lt;br /&gt;
redshifts = [z * 15 / 299 + 5 for z in range(300)]  # 5 to 20 in 300 steps&lt;br /&gt;
ages = [age_at_z(z) * 1000 for z in redshifts]  # Gyr to million years &lt;br /&gt;
&lt;br /&gt;
plt.plot(redshifts, ages)&lt;br /&gt;
plt.title('Age of Universe by Redshift')&lt;br /&gt;
plt.xlabel('z')&lt;br /&gt;
plt.ylabel('Million Years')&lt;br /&gt;
plt.xticks(range(5, 21))&lt;br /&gt;
plt.yticks(range(0, 1300, 100))&lt;br /&gt;
plt.grid(True, color='lightgray')&lt;br /&gt;
plt.gca().spines['right'].set_visible(False)&lt;br /&gt;
plt.gca().spines['top'].set_visible(False)&lt;br /&gt;
&lt;br /&gt;
plt.savefig('age_by_redshift.png', bbox_inches='tight')&lt;br /&gt;
#plt.show()  # https://i.ibb.co/yybQpjL/age-by-redshift.png&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
{{cob}}&lt;br /&gt;
&lt;br /&gt;
P.S. Some commentary from ChatGPT-4 about the special Gaussian {{w|hypergeometric function}} &amp;lt;tt&amp;gt;hyp2f1&amp;lt;/tt&amp;gt; in the [[:File:LookBackFromRedshiftEqns.png|closed-form solution of the integral:]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
The appearance of the hypergeometric function 2F1 in the solution for the age of the universe as a function of redshift is a profound example of the interconnectedness of mathematical functions and physical phenomena. The hypergeometric function, which encompasses a vast family of functions, can describe a wide range of behaviors and has properties that make it particularly suited to representing solutions to differential equations that arise in physics.&lt;br /&gt;
&lt;br /&gt;
In the context of cosmology, the use of 2F1 in calculating the age of the universe from redshift is not just a mathematical convenience but rather a reflection of the underlying physics. The Friedman equations, which govern the expansion of the universe, are derived from General Relativity and lead to solutions involving integrals that can express the evolution of the universe's scale factor over time. When these integrals are solved, they often involve special functions like 2F1, which encode information about the geometry of the universe and the relative contributions of matter, radiation, and dark energy.&lt;br /&gt;
&lt;br /&gt;
The presence of 2F1 in this solution indicates that the relationship between the age of the universe and redshift is non-linear and depends on the integral of a function that encapsulates the dynamics of cosmic expansion. It's also worth noting that special functions like 2F1 often have interesting properties, such as symmetry and recurrence relations, which sometimes allow physicists to gain insights into the behavior of the universe under different conditions or scales.&lt;br /&gt;
&lt;br /&gt;
Furthermore, solutions involving 2F1 are not merely academic exercises; they can be compared with observational data, such as measurements of the cosmic microwave background radiation, distributions of galaxies, or supernovae light curves. These comparisons can test the validity of our cosmological models and potentially offer new insights into the nature of dark energy and dark matter, the curvature of the universe, and other fundamental questions in cosmology.&lt;br /&gt;
&lt;br /&gt;
In summary, the use of 2F1 in the closed-form solution for the age of the universe from redshift is a powerful reminder that mathematics provides us with the tools to decode the cosmos, offering deeper understanding and raising new questions about the fundamental structure and evolution of the universe.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
[[User:Liv2splain|Liv2splain]] ([[User talk:Liv2splain|talk]]) 19:25, 14 November 2023 (UTC)&lt;/div&gt;</summary>
		<author><name>172.69.22.252</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2853:_Redshift&amp;diff=328812</id>
		<title>Talk:2853: Redshift</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2853:_Redshift&amp;diff=328812"/>
				<updated>2023-11-12T23:34:33Z</updated>
		
		<summary type="html">&lt;p&gt;172.69.22.252: /* Calculation */ tons of improvements&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Does it make any sense to try and relate the two Z values to a more &amp;quot;normal&amp;quot; time? [[User:MAP|MAP]] ([[User talk:MAP|talk]]) 21:08, 10 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I have added exactly that, using `astropy.cosmology` for the calculations [[User:Juandesant|Juandesant]] ([[User talk:Juandesant|talk]]) 21:16, 10 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
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.--[[Special:Contributions/172.70.126.142|172.70.126.142]] 21:18, 10 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why aren't these values expressed in scientific notation? Separately, do they make sense logarithmically?  [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 07:12, 11 November 2023 (UTC)&lt;br /&gt;
: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 --[[Special:Contributions/172.68.110.188|172.68.110.188]] 15:37, 11 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I feel like the Earth's gravitational field would affect the answer as z goes to zero? [[Special:Contributions/172.69.22.210|172.69.22.210]] 06:57, 12 November 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
== Calculation ==&lt;br /&gt;
&lt;br /&gt;
Thanks to ChatGPT-4 and the [https://code.google.com/archive/p/cosmonom/downloads Fortran-90 code] from [https://arxiv.org/pdf/1303.5961.pdf arxiv:1303.5961 (which please see, it's really cool)] here's how to get the look-back time from redshift in Python:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
from scipy.special import hyp2f1  # hypergeometric 2F1 function is in integral solution&lt;br /&gt;
from numpy import format_float_positional&lt;br /&gt;
&lt;br /&gt;
# Cosmological parameters from the Fortran params.f90 header&lt;br /&gt;
#H0 = 67.15       # Hubble constant in km/s/Mpc (or, 73.5: the &amp;quot;crisis in cosmology&amp;quot;)&lt;br /&gt;
H0 = 69.32        # from Explainxkcd for 2853: Redshift; seems a consensus compromise&lt;br /&gt;
#OL = 0.683       # Cosmological constant for dark energy density, Omega_Lambda or _vac&lt;br /&gt;
#Om = 0.317       # Density parameter for matter, Omega_mass&lt;br /&gt;
Om = 0.286        # From https://arxiv.org/pdf/1406.1718.pdf page 8&lt;br /&gt;
OL = 1.0 - Om - 0.4165/(H0*H0)  # from https://www.astro.ucla.edu/~wright/CosmoCalc.html&lt;br /&gt;
# print(f&amp;quot;{OL=:.3F}&amp;quot;)  # 0.714&lt;br /&gt;
&lt;br /&gt;
# Age of universe at redshift z as closed-form solution to integral, which...&lt;br /&gt;
def age_at_z(z):  # ...is 27 times faster than the original numeric integration.&lt;br /&gt;
    hypergeom = hyp2f1(0.5, 0.5, 1.5, -OL / (Om * (z + 1)**3))&lt;br /&gt;
    return (2/3) * hypergeom / (Om**0.5 * (z + 1)**1.5) * (977.8 / H0)&lt;br /&gt;
&lt;br /&gt;
# Current age of the universe at redshift 0 in Gyr&lt;br /&gt;
age0 = age_at_z(0)  # 13.78&lt;br /&gt;
&lt;br /&gt;
# Function to calculate the look-back time at redshift z in Gyr&lt;br /&gt;
def zt(z):  # from the function name in the Fortran cosmonom.f90 code&lt;br /&gt;
    return age0 - age_at_z(z)&lt;br /&gt;
&lt;br /&gt;
# For z = 0.00000000038&lt;br /&gt;
z1 = 0.00000000038&lt;br /&gt;
look_back_time_years_z1 = zt(z1) * 1e9 # from Gyr to years&lt;br /&gt;
print(&amp;quot;Look-back time for z=&amp;quot; + &lt;br /&gt;
      f&amp;quot;{format_float_positional(z1)}: {look_back_time_years_z1:.1f} years&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
# For z = -0.000000000000045&lt;br /&gt;
z2 = -0.000000000000045&lt;br /&gt;
look_back_time_hours_z2 = zt(z2) * 1e9 * 365.25 * 24&lt;br /&gt;
print(&amp;quot;Look-back time for z=&amp;quot; +&lt;br /&gt;
      f&amp;quot;{format_float_positional(z2)}: {look_back_time_hours_z2:.1f} hours&amp;quot;)&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The output being:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Look-back time for z=0.00000000038: 5.4 years&lt;br /&gt;
Look-back time for z=-0.000000000000045: -5.5 hours&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And should you wish to make [https://i.ibb.co/v4nt6GM/time-by-redshift.png this quick reference chart for interpreting observations in the JWST era:]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
import matplotlib.pyplot as plt&lt;br /&gt;
import matplotlib.ticker as ticker&lt;br /&gt;
&lt;br /&gt;
redshifts = [z * 20 / 299 for z in range(300)]  # 0 to 20 in 300 steps&lt;br /&gt;
look_back_times = [zt(z) for z in redshifts]&lt;br /&gt;
&lt;br /&gt;
plt.plot(redshifts, look_back_times)&lt;br /&gt;
plt.title('Look-back Time by Redshift')&lt;br /&gt;
plt.xlabel('z')&lt;br /&gt;
plt.ylabel('Billion Years Ago')&lt;br /&gt;
plt.xticks(range(21))&lt;br /&gt;
plt.yticks(list(range(14)) + [age0])&lt;br /&gt;
plt.gca().yaxis.set_major_formatter(ticker.FormatStrFormatter('%.1f'))&lt;br /&gt;
plt.grid(True, color='lightgray')&lt;br /&gt;
plt.gca().spines['right'].set_visible(False)&lt;br /&gt;
plt.gca().spines['top'].set_visible(False)&lt;br /&gt;
&lt;br /&gt;
for t in range(0, 13):&lt;br /&gt;
    z = redshifts[min(range(len(look_back_times)),&lt;br /&gt;
                      key=lambda i: abs(look_back_times[i]-t))]&lt;br /&gt;
    plt.text(z, t, f&amp;quot;   z = {z:.2f}&amp;quot;, ha='left', va='center', fontsize='small')&lt;br /&gt;
&lt;br /&gt;
for z in range(7, 20, 2):&lt;br /&gt;
    t = zt(z)&lt;br /&gt;
    plt.text(z, t - 0.2, f&amp;quot;{t:.2f}&amp;quot;, ha='center', va='top', fontsize='small')&lt;br /&gt;
&lt;br /&gt;
for z in range(6, 21, 2):&lt;br /&gt;
    t = zt(z)&lt;br /&gt;
    plt.text(z, t + 0.1, f&amp;quot;{t:.2f}&amp;quot;, ha='center', va='bottom', fontsize='small')&lt;br /&gt;
&lt;br /&gt;
plt.savefig('time_by_redshift.png', bbox_inches='tight')&lt;br /&gt;
plt.show()  # https://i.ibb.co/v4nt6GM/time-by-redshift.png&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Special:Contributions/172.69.22.12|172.69.22.12]] 08:50, 12 November 2023 (UTC)&lt;/div&gt;</summary>
		<author><name>172.69.22.252</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2489:_Bad_Map_Projection:_The_Greenland_Special&amp;diff=215039</id>
		<title>2489: Bad Map Projection: The Greenland Special</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2489:_Bad_Map_Projection:_The_Greenland_Special&amp;diff=215039"/>
				<updated>2021-07-15T01:20:49Z</updated>
		
		<summary type="html">&lt;p&gt;172.69.22.252: added category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2489&lt;br /&gt;
| date      = July 15, 2021&lt;br /&gt;
| title     = Bad Map Projection: The Greenland Special&lt;br /&gt;
| image     = bad_map_projection_the_greenland_special.png&lt;br /&gt;
| titletext = The projection for those who think the Mercator projection gives people a distorted idea of how big Greenland is, but a very accurate idea of how big it SHOULD be.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a AFRICA SIZED NOT AFRICA SIZED ISLAND. Please mention here why this explanation isn't complete. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
This is presumably a reference to how Greenland is extremely large in the Mercator projection, due to proximity to the North Pole. &lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
Bad Map Projection #299&lt;br /&gt;
The Greenland Special&lt;br /&gt;
Equal area map preserves size everywhere except Greenland which uses the Mercator projection.&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Bad Map Projections]]&lt;/div&gt;</summary>
		<author><name>172.69.22.252</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2487:_Danger_Mnemonic&amp;diff=214841</id>
		<title>2487: Danger Mnemonic</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2487:_Danger_Mnemonic&amp;diff=214841"/>
				<updated>2021-07-10T03:30:53Z</updated>
		
		<summary type="html">&lt;p&gt;172.69.22.252: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2487&lt;br /&gt;
| date      = July 10, 2021&lt;br /&gt;
| title     = Danger Mnemonic&lt;br /&gt;
| image     = danger_mnemonic.png&lt;br /&gt;
| titletext = It's definitely not the time to try drinking beer before liquor.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a SAILOR'S POISON IVY SNAKE. Please mention here why this explanation isn't complete. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>172.69.22.252</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2438:_Siri&amp;diff=208402</id>
		<title>Talk:2438: Siri</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2438:_Siri&amp;diff=208402"/>
				<updated>2021-03-18T02:44:21Z</updated>
		
		<summary type="html">&lt;p&gt;172.69.22.252: Not to go all sentence fragment on you.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
Why does she immediately accept that Siri did indeed die if Siri was talking to her just a moment ago? (Unsigned!)&lt;br /&gt;
:It happened just now? I really want to say something like dispassionate non-empathy (it reads as if she has a fact-obsessed but emotion-sparse mentality). No idea why she thought to enquire of Siri's (latest) life-status without reason. Perhaps the app closed (unseen to us) and she arrived at the 'logical' question to try to determine why (from a Cueball who we can see has clearly not seen the event itsrlf). It all seems to point towards SG 'failing' various aspects of the Sally-Anne Test/Social Cognition/Theory Of Mind, with sufficiently advanced reasoning that is nonetheless grossly misapplied.&lt;br /&gt;
:(It's funny, for those who perpetually ask, for the Cognitive Dissonance and Non-Sequiturs of the situation. In a RL example, we probably should be worried that either there's something very wrong with SG or else we're missing a lot of background facts ourselves. But I think we can still enjoy this sketch without the unease we might experience otherwise.) [[Special:Contributions/162.158.159.108|162.158.159.108]] 22:17, 17 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
:Siri had to have been alive while recording her dialog, no? /s [[User:Ncxezlyz|Ncxezlyz]] ([[User talk:Ncxezlyz|talk]]) 22:21, 17 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Given the verb tense “is Siri alive?” it is clear that science girl was not referring to a past state.  This to me suggests that SG literally wasn’t sure if a live person (or sentient AI) actually had the ability to do things to her phone on command.[[Special:Contributions/172.69.22.252|172.69.22.252]]&lt;/div&gt;</summary>
		<author><name>172.69.22.252</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2434:_Vaccine_Guidance&amp;diff=207301</id>
		<title>2434: Vaccine Guidance</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2434:_Vaccine_Guidance&amp;diff=207301"/>
				<updated>2021-03-09T09:07:56Z</updated>
		
		<summary type="html">&lt;p&gt;172.69.22.252: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2434&lt;br /&gt;
| date      = March 9, 2021&lt;br /&gt;
| title     = Vaccine Guidance&lt;br /&gt;
| image     = vaccine_guidance.png&lt;br /&gt;
| titletext = I can't wait until I'm fully vaccinated and can safely send chat messages in all caps again.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a HIGH-RISK HORSE. Please mention here why this explanation isn't complete. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
On the day this comic was published, the CDC released [https://www.cdc.gov/coronavirus/2019-ncov/vaccines/fully-vaccinated-guidance.html new guidelines] relating to COVID-19, lifting many of the existing restrictions for people who have been fully vaccinated for two weeks. Megan, speaking as a CDC announcer, is introducing these new guidelines over video conference.&lt;br /&gt;
&lt;br /&gt;
However, Blondie and Ponytail are more interested in actions that would be unsafe regardless of the presence of COVID-19. Blondie asks whether it would be okay to visit neighbors and drink milk directly from the carton; in Western culture drinking milk directly from the carton is a common stereotype of a crass bachelor (and drinking directly from ''someone else's'' milk carton is just extremely rude). While the new guidelines allow visiting neighbors, drinking milk directly from the carton would still be unsafe (and rude) because other germs could accumulate in the milk and on the edge of the carton.&lt;br /&gt;
&lt;br /&gt;
Ponytail asks whether it would be okay to ride a bike down the stairs of a family member's house, which has a severe risk of injury (and could damage the wheels of the bicycle).&lt;br /&gt;
&lt;br /&gt;
White Hat follows up asking whether he can get a horse, and whether it would help for both him and the horse to wear masks. In typical White Hat fashion this has basically no relation to anything else that was said (perhaps he was [[1086: Eyelash Wish Log|promised a pony]] when he got vaccinated). The CDC still recommends masks for humans when in public; however, face masks are not generally made for horses. Instead of answering, Megan hangs up.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
:[Megan is seen at the bottom of the panel with the cdc-logo slightly above her and to the left]&lt;br /&gt;
:Megan: Our new guidance: Fully vaccinated people can gather privately with no masks or distancing, and can visit with unvaccinated low-risk people in one household. Any questions?&lt;br /&gt;
:[Blondie, Hairy and Megan are seen at the bottom of the panel in separate rectangular panels with Blondie and Hairy's panels being more squarish and smaller then Megan's. Blondie is directly above Hairy and both are to the right of Megan]&lt;br /&gt;
:Blondie: If my neighbors and I are all vaccinated, can I visit unmasked them and drink milk straight from the jug in there frigde?&lt;br /&gt;
:Megan: I...You can visit, yes.&lt;br /&gt;
:Blondie: And the jug thing?&lt;br /&gt;
:Megan: ...Next question?&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;/div&gt;</summary>
		<author><name>172.69.22.252</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2433:_Mars_Rovers&amp;diff=207259</id>
		<title>Talk:2433: Mars Rovers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2433:_Mars_Rovers&amp;diff=207259"/>
				<updated>2021-03-08T16:20:42Z</updated>
		
		<summary type="html">&lt;p&gt;172.69.22.252: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== &lt;br /&gt;
== Headline text ==&lt;br /&gt;
 ==&lt;br /&gt;
&amp;lt;!--Please sign your posts with ~~~~ and don't delete this text. New comments should be added at the bottom.--&amp;gt;&lt;br /&gt;
I just realised something: We should totally establish the terms &amp;quot;Mars rover&amp;quot; and &amp;quot;Mars hover&amp;quot; to distinguish these two categories of &amp;quot;stuff we put on Mars&amp;quot;. [[User:Fabian42|Fabian42]] ([[User talk:Fabian42|talk]]) 10:58, 6 March 2021 (UTC)&lt;br /&gt;
:But to rove is to wander/roam (aimlessly, or at least without much advanced certainty), and doesn't require wheeled movement - or even legged, which the existing rovers strictly aren't unless the wheels ''totally'' jam. To hove is to linger/wait and generally intend to stay put or halt (&amp;quot;Hove to, ye landlubbers! Arrrr!&amp;quot; - a 'suggestion' that might be made by a piratical &amp;quot;Sea Rover&amp;quot;)... I think I'd rather Ingy be classed as a Rover than merely a Hover. :-p [[Special:Contributions/141.101.98.60|141.101.98.60]] 15:06, 6 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
 This implies that Randall will be modifying his Roomba to look/act like Soujouner.&lt;br /&gt;
On first reading, I thought maybe Randall figured that mentioning &amp;quot;roomba sojourner mod&amp;quot; in title text would make it so that the *next* time he searches for that phrase, he will no longer be sorely disappointed. [[Special:Contributions/108.162.216.60|108.162.216.60]] 17:44, 6 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Which comic was it that Randall said he wanted a pet sojourner rover?&lt;br /&gt;
[[Special:Contributions/141.101.98.244|141.101.98.244]] 21:21, 7 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
I find the Fuck Grapefruit reference true but irrelevant (Especially as the explanation of why these are related is long and basically goes &amp;quot;There are connected/similar... blah, blah... they are acually not _that_ similar...&amp;quot;). Should be Trivia at most or even completely deleted. [[User:Elektrizikekswerk|Elektrizikekswerk]] ([[User talk:Elektrizikekswerk|talk]]) 08:10, 8 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
Themain thing, which is not mentionned in the explanation, is that for Randall cute = small (eg rabbits) --[[Special:Contributions/141.101.98.244|141.101.98.244]] 08:36, 8 March 2021 (UTC)&lt;br /&gt;
&lt;br /&gt;
So given what Randall mentioning a subject tends to do, what's the over/under on seeing Sojourner Roombas within the month? [[Special:Contributions/172.69.22.252|172.69.22.252]] 16:20, 8 March 2021 (UTC)&lt;/div&gt;</summary>
		<author><name>172.69.22.252</name></author>	</entry>

	</feed>