<?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=162.158.166.205</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=162.158.166.205"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/162.158.166.205"/>
		<updated>2026-06-27T23:23:34Z</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=328759</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=328759"/>
				<updated>2023-11-12T09:32:11Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.166.205: /* Calculation */ slightly neater&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/abs/1303.5961 arxiv:1303.5961], 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.integrate import quad&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&lt;br /&gt;
OL = 0.683       # Density parameter for dark energy&lt;br /&gt;
Om = 0.317       # Density parameter for matter&lt;br /&gt;
&lt;br /&gt;
# Define the integrand function&lt;br /&gt;
def agef(z, OL, Om):&lt;br /&gt;
    return 1 / ((1 + z) * ((OL + Om * (1 + z)**3)**0.5))&lt;br /&gt;
&lt;br /&gt;
# Function to calculate the age of the universe at redshift z in Gyr&lt;br /&gt;
def age_z(z, H0, OL, Om):&lt;br /&gt;
    integral, _ = quad(agef, z, 1000, args=(OL, Om))&lt;br /&gt;
    return integral * 977.8 / H0&lt;br /&gt;
&lt;br /&gt;
# Current age of the universe at redshift 0 in Gyr&lt;br /&gt;
age0 = age_z(0, H0, OL, Om)&lt;br /&gt;
&lt;br /&gt;
# Function to calculate the look-back time at redshift z in Gyr&lt;br /&gt;
def zt(z, H0, OL, Om, age0):&lt;br /&gt;
    return age0 - age_z(z, H0, OL, Om)&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, H0, OL, Om, age0) * 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, H0, OL, Om, age0) * 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.5 years&lt;br /&gt;
Look-back time for z = -0.000000000000045: -5.7 hours&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/tt&amp;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>162.158.166.205</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2835:_Factorial_Numbers&amp;diff=325836</id>
		<title>2835: Factorial Numbers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2835:_Factorial_Numbers&amp;diff=325836"/>
				<updated>2023-10-14T02:52:43Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.166.205: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2835&lt;br /&gt;
| date      = September 29, 2023&lt;br /&gt;
| title     = Factorial Numbers&lt;br /&gt;
| image     = factorial_numbers_2x.png&lt;br /&gt;
| imagesize = 628x481px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = So what do we do when we get to base 10? Do we use A, B, C, etc? No: Numbers larger than about 3.6 million are simply illegal.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a VARIABLE-BASED BOT BEING ESCORTED OUT OF THE COMPUTER SCIENCE DEPARTMENT BY SECURITY - There is no explanation of the comic. There is a complex dive into the mathematics with no simplified explanation created to help understand the comic or its joke. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
This comic is based on the {{w|factorial number system}}, which is a way of writing integers or real numbers using {{w|factorial|factorials}} instead of powers. &lt;br /&gt;
&lt;br /&gt;
[[Cueball]] proposes this number system with his key point being that small value numbers are described only with the small value digits (1, 2, or 3) and saving the larger digits (8 and 9) for larger value numbers. His proposed solution is a complicated number system that some (probably including at least one person able to summon security personnel) might consider unnecessarily clunky to be actually useful.&amp;lt;!-- This is not to say that it will *not* have any practical use, of course! Leaving that as an exercise for future editors to ponder. ;) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A factorial is a product of positive integers. For instance, four factorial, written '4!', means 4×3×2×1 = 24. These can be used to write numbers in a strange way.&lt;br /&gt;
&lt;br /&gt;
Normally, numbers are represented in a positional system with a constant base, especially base ten. This means that each digit in a number has a place value based on its position, and that value is a power of ten. For instance, the number 137 usually means 1×10&amp;lt;sup&amp;gt;2&amp;lt;/sup&amp;gt; + 3×10&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; + 7×10&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;, i.e. one hundred, three tens, and seven units. We say that the 1 is in the hundreds place, the 3 in the tens place, and the 7 in the ones place (or units). The same number could be written in base sixteen as 89, meaning 8×16&amp;lt;sup&amp;gt;1&amp;lt;/sup&amp;gt; + 9×16&amp;lt;sup&amp;gt;0&amp;lt;/sup&amp;gt;, i.e. eight sixteens and nine units. The 8 is in the sixteens place, and the 9 is in the ones place. &lt;br /&gt;
&lt;br /&gt;
In a &amp;quot;factorial base,&amp;quot; instead of each place value being an escalating power of some constant base, each place value is an escalating factorial. The amount to multiply each place value by to get the next place value increases by 1 each time. So that same number (137 in base 10) could be written 10221, meaning 1×5! + 0×4! + 2×3! + 2×2! + 1×1!. We could say there is a 1 in the 120s place, a 0 in the 24s place, a 2 in the 6s place, another 2 in the 2s place, and a 1 in the ones place.&lt;br /&gt;
&lt;br /&gt;
True factorial numbers also include a 0s place, representing the 0 factorial of 0! Continuing our example of 137 in base 10, the values 1×5! + 0×4! + 2×3! + 2×2! + 1×1! + 0x0! would write out to 102210, but [[Randall]]'s version truncates this rightmost 0 factorial since it is always a value of 0.&lt;br /&gt;
&lt;br /&gt;
In normal base-n notation, n digits are used, running from 0 to n–1. For instance, in base ten, we use the ten digits {0,...,9}. In base sixteen, we need sixteen digits, so we use {0,...,9,A,...,F}. Any of these digits can be used in any position. But in factorial base, each position needs an increasing number of different digits to express all n-digit numbers. The comic labels each position with the equivalent base that would allow the same digits, e.g. the place value 3! is &amp;quot;base 4&amp;quot; because it uses the digits 0 to 3. &lt;br /&gt;
&lt;br /&gt;
For instance, with just two digits, we can express some numbers with the digits 0, 1, and 2, like 21 = five. But we can't express 30 = six. As a result, Randall jokes that since we only have ten digits {0,...,9}, we can only express numbers with up to nine digits, making larger numbers &amp;quot;illegal.&amp;quot; Randall believes that would make the largest &amp;quot;legal&amp;quot; factorial base number 987654321 = 9×9!+8×8!+7×7!+6×6!+5×5!+4×4!+3×3!+2×2!+1×1!, which in base ten is 3,628,799 (which he calls &amp;quot;about 3.6 million&amp;quot;). In fact, adding one to this number gives 1000000000, which still doesn't require any digits larger than 9, but he maybe wishes to stay away from the mere possibility of representing the digit that ''ought'' to use another symbol. The first number that actually cannot be represented with our usual ten symbols {0,...,9} comes right after 9987654321, which in decimal equals 36,287,999.&lt;br /&gt;
&lt;br /&gt;
In the comic, the top example represents 3×720 + 5×120 + 3×24 + 0×6 + 1×2 + 1×1, after calculating each factorial accordingly, which gives the decimal value of 2835, [[2835|this comic's number]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For completion of the examples shown in the panel, the numbers up to 200 in this variable base are:&lt;br /&gt;
&lt;br /&gt;
1=1&lt;br /&gt;
2=10&lt;br /&gt;
3=11&lt;br /&gt;
4=20&lt;br /&gt;
5=21&lt;br /&gt;
6=100&lt;br /&gt;
7=101&lt;br /&gt;
8=110&lt;br /&gt;
9=111&lt;br /&gt;
10=120&lt;br /&gt;
11=121&lt;br /&gt;
12=200&lt;br /&gt;
13=201&lt;br /&gt;
14=210&lt;br /&gt;
15=211&lt;br /&gt;
16=220&lt;br /&gt;
17=221&lt;br /&gt;
18=300&lt;br /&gt;
19=301&lt;br /&gt;
20=310&lt;br /&gt;
21=311&lt;br /&gt;
22=320&lt;br /&gt;
23=321&lt;br /&gt;
24=1000&lt;br /&gt;
25=1001&lt;br /&gt;
26=1010&lt;br /&gt;
27=1011&lt;br /&gt;
28=1020&lt;br /&gt;
29=1021&lt;br /&gt;
30=1100&lt;br /&gt;
31=1101&lt;br /&gt;
32=1110&lt;br /&gt;
33=1111&lt;br /&gt;
34=1120&lt;br /&gt;
35=1121&lt;br /&gt;
36=1200&lt;br /&gt;
37=1201&lt;br /&gt;
38=1210&lt;br /&gt;
39=1211&lt;br /&gt;
40=1220&lt;br /&gt;
41=1221&lt;br /&gt;
42=1300&lt;br /&gt;
43=1301&lt;br /&gt;
44=1310&lt;br /&gt;
45=1311&lt;br /&gt;
46=1320&lt;br /&gt;
47=1321&lt;br /&gt;
48=2000&lt;br /&gt;
49=2001&lt;br /&gt;
50=2010&lt;br /&gt;
51=2011&lt;br /&gt;
52=2020&lt;br /&gt;
53=2021&lt;br /&gt;
54=2100&lt;br /&gt;
55=2101&lt;br /&gt;
56=2110&lt;br /&gt;
57=2111&lt;br /&gt;
58=2120&lt;br /&gt;
59=2121&lt;br /&gt;
60=2200&lt;br /&gt;
61=2201&lt;br /&gt;
62=2210&lt;br /&gt;
63=2211&lt;br /&gt;
64=2220&lt;br /&gt;
65=2221&lt;br /&gt;
66=2300&lt;br /&gt;
67=2301&lt;br /&gt;
68=2310&lt;br /&gt;
69=2311&lt;br /&gt;
70=2320&lt;br /&gt;
71=2321&lt;br /&gt;
72=3000&lt;br /&gt;
73=3001&lt;br /&gt;
74=3010&lt;br /&gt;
75=3011&lt;br /&gt;
76=3020&lt;br /&gt;
77=3021&lt;br /&gt;
78=3100&lt;br /&gt;
79=3101&lt;br /&gt;
80=3110&lt;br /&gt;
81=3111&lt;br /&gt;
82=3120&lt;br /&gt;
83=3121&lt;br /&gt;
84=3200&lt;br /&gt;
85=3201&lt;br /&gt;
86=3210&lt;br /&gt;
87=3211&lt;br /&gt;
88=3220&lt;br /&gt;
89=3221&lt;br /&gt;
90=3300&lt;br /&gt;
91=3301&lt;br /&gt;
92=3310&lt;br /&gt;
93=3311&lt;br /&gt;
94=3320&lt;br /&gt;
95=3321&lt;br /&gt;
96=4000&lt;br /&gt;
97=4001&lt;br /&gt;
98=4010&lt;br /&gt;
99=4011&lt;br /&gt;
100=4020&lt;br /&gt;
101=4021&lt;br /&gt;
102=4100&lt;br /&gt;
103=4101&lt;br /&gt;
104=4110&lt;br /&gt;
105=4111&lt;br /&gt;
106=4120&lt;br /&gt;
107=4121&lt;br /&gt;
108=4200&lt;br /&gt;
109=4201&lt;br /&gt;
110=4210&lt;br /&gt;
111=4211&lt;br /&gt;
112=4220&lt;br /&gt;
113=4221&lt;br /&gt;
114=4300&lt;br /&gt;
115=4301&lt;br /&gt;
116=4310&lt;br /&gt;
117=4311&lt;br /&gt;
118=4320&lt;br /&gt;
119=4321&lt;br /&gt;
120=10000&lt;br /&gt;
121=10001&lt;br /&gt;
122=10010&lt;br /&gt;
123=10011&lt;br /&gt;
124=10020&lt;br /&gt;
125=10021&lt;br /&gt;
126=10100&lt;br /&gt;
127=10101&lt;br /&gt;
128=10110&lt;br /&gt;
129=10111&lt;br /&gt;
130=10120&lt;br /&gt;
131=10121&lt;br /&gt;
132=10200&lt;br /&gt;
133=10201&lt;br /&gt;
134=10210&lt;br /&gt;
135=10211&lt;br /&gt;
136=10220&lt;br /&gt;
137=10221&lt;br /&gt;
138=10300&lt;br /&gt;
139=10301&lt;br /&gt;
140=10310&lt;br /&gt;
141=10311&lt;br /&gt;
142=10320&lt;br /&gt;
143=10321&lt;br /&gt;
144=11000&lt;br /&gt;
145=11001&lt;br /&gt;
146=11010&lt;br /&gt;
147=11011&lt;br /&gt;
148=11020&lt;br /&gt;
149=11021&lt;br /&gt;
150=11100&lt;br /&gt;
151=11101&lt;br /&gt;
152=11110&lt;br /&gt;
153=11111&lt;br /&gt;
154=11120&lt;br /&gt;
155=11121&lt;br /&gt;
156=11200&lt;br /&gt;
157=11201&lt;br /&gt;
158=11210&lt;br /&gt;
159=11211&lt;br /&gt;
160=11220&lt;br /&gt;
161=11221&lt;br /&gt;
162=11300&lt;br /&gt;
163=11301&lt;br /&gt;
164=11310&lt;br /&gt;
165=11311&lt;br /&gt;
166=11320&lt;br /&gt;
167=11321&lt;br /&gt;
168=12000&lt;br /&gt;
169=12001&lt;br /&gt;
170=12010&lt;br /&gt;
171=12011&lt;br /&gt;
172=12020&lt;br /&gt;
173=12021&lt;br /&gt;
174=12100&lt;br /&gt;
175=12101&lt;br /&gt;
176=12110&lt;br /&gt;
177=12111&lt;br /&gt;
178=12120&lt;br /&gt;
179=12121&lt;br /&gt;
180=12200&lt;br /&gt;
181=12201&lt;br /&gt;
182=12210&lt;br /&gt;
183=12211&lt;br /&gt;
184=12220&lt;br /&gt;
185=12221&lt;br /&gt;
186=12300&lt;br /&gt;
187=12301&lt;br /&gt;
188=12310&lt;br /&gt;
189=12311&lt;br /&gt;
190=12320&lt;br /&gt;
191=12321&lt;br /&gt;
192=13000&lt;br /&gt;
193=13001&lt;br /&gt;
194=13010&lt;br /&gt;
195=13011&lt;br /&gt;
196=13020&lt;br /&gt;
197=13021&lt;br /&gt;
198=13100&lt;br /&gt;
199=13101&lt;br /&gt;
200=13110&lt;br /&gt;
&lt;br /&gt;
Note the apparent gap at 24 (4!) and 120 (5!) - apparent for those of us who are used to decimal numbers.&lt;br /&gt;
&lt;br /&gt;
Factoradic™ numbers are actually less efficient than any other base. &amp;quot;Efficiency&amp;quot; for a base is normally defined by the radix economy. The actual definition is the size of the base (i.e. the number of possible digits) times the number of digits in a number, although it can be compared to {{w|binary-coded decimal|binary-coded decimals}}. Instead of using actual binary, a binary-coded decimal stores each decimal digit as a binary number. For example, 42 becomes (0100)(0010). This uses 8 bits, which is less efficient than the actual binary value of 101010, which is only 6 bits. It can vary which base is more efficient, like how from 9 to 15, quaternary is more efficient (base 4 * 2 digits = radix economy 8) than ternary (base 3 * 3 digits = radix economy 9). But as the number being represented goes up to infinity, the further you get from a hypothetical base e, the less efficient you become. As a quick example to demonstrate why large bases are less efficient, consider the number 3600. In base 60, it's only three digits, 1;0;0, but because each of those digits can have 60 possible values, its radix economy is 3*60=180. But even though the decimal representation uses a 4th digit, since there are only 10 possible values for each digit, the radix economy is only 4*10=40.&lt;br /&gt;
&lt;br /&gt;
For a k-digit factoradic™ number, the 1st digit can have 2 values, the 2nd can have 3, the 3rd can have 4, up to the k-th digit having k+1 possible values, so the radix economy is effectively (k+1)(k+2)/2 - 1. Unfortunately, this is substantially more difficult to calculate, because it involved the inverse gamma function. But if you use ln n / ln ln n as an approximation of the asymptotic behavior of the inverse of Stirling's approximation, you can set up the limit ln n / ln^2 ln n, which diverges as n approaches infinity. Therefore, at least if you let factoradic™ numbers use other symbols for digits and increase past 10!, then no matter how large and inefficient of a base you're comparing it to, factoradic™ numbers will eventually be less efficient. Meanwhile, if you do stop at 10!-1, it's 9 digits, so its radix economy is 54. And if you solve 54 = b*floor(1+ln(10!-1)/ln(b)) for b, you find that b is approximately 6.75. So factoradic™ is more efficient than base 7 and up, but less efficient than binary, ternary, quaternary, quinary, and senary.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon. - Still needs a lot of deconstruction/reconstruction work on the [Poster:] to make it properly Transcripted (no tables, ideally!), but have improved the surrounding markup/descriptions}}&lt;br /&gt;
:[Cueball is standing in front of a large poster. There are two uniformed officers (a Ponytail and a further Cueball, wearing badged hats) approaching Cueball.]&lt;br /&gt;
:[Poster:]&lt;br /&gt;
&lt;br /&gt;
:Variable-base Factoradic™ numbers&lt;br /&gt;
:{|&lt;br /&gt;
|Base 7||Base 6||Base 5||Base 4||Base 3||Base 2&lt;br /&gt;
|-&lt;br /&gt;
|3||5||3||0||1||1&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:Left side&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|Base 10||Factoradic&lt;br /&gt;
|-&lt;br /&gt;
|1||1&lt;br /&gt;
|-&lt;br /&gt;
|2||10&lt;br /&gt;
|-&lt;br /&gt;
|3||11&lt;br /&gt;
|-&lt;br /&gt;
|4||20&lt;br /&gt;
|-&lt;br /&gt;
|5||21&lt;br /&gt;
|-&lt;br /&gt;
|6||100&lt;br /&gt;
|-&lt;br /&gt;
|7||101&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|21||311&lt;br /&gt;
|-&lt;br /&gt;
|22||320&lt;br /&gt;
|-&lt;br /&gt;
|23||321&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:Right side&lt;br /&gt;
&lt;br /&gt;
:{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|Base 10||Factoradic&lt;br /&gt;
|-&lt;br /&gt;
|24||1,000&lt;br /&gt;
|-&lt;br /&gt;
|25||1,001&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|5,038||654,320&lt;br /&gt;
|-&lt;br /&gt;
|5,039||654,321&lt;br /&gt;
|-&lt;br /&gt;
|5,040||1,000,000&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
|999,998||266,251,210&lt;br /&gt;
|-&lt;br /&gt;
|999,999||266,251,211&lt;br /&gt;
|-&lt;br /&gt;
|1,000,000||266,251,220&lt;br /&gt;
|-&lt;br /&gt;
|1,000,001||266,251,221&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
:Cueball: Small numbers like seven or nineteen shouldn't use big numerals like &amp;quot;7&amp;quot; or &amp;quot;9&amp;quot;.&lt;br /&gt;
:Cueball: I mean, &amp;quot;9&amp;quot; is the biggest numeral we have! It should be reserved for '''''big''''' numbers.&lt;br /&gt;
:Cueball: Small numbers should be written with small numerals like &amp;quot;1&amp;quot; or &amp;quot;2&amp;quot;.&lt;br /&gt;
:Cueball: That's why my variable-base system uses...Hey! No, listen!&lt;br /&gt;
:[Caption under the comic:] Factorial numbers are the number system that sounds most like a prank by someone who's about to be escorted out of the math department by security.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Characters with hats]]&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:Self-reference]] &amp;lt;!-- Comic number encoded in image 'example' --&amp;gt;&lt;br /&gt;
[[Category:Comics featuring Ponytail]] &amp;lt;!-- Hatted 'security officer' --&amp;gt;&lt;br /&gt;
[[Category:Multiple Cueballs]] &amp;lt;!-- If including otherwise cueball-like hatted 'security officer' of no other distinction --&amp;gt;&lt;/div&gt;</summary>
		<author><name>162.158.166.205</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2839:_Language_Acquisition&amp;diff=325835</id>
		<title>2839: Language Acquisition</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2839:_Language_Acquisition&amp;diff=325835"/>
				<updated>2023-10-14T02:50:47Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.166.205: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2839&lt;br /&gt;
| date      = October 9, 2023&lt;br /&gt;
| title     = Language Acquisition&lt;br /&gt;
| image     = language_acquisition_2x.png&lt;br /&gt;
| imagesize = 193x239px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = My first words were 'These were my first words; what were yours?'&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by MY FIRST WORDS - This should be a bit longer. Do NOT delete this tag too soon.}}&lt;br /&gt;
{{w|Language acquisition}} is the process by which humans, generally infants, learn a language. &lt;br /&gt;
&lt;br /&gt;
There are many theories as to how this process works, but Randall takes this phrase literally, saying that infants learn languages one new word at a time. This may be true when learning a second language, but is typically not true for infants learning their native language (mother tongue). It is a common milestone to celebrate a child's &amp;quot;[https://www.parents.com/baby/development/talking/baby-talk-a-month-by-month-timeline1/ first word]&amp;quot;, but typically these would be simple words, such as &amp;quot;mama&amp;quot; or &amp;quot;dada&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
The child's sentence is twelve words, all unique. This implies these are the only words known so far, which would be a very unusual set of words to be the first ones learned. Furthermore, the child appears to have learned some fairly advanced grammatical concepts in order to construct this fairly complex sentence. Learning grammar typically takes much longer, and only occurs once a child has learned sufficient vocabulary to recognise patterns in how the words are used.&lt;br /&gt;
&lt;br /&gt;
Interestingly if this sentence is true, the child has learned the word for 12 before learning the words for any other numbers, and so could not have given a quantitative update on previous days. However, this would also imply that their counting is not yet as advanced as their language acquisition, which may mean that they are simply wrong about the number of words they have learned. &lt;br /&gt;
&lt;br /&gt;
Two letter blocks on the ground next to the child show capitals 'A' and 'B', and a third has an upside-down lowercase 'e'. The block with the 'e' may be placed upside-down, but it may also be a block with the phonetic symbol {{w|schwa}} on it. This would suggest the parents are teaching their child advanced linguistics concepts before they've fully learned to speak a first language, which might explain why the child's language acquisition is so unusual.&lt;br /&gt;
&lt;br /&gt;
The title text makes a self-referential joke about the concept of &amp;quot;first words&amp;quot;, where a supposed child discusses one's own first words in a complete sentence. There are seven unique words in the title text, most of which do not appear in the comic image, suggesting the title text and comic image referred to two different children.&lt;br /&gt;
&lt;br /&gt;
[[2567: Language Development]] has had a similarly obscure take on language acquisition.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Do NOT delete this tag too soon.}}&lt;br /&gt;
:[A child, drawn as a smaller Hairy. He stands amongst three blocks with letters on them, showing faces with A, B and an upside-down lowercase e. Megan and Cueball stand to the right of him.]&lt;br /&gt;
:Child: Vocabulary update: I learned another word today, bringing my total to twelve.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Language]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics with babies]]&lt;/div&gt;</summary>
		<author><name>162.158.166.205</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2840:_Earth_Layers&amp;diff=325834</id>
		<title>2840: Earth Layers</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2840:_Earth_Layers&amp;diff=325834"/>
				<updated>2023-10-14T02:49:26Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.166.205: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2840&lt;br /&gt;
| date      = October 11, 2023&lt;br /&gt;
| title     = Earth Layers&lt;br /&gt;
| image     = earth_layers_2x.png&lt;br /&gt;
| imagesize = 585x627px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = The Earth's magnetic field is primarily generated by currents in the liquid outer core, though some geophysicists argue that an unexplained mismatch with models suggests that the Kinder toy contains a magnet.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by A CONSPIRED CORE - Please change this comment when editing this page. Like this? Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
This comic reimagines the internal structure of the earth, mixing the real geological layers of the planet with fictional ones. Some of the fictional layers are appropriated from the layers of other objects that have cross-sectional diagrams, such as the layers of a piece of fruit, an eyeball, an item of confectionary or a building.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Layer&lt;br /&gt;
! scope=&amp;quot;col&amp;quot;| Explanation&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Lithosphere/Crust (50/50 Blend)&lt;br /&gt;
| The {{w|lithosphere}} is any outermost rocky layer of a planet. On Earth it consists of the {{w|Earth's crust|crust}} and any parts of the upper mantle (see below) that do not convect. To say they are two distinct layers that could be blended together is rather nonsensical.&lt;br /&gt;
The upper limit of a planet's lithosphere is usually taken as where it meets the hydrosphere/atmosphere (wherever either may be present, otherwise the vacuum of space) but may or may not include the rock-derived {{w|pedosphere}} (for Earth, especially) or distinct overburden of loose {{w|regolith}}. All of these overlaid layers would typically be far too thin to be reliably distinct in the depiction of this Earth-like planet, and the diagram depicts the surface details only as a 'painted on' blue/greens/browns/etc to distinguish ocean areas and land heights with vertical depths/elevations that are already effectively insignificant at the scale of this diagram, before even considering the such relatively narrow layers of interface material.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| {{w|Upper mantle}}&lt;br /&gt;
| An actual layer of the earth's structure.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Deep mantle&lt;br /&gt;
| A pseudo-correct layer of the earth's structure. There is a layer called the {{w|lower mantle}}, which could be what Randall refers to.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Filler&lt;br /&gt;
| This suggests there is space in the earth that was empty, so the creator(s) added some filler to fill up the extra space.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Vitreous humor&lt;br /&gt;
|Vitreous humor ({{w|vitreous body}}) is the transparent gel inside the eye, located between the lens and the retina. It is nonsensical to suggest it could be put inside the earth.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Mechanical/HVAC layer&lt;br /&gt;
| {{w|HVAC}} is an abbreviation for 'Heating, Ventilation and Air Conditioning' - the system used to heat or cool a building.  Tall buildings may have a dedicated &amp;quot;HVAC floor&amp;quot; or &amp;quot;{{w|mechanical floor}}&amp;quot; between regular floors, like an extra layer. However, the Earth most definitely should not {{citation needed}}.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Guacamole &lt;br /&gt;
| {{w|Guacamole}} is a dip or sauce made from avocados. [https://www.britannica.com/topic/guacamole Originating from ancient Mexico], it often includes onions, tomatoes and spices. Notably, guacamole is a major component of seven layer dip, and is shown here to be the seventh layer (from the surface).&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Cytoplasm&lt;br /&gt;
|{{w|Cytoplasm}} is the &amp;quot;flesh&amp;quot; of both eukaryotic and prokaryotic cells; a jelly-like substance that fills all the otherwise empty space within the cell.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Cork&lt;br /&gt;
|Due to the proximity of the cork layer and the insulation layer, this may possibly be referencing {{w|Cork (material)|cork}}-lined walls, which are used today mostly for high quality soundproofing, but have [https://www.jstor.org/stable/27135713 a considerable history]. Another potential reference could be the fact that baseballs (another spherical shape) have a layer of cork in them (though it is usually in the center). Finally, the cork is a real layer of tissue in many woody plants, part of the bark. This comic was posted the day after Birkenstock Holding plc was listed on the New York Stock Exchange; Birkenstock sandals include a layer of cork.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Insulation&lt;br /&gt;
|Possibly a reference to the {{w|building insulation}} installed in the walls and ceilings of buildings. Technical fabrics used to make clothing also often include an insulation layer, combined with, for example, a waterproof/water-resistant membrane and an inner contact later.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Seeds&lt;br /&gt;
|Part of a fruit which often appear in a distinct layer within, or sometimes on the surface of, the flesh. They are used for reproduction in {{w|angiosperms}} and many are a major source of food for some animals.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| {{w|Pith}}&lt;br /&gt;
|Part of a tree trunk or the thick spongy layer of the skin of a citrus fruit. Notably, this layer is below Seeds, which implies the seeds are outside of the pith. Although rare, some fruits do, in fact, have their seeds on the outside of their skin, such as {{w|Cashews}}. However, this is not present in any well-known citrus plants, or, if there are citrus plants like this, they are not discovered yet, let alone well-documented.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Nougat&lt;br /&gt;
|{{w|Nougat}} is a family of confections made with sugar or honey, roasted nuts, whipped egg whites and, sometimes, chopped candied fruit. It often appears as layers within confectionary items (such as Snickers, Double Decker and Mars) and, notably in relation to the comic, it constitutes the second-innermost layer of {{w|Mozartkugel}}n, a spherical confection.&lt;br /&gt;
Geography teachers sometimes hand confectionery like this to their students to give them an idea what &amp;quot;concentrically layered structure&amp;quot; means. Most of the time it turns out that this is their least concern, while at the same time a general consensus emerges that this is one of the best ideas said teacher has had in a long time. This layer is possibly an allusion to that practice.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| {{w|Outer core}}&lt;br /&gt;
| An actual layer of the earth's structure.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| {{w|Inner core}}&lt;br /&gt;
| An actual layer of the earth's structure.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Secret core&lt;br /&gt;
| Likely references secret compartments that may be hidden in the hardest to find recesses of other objects or structures, for the purposes of concealing precious items or closely-guarded secrets. Could also be interpreted as a section of the core that only certain people, such as Randall, are aware of.  In the context of &amp;quot;inner core, outer core, secret core&amp;quot; may also be a riff on Leonard Cohen's ''Hallelujah'', a la [[2583: Chorded Keyboard]].&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| Kinder toy capsule&lt;br /&gt;
| A {{w|Kinder (brand)|Kinder}} toy is a reference to a chocolate egg-shaped confection by the Kinder brand, the {{w|Kinder Surprise}}, a chocolate shell with a plastic 'yolk' capsule in the center. Though that is loose within a void, unlike this 'Earth model', it closely matches this philosophy despite (or because of) being a {{w|Kinder_Surprise#United_States|banned food item}} in the United States, due to a 1938 FDA rule prohibiting a &amp;quot;non-nutritive object&amp;quot; (the plastic egg 'yolk' containing the toy) to be encased inside of an edible item (the outer chocolate layer) unless it has a specific function related to the edible part.  It is widely believed that this is because the 'yolk' can be a choking hazard, despite the fact that you'd have to be swallowing a chicken egg-sized confectionery in a single mouthful for that to happen accidentally, or deliberately try to consume the plastic capsule whole. The toys within, however, may contain small pieces that can pose a choking hazard, especially in the toys that are packed as components, requiring some assembly, in order to fit into the capsule. Rules about small components (in toys for young children) and the inclusion of non-food contents within food-items have been used to prohibit this product within the US. To specifically overcome the latter regulations, the {{w|Kinder Joy}} was developed; an egg-shaped packaging containing the chocolate treat in one half and the toy separately within the other.&lt;br /&gt;
&lt;br /&gt;
Randall's punchline of the comic is that there may indeed be a hidden toy at the center of the Earth. The title text explains that due to the {{w|Earth's magnetic field|geomagnetic field}} not behaving as scientific models suggest it should, some geophysicists argue that the hidden toy is – or at least contains – some additional form of magnet which impacts the accepted {{w|Magnetohydrodynamics|magnetohydrodynamic}} effect. A more plausible explanation is that their model is wrong because they've based it on Randall's diagram full of spurious layers!&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Since the radius of the earth is 6371 km, if the diagram is to scale then measurement of it gives the Kinder Toy Capsule a radius of about 900 km. This gives the Kinder Toy Capsule a volume of just over 3 billion km&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;. Assuming a real Kinder Egg has a volume of 60 cm&amp;lt;sup&amp;gt;3&amp;lt;/sup&amp;gt;, and a packing density of 63.5%, the Kinder Toy Capsule could contain 5x10&amp;lt;sup&amp;gt;22&amp;lt;/sup&amp;gt; (50 sextillion) actual Kinder Eggs. Current mathematical models of the magnetohydrodynamics of the Earth's core do not include the potentially significant contribution of 50 sextillion Kinder Toy Capsules,{{citation needed}} a glaring oversight in a well developed field.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Header/Title]&lt;br /&gt;
:The layers of the Earth&lt;br /&gt;
&lt;br /&gt;
:[Cutaway diagram of the Earth, a sphere with abstract sea/land/elevation surface, except for a slice removed (quarter-arc in three axes) to make visible a number of roughly equally-sized 'strata'/shells, all the way down to the intact smallest sphere. From surface downwards, these are:]&lt;br /&gt;
:Lithosphere/crust (50/50 blend)&lt;br /&gt;
:Upper mantle&lt;br /&gt;
:Deep mantle&lt;br /&gt;
:Filler&lt;br /&gt;
:Vitreous humor&lt;br /&gt;
:Mechanical/HVAC layer&lt;br /&gt;
:Guacamole&lt;br /&gt;
:Cytoplasm&lt;br /&gt;
:Cork&lt;br /&gt;
:Insulation&lt;br /&gt;
:Seeds&lt;br /&gt;
:Pith&lt;br /&gt;
:Nougat&lt;br /&gt;
:Outer core&lt;br /&gt;
:Inner core&lt;br /&gt;
:Secret core&lt;br /&gt;
:[The central sphere:]&lt;br /&gt;
:Kinder toy capsule&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Geology]]&lt;br /&gt;
[[Category:Food]]&lt;/div&gt;</summary>
		<author><name>162.158.166.205</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=2813:_What_To_Do&amp;diff=320649</id>
		<title>2813: What To Do</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=2813:_What_To_Do&amp;diff=320649"/>
				<updated>2023-08-09T23:33:13Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.166.205: /* Transcript */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 2813&lt;br /&gt;
| date      = August 9, 2023&lt;br /&gt;
| title     = What To Do&lt;br /&gt;
| image     = what_to_do_2x.png&lt;br /&gt;
| imagesize = 740x723px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = FYI: The 'drop, cover, and hold on' advice only applies to earthquakes. If you encounter a mountain lion, you should absolutely not drop to the ground, crawl under it, and hold on to one of its legs.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|Created by a MOUNTAIN LIGHTNING ALARM - Please change this comment when editing this page. Do NOT delete this tag too soon.}}&lt;br /&gt;
&lt;br /&gt;
Similar to [[1890: What to Bring]], this comic takes four unrelated dangerous situations, and tries to mix-and-match the solutions.  Predictably,{{citation needed}} mixing up good advice leads to fairly nonsensical behavior, so only the original four matches are marked green as acceptable.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! (problem) vs (solution)&lt;br /&gt;
! scope=&amp;quot;col&amp;quot;| stand up straight, speak firmly, and slowly back away&lt;br /&gt;
! scope=&amp;quot;col&amp;quot;| run toward a building or hard-topped vehicle&lt;br /&gt;
! scope=&amp;quot;col&amp;quot;| calmly exit the building&lt;br /&gt;
! scope=&amp;quot;col&amp;quot;| apply firm pressure&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| {{w|mountain lion}}&lt;br /&gt;
| Yes. This is a common recommendation when encountering a mountain lion (puma, cougar, etc) out in nature. &lt;br /&gt;
| No. Running away may cause the animal to chase you, and it may consider you as prey. However, if you safely make it into the building or vehicle, you may be able to hide or drive away from the animal and may be safer than being outdoors with it.&lt;br /&gt;
| No. Exiting a building and approaching the animal is less recommended.&lt;br /&gt;
| No. Applying &amp;quot;firm pressure&amp;quot; to the (wild) animal is a terrible idea and may result in injury. Applying light pressure to a domesticated cat may make it less likely to attack, but wild cats do not respond positively to it.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| lightning&lt;br /&gt;
| No. Yelling at lightning is ineffective. {{citation needed}}&lt;br /&gt;
| Yes. This is the recommended solution when encountering lightning - to go indoors or inside of a hard-topped vehicle to avoid being struck, or to be ''inside'' some form of faraday cage if lightning does strike your location. Staying inside of a metal vehicle may cause other problems, but it's generally better than being directly struck. &lt;br /&gt;
| No. Exiting a building is a poor idea, as the risk of getting struck by lightning is increased.&lt;br /&gt;
| No. There is no safe way to &amp;quot;apply firm pressure&amp;quot; to lightning.&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| fire alarm&lt;br /&gt;
| No. Yelling at a fire alarm is ineffective. {{citation needed}}&lt;br /&gt;
| No. When a fire alarm is sounding, it is terrible advice to run ''towards'' the sound of the alarm, unless you are a trained member of the fire department.&lt;br /&gt;
| Yes. This is the recommended advice when hearing a fire alarm - to calmly exit the building, and move to a safe location.&lt;br /&gt;
| No. Applying firm pressure to a fire alarm will not result in stopping the alarm, unless you are able to manage to suppress the sound, or the fire alarm sensors. Regardless, this will not stop an active fire.&lt;br /&gt;
|-	&lt;br /&gt;
! scope=&amp;quot;row&amp;quot;| bleeding&lt;br /&gt;
| No. Yelling at a bleeding person, or at the bleeding itself, is ineffective. {{citation needed}}&lt;br /&gt;
| Probably not. Running toward a building or vehicle is not a typical solution if someone is bleeding. However, there could be medical supplies inside the building or vehicle, so this idea is not completely incorrect.&lt;br /&gt;
| No. Exiting a building is not helpful if someone is bleeding, if either the exiting one is the injured one, or the non-injured one. Although, if someone/something in the building is the cause of the bleeding, this could be a good idea so that the bleeding or injury does not get worse.&lt;br /&gt;
| Yes. This is the recommended solution to stop bleeding - apply firm pressure to stop the bleeding.&lt;br /&gt;
|}&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;
:[The comic is laid out like a grid, with situations down the left-hand side (mountain lion / lightning / fire alarm / bleeding) and the solutions across the top (stand up straight, speak firmly, and slowly back away / run toward a building or hard-topped vehicle / calmly exit the building / apply firm pressure ). The grid illustrates the &amp;quot;match-ups&amp;quot;, with a green square denoting a &amp;quot;correct&amp;quot; match-up and a red square denoting a bad idea.]&lt;br /&gt;
&lt;br /&gt;
:[From the top left corner, going from left to right, top to bottom, with each first item being on its own line in the grid, the squares are as follows:]&lt;br /&gt;
&lt;br /&gt;
:[Green square, a mountain lion (drawn as a large cat) sits on the left, on a perch. Cueball and Megan have their arms raised and are speaking to it. Lines in front of them indicate they are backing up.]&lt;br /&gt;
:Cueball: ''HEY. STOP.''&lt;br /&gt;
:Megan: ''SHOO.''&lt;br /&gt;
:*'''stand up straight, speak firmly, and slowly back away''' -&amp;gt; '''mountain lion'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, Cueball and Megan are being chased by a mountain lion, and are running towards a building to their right.]&lt;br /&gt;
:*'''run toward a building or hard-topped vehicle''' -&amp;gt; '''mountain lion'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, Cueball and Megan exit a building and approach a mountain lion.]&lt;br /&gt;
:Megan: ''Hello.''&lt;br /&gt;
:*'''calmly exit the building''' -&amp;gt; '''mountain lion'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, Cueball is putting his hands firmly on a mountain lion.]&lt;br /&gt;
:*'''apply firm pressure''' -&amp;gt; '''mountain lion'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, lightning strikes a tree. Cueball is standing outside, with his arms raised, yelling at the lightning. Lines in front of him indicate he is backing up.]&lt;br /&gt;
:''BOOM''&lt;br /&gt;
:Cueball: ''NO!''&lt;br /&gt;
:*'''stand up straight, speak firmly, and slowly back away''' -&amp;gt; '''lightning'''&lt;br /&gt;
&lt;br /&gt;
:[Green square, lightning strikes a tree. Cueball and Megan run toward a building to their right.]&lt;br /&gt;
:''BOOM''&lt;br /&gt;
:*'''run toward a building or hard-topped vehicle''' -&amp;gt; '''lightning'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, lightning strikes a tree. Cueball and Megan exit a building and approach the lightning-struck tree.]&lt;br /&gt;
:''BOOM''&lt;br /&gt;
:*''' calmly exit the building''' -&amp;gt; '''lightning'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, lightning strikes a tree. Cueball pushes on the lightning-struck tree.]&lt;br /&gt;
:''BOOM''&lt;br /&gt;
:*'''apply firm pressure''' -&amp;gt; '''lightning'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, a fire alarm is beeping. Cueball yells at the alarm, with his arms raised. Lines in front of him indicates he is backing up.]&lt;br /&gt;
:''BEEP BEEP BEEP''&lt;br /&gt;
:Cueball: ''HEY.''&lt;br /&gt;
:*'''stand up straight, speak firmly, and slowly back away ''' -&amp;gt; '''fire alarm'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, a fire alarm is beeping next to a building with flames on its roof. Cueball and Megan run toward the burning building.]&lt;br /&gt;
:''BEEP BEEP BEEP''&lt;br /&gt;
:*'''run toward a building or hard-topped vehicle''' -&amp;gt; '''fire alarm'''&lt;br /&gt;
&lt;br /&gt;
:[Green square, a fire alarm is beeping next to a house with flames on its roof. Cueball and Megan are exiting the burning building.]&lt;br /&gt;
:''BEEP BEEP BEEP''&lt;br /&gt;
:*'''calmly exit the building''' -&amp;gt; '''fire alarm'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, a fire alarm is beeping, and Cueball is trying to &amp;quot;suppress&amp;quot; the beeping sound. Behind him are flames.]&lt;br /&gt;
:''BEEP BEEP BE-eep eep eep''&lt;br /&gt;
:*'''apply firm pressure''' -&amp;gt; '''fire alarm'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, Cueball is bleeding from his right arm, and holds it. Megan to his right yells at him with her arms raised. Lines in front of her indicates she is backing up.]&lt;br /&gt;
:Megan: ''HEY!''&lt;br /&gt;
:Megan: ''STOP IT!''&lt;br /&gt;
:*'''stand up straight, speak firmly, and slowly back away''' -&amp;gt; '''bleeding'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, Megan, holding a first aid kit in one hand and a bandage in the other, runs with a bleeding Cueball towards a building to their right.]&lt;br /&gt;
:*'''run toward a building or hard-topped vehicle''' -&amp;gt; '''bleeding'''&lt;br /&gt;
&lt;br /&gt;
:[Red square, Megan holds a bandage, and to the ground in front of her is a first aid kit. Cueball is walking to the right of the panel, with an injured and bloody left arm raised.]&lt;br /&gt;
:Cueball: Bye!&lt;br /&gt;
:*'''calmly exit the building''' -&amp;gt; '''bleeding'''&lt;br /&gt;
&lt;br /&gt;
:[Green square, Cueball sits in a chair and Megan is treating him by putting her hands on his injured limb. Behind her on the ground is a first aid kit.]&lt;br /&gt;
:*'''apply firm pressure''' -&amp;gt; '''bleeding'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
[[Category:Animals]]&lt;br /&gt;
[[Category:Charts]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Weather]]&lt;/div&gt;</summary>
		<author><name>162.158.166.205</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=150:_Grownups&amp;diff=320000</id>
		<title>150: Grownups</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=150:_Grownups&amp;diff=320000"/>
				<updated>2023-07-30T21:34:40Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.166.205: /* Explanation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 150&lt;br /&gt;
| date      = August 30, 2006&lt;br /&gt;
| title     = Grownups&lt;br /&gt;
| image     = grownups.png&lt;br /&gt;
| titletext = I've looked into this, and I can't figure out a way to do it cheaply. And I guess it wouldn't be sanitary.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
[[Randall]] is again playing with the child/grownup mental setup. During childhood, adults (&amp;quot;grownups&amp;quot;) make most of the decisions and put constraints on what their children do. As children age and eventually become grownups, there are some things that they do not do anymore, as they see them as childish. &lt;br /&gt;
&lt;br /&gt;
[[Megan]] has taken these thoughts seriously, and realizes that with her newfound freedom as a grownup, she gets to define what her adulthood means. Free from constraints, she goes ahead and creates a {{w|ball pit}} in her apartment of colored plastic balls. [[Cueball]] admires this spirit and enters the ball pit. It is difficult to decipher Randall's true intent behind this somewhat cryptic comic, but it seems from the heart that the two are engaging in sexual activity in the pit.&lt;br /&gt;
&lt;br /&gt;
The trend with adults participating in children's activities is continued in [[219: Blanket Fort]], and with adults who feel like children while doing adult things as in [[616: Lease]], which references this comic in the title text.&lt;br /&gt;
&lt;br /&gt;
The title text reveals that [[Randall]] also would like to make his own ball pit, but he finds it [http://playpenballs.com/index.php?route=product/category&amp;amp;path=60 expensive to buy] and also  [http://www.reddit.com/r/mildlyinteresting/comments/1q6bru/this_is_how_they_clean_the_plastic_balls_from_the/ hard to keep clean]. Both of these are true - see links. Most public ball pits can easily become very dirty, as many children and toddlers play in them. But Randall really did make his own ball pit at home, as seen [https://blog.xkcd.com/2007/11/19/growing-up/ in his blog].&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
:[Cueball is talking to Megan who is behind a waist-high screen across a doorway with colorful playpen balls behind her.]&lt;br /&gt;
:Cueball: Hey, I was wondering if you had plans for-- holy crap, what happened to your apartment?&lt;br /&gt;
:Megan: I filled it with playpen balls!&lt;br /&gt;
:Cueball: I... what? Why?&lt;br /&gt;
&lt;br /&gt;
:[Megan is seen from the front through the door with the colored balls behind her.]&lt;br /&gt;
:Megan: Because we're grown-ups now, and it's our turn to decide what that means.&lt;br /&gt;
&lt;br /&gt;
:[Cueball is seen from the side standing next to the open door. Megan cannot be seen, except her hands on the screen, but some of the colored balls can be seen through the door. A beat panel.]&lt;br /&gt;
&lt;br /&gt;
:[Same view but both have entered into the apartment, with colored balls spilling out into the corridor so the screen is no longer shown. A big pink love heart drifts out the door.]&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
* This is one of the six [[Footer comics|footer comics]] featured in the bottom segment of [https://xkcd.com xkcd.com].&lt;br /&gt;
* Randall actually built a ball pit in his apartment, which he talks about and shows pictures of in [http://blog.xkcd.com/2007/11/19/growing-up/ these] [http://blog.xkcd.com/2008/02/27/ballpit-phase-ii/ two] posts on his blog.&lt;br /&gt;
* Inspired by this comic, the website [http://www.chiliahedron.com/ballroom/ chiliahedron.com] provides a calculator for how much it would cost to make your own ball pit.&lt;br /&gt;
* This comic used to be available as a signed print in the [https://store.xkcd.com/products/signed-prints xkcd store], before it was shut down.&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Footer comics]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;br /&gt;
[[Category:Comics with color]]&lt;br /&gt;
[[Category:Romance]]&lt;br /&gt;
[[Category:Sex]]&lt;br /&gt;
[[Category:Playpen balls]]&lt;br /&gt;
[[Category:Comics with xkcd store products]]&lt;/div&gt;</summary>
		<author><name>162.158.166.205</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=Talk:2781:_The_Six_Platonic_Solids&amp;diff=317720</id>
		<title>Talk:2781: The Six Platonic Solids</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=Talk:2781:_The_Six_Platonic_Solids&amp;diff=317720"/>
				<updated>2023-07-11T23:01:09Z</updated>
		
		<summary type="html">&lt;p&gt;162.158.166.205: &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;
Does he know about Homestar Runner? [[Special:Contributions/172.70.131.137|172.70.131.137]] 06:02, 27 May 2023 (UTC)&lt;br /&gt;
:Yes. http://www.hrwiki.org/wiki/Webcomic_Sightings#xkcd [[User:Trogdor147|Trogdor147]] ([[User talk:Trogdor147|talk]]) 01:07, 29 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Why Jorb? Only thing I can find is [https://en.wiktionary.org/wiki/jorb Jorb on wikitionary] just meaning spelling of bad pronunciation of Job. And yes the episode of Homestar Runner [https://homestarrunner.com/toons/a-jorb-well-done A Jorb Well Done] comes up. Also this episode that is the top meaning of jorb on [https://www.urbandictionary.com/define.php?term=Jorb Urban dictionary]. Would really like there to a better idea than that Plato did a great Jorb making a sixth solid to rule the mathematicians. --[[User:Kynde|Kynde]] ([[User talk:Kynde|talk]]) 07:18, 27 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
: I agree. We should ask for our money back. -- [[User:Dtgriscom|Dtgriscom]] ([[User talk:Dtgriscom|talk]]) 17:19, 27 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
What if there're much more of them, like a [https://xkcd.com/2657 Ď̩̰odec̭ähedron], but our minds can't properly comprehend their shape?&lt;br /&gt;
: There are a bunch of other regular polyhedra besides the Platonic solids. Most notable are the triangular, square, and hexagonal tilings (which are planar and infinite) and the four Kepler-Poinsot polyedra (which are nonconvex). And there are dozens more if you don't require faces to be planar. [[Special:Contributions/172.70.178.234|172.70.178.234]] 09:44, 27 May 2023 (UTC)&lt;br /&gt;
::See https://youtu.be/_hjRvZYkAgA for an overview of every regular polyhedron in Euclidean 3-space. [[Special:Contributions/162.158.146.40|162.158.146.40]] 09:59, 27 May 2023 (UTC)&lt;br /&gt;
:::I had never seen this channel before, and I'd very much like to thank you for introducing it to me. [[Special:Contributions/162.158.167.8|162.158.167.8]] 21:39, 29 May 2023 (UTC)&lt;br /&gt;
: Some of the proofs of the theorem that there are exactly five platonic solids do not require our minds to &amp;quot;comprehend their shape&amp;quot;, because they only rely on their algebrical properties. In fact, the Group theory proof works in any dimension (≥3), despite our minds being very bad at picturing what stuff looks like in higher dimensions. In fact, it's a bit of the opposite: lower dimensions (2 and 3) are &amp;quot;special cases&amp;quot;, because all other dimensions have exactly 6 such platonic solids. [[User:Jthulhu|Jthulhu]] ([[User talk:Jthulhu|talk]]) 15:41, 27 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I think this is a reference to how the Utah Teapot is nicknamed “the sixth Platonic solid” due to its presence beside real Platonic solids in demonstrations of 33D rendering. [[Special:Contributions/172.68.118.133|172.68.118.133]] 08:52, 27 May 2023 (UTC)&lt;br /&gt;
:...yeah, but you need to render that 33D shape on a proper 32D monitor, ideally, because even on a 31D monitor the two different forced perspectives/projections you need to collapse the extra dimensions down tend to look confusing. [[Special:Contributions/172.70.162.229|172.70.162.229]] 10:46, 27 May 2023 (UTC) *insert winky-face as necessary*&lt;br /&gt;
:: Thanks, that predates my claim in https://arxiv.org/abs/2103.00090, so I won’t claim priority:&lt;br /&gt;
::: ‘By this conception, the claim that there is a Russell Set is simply wishful thinking, analogous to wanting the phrase “sixth Platonic solid” to have a referent, while not actually intuiting which shape this might be.’  &lt;br /&gt;
:: — [[User:FlashSheridan|FlashSheridan]] ([[User talk:FlashSheridan|talk]]) 12:33, 31 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Should we think about Jorb, perhaps, as &amp;quot;J orb,&amp;quot; which might lead us to think about (''i'',''j'') coordinates, i.e. notational systems where ''j'' is the square root of minus 1? (blah blah engineering vs. mathematics, what does ''i'' mean, &amp;amp;c., &amp;amp;c., &amp;amp;c.) Maybe not! [[User:JohnHawkinson|JohnHawkinson]] ([[User talk:JohnHawkinson|talk]]) 10:41, 27 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
When I naively imagine further platonic solids, my approach to cheating is usually to imagine arbitrarily non-euclidean space. It’s somewhat pleasant that the jorb looks a little like that —- it’s only platonic if the coordinate system it’s in bends and stretches to make it so. I imagine the name and depiction are simply to be intentionslkynvague or confusing about what it actually is. It’s a lot harder to do real innovation nowadays and tasks like inventing a jorb can readily crop up to nerds (the nerd snipe kind) who are looking for sufficiently hard and harmless puzzles. A sixth platonic solid seems to mostly happen outside the norms of what people usually consider in a pretty significant way. [[Special:Contributions/162.158.155.99|162.158.155.99]] 02:30, 28 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I asked GPT-4, &amp;quot;Why could Sauron control the Nazgûl when not in possession of the One Ring?&amp;quot; The response:&lt;br /&gt;
&lt;br /&gt;
:''Sauron was able to control the Nazgûl even when he didn't possess the One Ring because of the nature of the rings they received and the relationship these rings had with the One Ring.''&lt;br /&gt;
:''Sauron, disguised as Annatar, the &amp;quot;Lord of Gifts,&amp;quot; helped the Elven smiths of Eregion, led by Celebrimbor, forge the Rings of Power. Unknown to the Elves, Sauron had instructed them to forge the rings in such a way that they could be controlled by one master ring - the One Ring. He secretly forged the One Ring in the fires of Mount Doom, uttering the famous verse: &amp;quot;One ring to rule them all, one ring to find them, one ring to bring them all and in the darkness bind them.&amp;quot;''&lt;br /&gt;
:''When he gave the nine rings to Men, these rings corrupted them over time and turned them into the Nazgûl, also known as the Ringwraiths. Because these nine rings were still under the influence of the One Ring, Sauron was able to control the Nazgûl even when he did not possess the One Ring himself. The One Ring's power was inherent and didn't need physical proximity to exert control. The Nazgûl were bound to the will of Sauron as their wills were dominated by their rings, which were in turn dominated by the One Ring.''&lt;br /&gt;
:''The link and dominance were so strong that even when the One Ring was lost, the Nazgûl remained under Sauron's control. It's also worth noting that Sauron held the Nine Rings the Nazgûl originally received, which could also contribute to his ability to control them.''&lt;br /&gt;
:''It's a complex network of influence and control established by Sauron, making him a powerful Dark Lord even in the absence of his master ring.''&lt;br /&gt;
&lt;br /&gt;
Well. I'm glad &amp;lt;s&amp;gt;someone&amp;lt;/s&amp;gt; something understands that. Lol. [[Special:Contributions/172.69.22.145|172.69.22.145]] 06:11, 28 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Looks suspiciously like a bicycle saddle to me.  And as anyone who's parked their backside on one for any distance or time, it is DEFINITELY a solid. [[User:RAGBRAIvet|RAGBRAIvet]] ([[User talk:RAGBRAIvet|talk]]) 07:25, 28 May 2023 (UTC)&lt;br /&gt;
:(Well, there's all kinds of saddles, and the [https://www.brooksengland.com/en_uk/swallow.html golden era of leather saddles] were actually not that bad (that link states a 10 year guarantee for the current output, but I personally know of a couple used regularly for 60+years and were still doing well), though with the advent of more synthesised materials they've had to go creative with the texture/covering to give it back the 'give'. Which no doubt makes more an 'impression' on the more modern saddle purchaser, in more ways than one.)&lt;br /&gt;
:Reminds me of one of the more abstract 'elemental' {{w|Henry Moore}} pieces, or possibly one of his contemporaries/'inspired-by's. And you could certainly find painters and other art-form creators who have gone into 'abstract blob' shapes, either to represent something real in a novel way or to deliberately represent nothing real at all, and I suspect that's Randall's aim... (Like &amp;quot;xkcd&amp;quot; made to not look enough like anything else, or so intended). It certainly shows no sign of ''any'' symmetry at all. [[Special:Contributions/172.70.86.32|172.70.86.32]] 12:29, 28 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Based on the shape, ribbing, and a different definition of &amp;quot;platonic&amp;quot; I think this could be referring to the Roman artefact that was recently re-classified as a dildo. Platonic solid? [[Special:Contributions/172.70.111.111|172.70.111.111]] 16:06, 28 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Not gonna lie, this feels like a Cow Tools comic to me. Sometimes mathematicians discover new things, wouldn't it be weird if they discovered something impossible? End of joke. Everything else regarding the shape and name is an inkblot test (until the title text which is actually a LOTR reference of course). [[Special:Contributions/172.70.82.59|172.70.82.59]] 17:04, 28 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Is it worth mentioning that the dodecahedron and isocahedron have their names switched? [[User:C.h.ninnymuggins|C.h.ninnymuggins]] ([[User talk:C.h.ninnymuggins|talk]]) 21:00, 28 May 2023 (UTC)&lt;br /&gt;
:It would be if they were (a common error), but... they aren't. (See {{w|Platonic solid|here}}.) [[Special:Contributions/172.69.79.196|172.69.79.196]] 21:33, 28 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ok whoever added that jan misali link that's super cool of you nice [[Special:Contributions/172.71.82.147|172.71.82.147]] 03:50, 29 May 2023 (UTC)Bumpf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I feel that there's a joke missing here, especially with the LOTR connection made in the alt-text. After all, Plato might have gifted the solids to the mathematicians, but thanks to Gary Gygax, it was the gamers who found a use for them....&lt;br /&gt;
[[Special:Contributions/172.70.86.7|172.70.86.7]] 06:37, 29 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
Plato did a a great jorb ruling the mathematicians by forging the impossible... plato got a gold star at his job review... was that really it?--[[User:4til7|4til7]] ([[User talk:4til7|talk]]) 20:33, 29 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I kind of feel sorry for the platonic solids. Condemned to the friend zone for eternity; or at least until the end of this universe. [[User:These Are Not The Comments You Are Looking For|These Are Not The Comments You Are Looking For]] ([[User talk:These Are Not The Comments You Are Looking For|talk]]) 22:54, 29 May 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
You've all been nerd sniped. [[Special:Contributions/172.70.42.43|172.70.42.43]]&lt;br /&gt;
&lt;br /&gt;
Also the Gömböc comes to mind from the name, the shape and the novelty of Jorb.&lt;br /&gt;
[[Special:Contributions/162.158.182.115|162.158.182.115]] 18:51, 2 June 2023 (UTC)&lt;br /&gt;
: Added link to &amp;quot;{{w|Gömböc}}&amp;quot;, as that is immediately what I thought of when seeing this comic. Randall's Jorb looks designed to have Gomboc-like properties: if starting on the long thin facet seen on the top edge, it would be gently pulled down by the large round egg-like &amp;quot;end&amp;quot; and then presumably roll onto one side or the other i.e. rotating around its long axis until reaching the position shown. If the Jorb were indeed a mono-monostatic shape, then like the known Gömböc design it would be a &amp;quot;polyhedron&amp;quot; with one (albeit curved) &amp;quot;facet&amp;quot;, and like the Platonic solids it can rest on any one of its facets, trivially true as there is only one facet. [[User:Mrob27|Mrob27]] ([[User talk:Mrob27|talk]]) 05:50, 12 June 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
So, I think this explanation is under-focused on the actual joke. The core humor here is the idea that &amp;quot;Platonic Solid&amp;quot; means &amp;quot;Solids Plato made&amp;quot; and not regular polyhedra at all. &amp;quot;Mathmetitions long believed there were five platonic solids, all regular polyhedra&amp;quot; So the jorb is explicitly a platonic solid that is not a regular polyhedra. Our explanation should point out then, things like the fact that the platonic solids predate Plato.&lt;br /&gt;
&lt;br /&gt;
:I'd like the answer to two questions:&lt;br /&gt;
:# What is CG even talking about?&lt;br /&gt;
:# What is the person who keeps removing CG's comment even complaining about? (Something about Cultural Misappropriation, but ''which'' culture(s)?)&lt;br /&gt;
:...maybe the answer to one will answer the other, but I've a feeling they're  entirely unconnected. Perhaps one (or both?) just trolling. Yet, unless 7/7 is International Dungeons&amp;amp;Dragons™ Day, or something, neither even close to what I'm imagining it's about. [[Special:Contributions/172.71.242.96|172.71.242.96]] 10:50, 9 July 2023 (UTC)&lt;br /&gt;
::That post first appeared in June. [[Special:Contributions/172.71.154.17|172.71.154.17]] 23:45, 9 July 2023 (UTC)&lt;br /&gt;
'''Stop your games'''. And they clearly ''are'' games, as we already know about the historic link between the [https://www.explainxkcd.com/wiki/index.php?title=Talk:2781:_The_Six_Platonic_Solids&amp;amp;diff=next&amp;amp;oldid=317682 .XXX and CG-styled accounts], which you (singular/plural, I don't care) have now used to 'edit war between yoursel(f/ves)'. I don't generally care if the comment is there (whatever it even refers to, but with no obvious 'illegality') or not, but useless reverts/de-reverts/re-reveets/etc should not be tolerated. [[Special:Contributions/172.70.91.53|172.70.91.53]] 08:06, 11 July 2023 (UTC)&lt;br /&gt;
Ha, CG started to fight against himself! Hee-Ha! Hung-Huh-Ha-Hey! [[Special:Contributions/162.158.166.205|162.158.166.205]] 23:01, 11 July 2023 (UTC)&lt;br /&gt;
&lt;br /&gt;
I wonder if this is relevant: http://www.hrwiki.org/wiki/A_Jorb_Well_Done {{unsigned ip|162.158.62.141|3:47, 2 July 2023}}&lt;/div&gt;</summary>
		<author><name>162.158.166.205</name></author>	</entry>

	</feed>