<?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=2A01%3A119F%3A2A5%3A8D00%3A1C5B%3A89A5%3A6E78%3A4C59</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=2A01%3A119F%3A2A5%3A8D00%3A1C5B%3A89A5%3A6E78%3A4C59"/>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php/Special:Contributions/2A01:119F:2A5:8D00:1C5B:89A5:6E78:4C59"/>
		<updated>2026-04-28T17:44:38Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3228:_Day_Counter&amp;diff=411277</id>
		<title>3228: Day Counter</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3228:_Day_Counter&amp;diff=411277"/>
				<updated>2026-04-28T08:18:16Z</updated>
		
		<summary type="html">&lt;p&gt;2A01:119F:2A5:8D00:1C5B:89A5:6E78:4C59: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3228&lt;br /&gt;
| date      = April 3, 2026&lt;br /&gt;
| title     = Day Counter&lt;br /&gt;
| image     = day_counter_2x.png&lt;br /&gt;
| imagesize = 319x287px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = It has been −2,147,483,648 days since our last integer overflow.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
&lt;br /&gt;
{{incomplete|The calculations by DL Draco Rex et al. in the Talk should be included in the explanation. Don't remove this notice too soon.}}&lt;br /&gt;
&lt;br /&gt;
A common feature of an industrial setting is a prominent sign announcing how many days have elapsed since the last workplace accident.  The sign is typically updated each day to a number one higher — or back to zero, if there ''has'' been an accident.  Such signs are intended to foster a culture of safety among the workers in the facility, since presumably no one wants to suffer the embarrassment of being the one to have caused an accident that resets the number to 0. (However, it may also lead workers to cover up or conceal accidents, for the same reason, which would tend to increase future accidents, because they do not report the need to correct hazardous conditions that are causing accidents.)&lt;br /&gt;
&lt;br /&gt;
Evidently, in the programming facility shown in the comic, a floating-point error has occurred today, and an attempt has been made to update the sign to say &amp;quot;It has been 0 days since...&amp;quot;.  But the number 0 is displayed incorrectly, as the very small negative value −0.00000000000000044.  Perhaps the error that was made today was the very error that occurred in updating the sign!  (This would of course violate {{w|causality}}, but in comedy, self-referential humor beats causality every time, and is at least self-consistent, like with [[363: Reset]])&lt;br /&gt;
&lt;br /&gt;
Floating-point errors occur because computers can devote only a finite amount of storage for each {{w|Floating-point arithmetic|floating point number}} or other fraction.  However, many {{w|real numbers}} and {{w|rational numbers}} theoretically require an infinite number of digits to represent them.  For example, the ordinary fraction ⅓ is represented in decimal as 0.3333333333…, where the 3s repeat forever.  When a number is truncated to fit in the finite amount of space, precision is inevitably lost, resulting in a slight rounding error.  Unless carefully controlled, these rounding errors can accumulate, significantly degrading the accuracy of floating-point computations. For example, although ⅓ + ⅓ + ⅓ should obviously equal 1, a finite-precision calculation like 0.333 + 0.333 + 0.333 might show a misleading result of 0.999, which might not trigger the code to do what it should do when three thirds have been accumulated (it can be mitigated by allowing a match for a value which is within a suitably very small difference to the test value, but this must be considered carefully to not be over-/under-sensitive). The amount of required space for rational numbers is not universal, it depends on the base used (⅓ in base 3 requires just two digits: 0 as the units and 1 after the {{w|Decimal separator#Radix point|radix (ternary) point}}). Floating point arithmetic standards, like the popular IEEE 754, define how and when an approximation should take place, leading to predictable results, but they don't respect some basic properties of common arithmetic operations, which someone may take for granted, e.g. in floating point arithmetic addition and multiplication are commutative (a+b=b+a; a*b=b*a), but aren't guaranteed to be associative ((a+b)+c≈a+(b+c)); (a*b)*c≈a*(b*c)).&lt;br /&gt;
&lt;br /&gt;
This issue is exacerbated on computers which use binary arithmetic (i.e., virtually all computers today), since in binary, the ordinary fraction 1/10 is represented as the infinitely-repeating base-2 fraction &amp;lt;tt&amp;gt;0.000110011001100110011&amp;lt;/tt&amp;gt;….  A classic example is that, depending on circumstances, the calculation 0.1 + 0.2 might [https://stackoverflow.com/questions/588004/is-floating-point-math-broken seem to give an answer of 0.30000000000000004].&lt;br /&gt;
&lt;br /&gt;
Floating point errors are particularly common in programming, especially in languages that implicitly convert decimal numbers to binary floating point, so an approximation is already made at conversion leading to unexpected results. The title text cites another common programming problem, integer overflow. When a value  gets bigger than the biggest integer that can be represented in a certain format, it may &amp;quot;wrap around&amp;quot; to the smallest/most negative value (if the system is not instead set to catch this as an overflow error). In case of 32-bit signed integers it may wrap from 2&amp;lt;sup&amp;gt;31&amp;lt;/sup&amp;gt;−1 (2,147,483,647) to −2&amp;lt;sup&amp;gt;31&amp;lt;/sup&amp;gt; (−2,147,483,648). &lt;br /&gt;
&lt;br /&gt;
Integer overflow was the topic of [[571: Can't Sleep]], with yet another example of a 'days since' sign being [[3140: Biology Department]] (two examples, in both the comic and its title text).&lt;br /&gt;
&lt;br /&gt;
It should be noted that computers displaying things like &amp;quot;-1 seconds until the next [blank]&amp;quot; is a glitch that actually happens.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
[White Hat, Ponytail, Cueball, and Megan are all below a large sign, which appears to be attached to the wall at its four corners. White Hat and Ponytail appear to be discussing something, while Cueball is sitting at his desk working on a laptop and Megan is walking away. The sign has text on it, as well as a large display presumably meant to show a number.]&lt;br /&gt;
&lt;br /&gt;
:[Sign:] It has been&lt;br /&gt;
:[Display:] -0.00000000000000044&lt;br /&gt;
:[Sign:] days since our last floating point error&lt;br /&gt;
&lt;br /&gt;
==Trivia==&lt;br /&gt;
As an example of how the number −0.00000000000000044 could have arisen when 0 was intended, consider this simple {{w|C (programming language)|C}} program:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
 int main()&lt;br /&gt;
 {&lt;br /&gt;
     double d = 19;&lt;br /&gt;
     for(int i = 0; i &amp;lt; 10; i++) d -= 1.9;&lt;br /&gt;
     printf(&amp;quot;%.17f\n&amp;quot;, d);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
The program starts with the number 19, and subtracts 1.9 from it, ten times.  Mathematically, we would expect the result to be 0.  However, the number 1.9 cannot be represented exactly in binary, nor can the intermediate results 17.1, 15.2, 13.3, etc.  The cascading roundoff errors conspire to produce a result of −0.00000000000000044 instead of the expected 0.&lt;br /&gt;
&lt;br /&gt;
Another possibility is that the timestamps were rounded to an intermediate lower precision that ended up rounding above the actual time value:&lt;br /&gt;
&lt;br /&gt;
 #include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
 float last_fp_error=0;&lt;br /&gt;
 int main(){&lt;br /&gt;
  double time = 0.00000000745058193;&lt;br /&gt;
  int a=3; int b=-2; double f=10;&lt;br /&gt;
  if(a/f+b/f!=(a+b)/f) last_fp_error=time;&lt;br /&gt;
  printf(&amp;quot;It has been %.17f days since our last floating point error&amp;quot;,time-last_fp_error);&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
In the comic, such an error creates the ridiculous illusion that −0.00000000000000044 days have passed, which implies a 'negative' number of days, which is impossible{{cn}}. It also, even if it were a positive number, would mean that much less than a nanosecond had passed since the last error, which would be an unfeasably short amount of time. Of course, the joke is that in making the sign showing the amount of time since a floating point error was last made, they are creating a floating point error, meaning the sign maintains its own &amp;quot;error state&amp;quot; in a self-referential way. Also, if they tried to reset the sign, they might make the same error again, repeating the cycle over and over, which would not be ideal.&lt;br /&gt;
&lt;br /&gt;
Coincidentally enough, [[Cueball]] is also floating — off his seat in this case, but this is an art style choice that ended up being apparent, as [[919|many]] [[1682|past]] [[1411|chair]] [[2362|sitters]] [[2382|are]] [[1088|shown]] [[1121|to]] [[3198|levitate]].&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
[actual citation needed]&lt;br /&gt;
Strangely enough, when the comic was first published the sign number was −0.00000000000000017 days.{{actual citation needed}} It was changed later though, probably so that it would be more realistic, −0.00000000000000017 would correspond to the very last bit of mantissa being incorrect and only for numbers between 1 and 2 (not including 2), and operation (1-1) is unlikely to result in rounding errors, so the smallest difference from integer is usually higher, which would result in −0.00000000000000044 the smallest possible  rounding error for values between 2 and 4.&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;[[Category:Interactive comics]][[Category:Dynamic comics]]&lt;br /&gt;
[[Category:Programming]]&lt;br /&gt;
[[Category:Math]]&lt;br /&gt;
[[Category:Comics featuring White Hat]]&lt;br /&gt;
[[Category:Comics featuring Ponytail]]&lt;br /&gt;
[[Category:Comics featuring Cueball]]&lt;br /&gt;
[[Category:Comics featuring Megan]]&lt;/div&gt;</summary>
		<author><name>2A01:119F:2A5:8D00:1C5B:89A5:6E78:4C59</name></author>	</entry>

	<entry>
		<id>https://www.explainxkcd.com/wiki/index.php?title=3200:_Chemical_Formula&amp;diff=411274</id>
		<title>3200: Chemical Formula</title>
		<link rel="alternate" type="text/html" href="https://www.explainxkcd.com/wiki/index.php?title=3200:_Chemical_Formula&amp;diff=411274"/>
				<updated>2026-04-28T07:23:24Z</updated>
		
		<summary type="html">&lt;p&gt;2A01:119F:2A5:8D00:1C5B:89A5:6E78:4C59: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{comic&lt;br /&gt;
| number    = 3200&lt;br /&gt;
| date      = January 28, 2026&lt;br /&gt;
| title     = Chemical Formula&lt;br /&gt;
| image     = chemical_formula_2x.png&lt;br /&gt;
| imagesize = 740x225px&lt;br /&gt;
| noexpand  = true&lt;br /&gt;
| titletext = Some of the atoms in the molecule are very weakly bound.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Explanation==&lt;br /&gt;
{{incomplete|This page was created by all of the carbon in the universe. Don't remove this notice too soon.}}&lt;br /&gt;
This supposed &amp;quot;{{w|chemical formula}} for the universe&amp;quot; merely lists the numbers of atoms of each element that are [https://ptable.com/#Properties/Abundance/Universe thought to exist] in the observable universe. Usually, chemical formulae imply rather more of a discrete binding together of the atoms involved. They also represent a single {{w|molecule}} of the substance, rather than trying to cover the entire number of atoms in the whole quantity under consideration.&lt;br /&gt;
&lt;br /&gt;
This may be poking some fun at the relative usefulness (or rather, uselessness) of chemical formulas for large organic molecules. While it is a useful concept for teaching people about chemistry and {{w|Chemical equation#Balancing chemical equations|balancing equations}}, and it was useful in the early days of chemistry to try to categorize and learn about molecules via {{w|stoichiometry}} - it does not give much useful information, such as its structure. For example, even the simple formula C&amp;lt;sub&amp;gt;11&amp;lt;/sub&amp;gt;H&amp;lt;sub&amp;gt;15&amp;lt;/sub&amp;gt;NO&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt; has [https://pubchem.ncbi.nlm.nih.gov/#query=C11H15NO2&amp;amp;input_type=formula over 300 registered isomers]. Many of them are [https://pubchem.ncbi.nlm.nih.gov/compound/17517#datasheet=LCSS NOT] {{w|MDMA#Side_effects|good to eat}}. For other purposes, formulae may group the components accordingly, such as {{w|1,1,1-Trichloroethane|CH&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;CCl&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;}} (simplifies to C&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;H&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;Cl&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;, as does {{w|1,1,2-Trichloroethane|an isomer}}) or {{w|ammonium carbonate|[NH&amp;lt;sub&amp;gt;4&amp;lt;/sub&amp;gt;]&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;CO&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;}} (not usually identified as CH&amp;lt;sub&amp;gt;8&amp;lt;/sub&amp;gt;O&amp;lt;sub&amp;gt;3&amp;lt;/sub&amp;gt;N&amp;lt;sub&amp;gt;2&amp;lt;/sub&amp;gt;, and not strictly an organic compound either).&lt;br /&gt;
&lt;br /&gt;
As is common practice for real compounds that contain organic structures or substructures, the numbers of atoms of carbon and hydrogen are listed before all of the others; the others are listed in alphabetical order. There are estimated to be 10&amp;lt;sup&amp;gt;80&amp;lt;/sup&amp;gt; atoms of hydrogen (H), by far the most common element in the universe. The next most common element, helium (He), is a long way to the right in the list, and out of view, but would be about a twelfth as many as the hydrogens, or one order of magnitude using the Fermi approximations that pervade the formula.&lt;br /&gt;
&lt;br /&gt;
In reality, there is not a fixed number of atoms of each element across the lifetime of the universe. The matter originally created in the {{w|Big Bang}} was unbound protons and neutrons. In the first few minutes, {{w|Big Bang nucleosynthesis|some of these combined to form lightweight nuclei}}, but most remained as {{w|proton}}s (i.e. the nuclei of hydrogen atoms). Other more complex atoms, up to {{w|atomic mass}} 56, formed later (and are still being formed) as a result of {{w|stellar nucleosynthesis}}. Still more massive nuclei have been and are being formed via {{w|supernova nucleosynthesis}}. Although the proportions of these atoms depend in a complex way on the fusion processes involved, and on the stabilities of those nuclei, the most massive atoms are generally both short-lived and less favored to form, so their elemental abundances in the universe are very small. As shown above, the number of americium (Am) atoms is much smaller than those of any other element in the visible part of the &amp;quot;formula&amp;quot;. This indicates that there are slightly fewer atoms of americium in the entire universe than the total number of atoms of hydrogen and oxygen in 1.0&amp;amp;#8239;L of liquid water. However, [https://isis-online.org/uploads/isis-reports/documents/np_237_and_americium.pdf considerably more than that amount] (by orders of magnitude) is known to exist on Earth as a result of nuclear energy production, so it may be that the comic is based solely on natural abundances rather than taking human activity (or activity by hypothetical other beings) into account.&lt;br /&gt;
&lt;br /&gt;
The title text is probably referencing {{w|gravity}}, because, for the most part, these atoms would be &amp;quot;held together&amp;quot; only by gravity, and it is a very weak bond indeed.&lt;br /&gt;
&lt;br /&gt;
The numbers of atoms are large, but they are not nameless. Using the {{w|long and short scales}}, these numbers can be described as:&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
!Pos!!Symb!!Name                  !!Quantity                               !!Short Scale name             !!Long Scale name(s)                                           !!Ranked quantity*&lt;br /&gt;
|-&lt;br /&gt;
|  1|| C  ||Carbon                ||data-sort-value=&amp;quot;1e76&amp;quot;|10&amp;lt;sup&amp;gt;76&amp;lt;/sup&amp;gt; ||Ten quattuorvigintillion     ||Ten thousand duodecillion&amp;lt;br/&amp;gt;Ten duodecilliard              ||4&lt;br /&gt;
|-&lt;br /&gt;
|  2|| H  ||Hydrogen              ||data-sort-value=&amp;quot;1e80&amp;quot;|10&amp;lt;sup&amp;gt;80&amp;lt;/sup&amp;gt; ||One hundred quinvigintillion ||One hundred tridecilllion                                    ||1&lt;br /&gt;
|-&lt;br /&gt;
|  3|| Ac ||Actinium              ||data-sort-value=&amp;quot;1e67&amp;quot;|10&amp;lt;sup&amp;gt;67&amp;lt;/sup&amp;gt; ||Ten unvigintillion           ||Ten undecillion                                              ||data-sort-value=&amp;quot;84&amp;quot;|≈84&lt;br /&gt;
|-&lt;br /&gt;
|  4|| Ag ||Silver                ||data-sort-value=&amp;quot;1e69&amp;quot;|10&amp;lt;sup&amp;gt;69&amp;lt;/sup&amp;gt; ||One duovigintillion          ||One thousand undecillion&amp;lt;br/&amp;gt;One undecilliard                ||data-sort-value=&amp;quot;68&amp;quot;|≈68&lt;br /&gt;
|-&lt;br /&gt;
|  5|| Al ||Aluminium&amp;lt;br/&amp;gt;Aluminum||data-sort-value=&amp;quot;1e75&amp;quot;|10&amp;lt;sup&amp;gt;75&amp;lt;/sup&amp;gt; ||One quattuorvigintillion     ||One thousand duodecillion&amp;lt;br/&amp;gt;One duodecilliard              ||14&lt;br /&gt;
|-&lt;br /&gt;
|  6|| Am ||Americium             ||data-sort-value=&amp;quot;1e26&amp;quot;|10&amp;lt;sup&amp;gt;26&amp;lt;/sup&amp;gt; ||One hundred septillion       ||One hundred quadrillion                                      ||data-sort-value=&amp;quot;84&amp;quot;|≈84&lt;br /&gt;
|-&lt;br /&gt;
|  7|| Ar ||Argon                 ||data-sort-value=&amp;quot;1e75&amp;quot;|10&amp;lt;sup&amp;gt;75&amp;lt;/sup&amp;gt; ||One quattuorvigintillion     ||One thousand duodecillion&amp;lt;br/&amp;gt;One duodecilliard              ||11&lt;br /&gt;
|-&lt;br /&gt;
|  8|| As ||Arsenic               ||data-sort-value=&amp;quot;1e70&amp;quot;|10&amp;lt;sup&amp;gt;70&amp;lt;/sup&amp;gt; ||Ten duovigintillion          ||Ten thousand undecillion&amp;lt;br&amp;gt;Ten undecilliard                 ||data-sort-value=&amp;quot;40&amp;quot;|≈40&lt;br /&gt;
|-&lt;br /&gt;
|  9|| At ||Astatine              ||data-sort-value=&amp;quot;1e47&amp;quot;|10&amp;lt;sup&amp;gt;47&amp;lt;/sup&amp;gt; ||One hundred quattuordecillion||One hundred thousand septillion&amp;lt;br/&amp;gt;One hundred septilliard  ||data-sort-value=&amp;quot;84&amp;quot;|≈84&lt;br /&gt;
|-&lt;br /&gt;
| 10|| Au ||Gold                  ||data-sort-value=&amp;quot;1e69&amp;quot;|10&amp;lt;sup&amp;gt;69&amp;lt;/sup&amp;gt; ||One duovigintillion          ||One thousand undecillion&amp;lt;br/&amp;gt;One undecilliard                ||data-sort-value=&amp;quot;68&amp;quot;|≈68&lt;br /&gt;
|-&lt;br /&gt;
| 11|| B  ||Boron                 ||data-sort-value=&amp;quot;1e71&amp;quot;|10&amp;lt;sup&amp;gt;71&amp;lt;/sup&amp;gt; ||One hundred duovigintillion  ||One hundred thousand undecillion&amp;lt;br/&amp;gt;One hundred undecilliard||data-sort-value=&amp;quot;61&amp;quot;|≈61&lt;br /&gt;
|-&lt;br /&gt;
| 12|| Ba ||Barium                ||data-sort-value=&amp;quot;1e70&amp;quot;|10&amp;lt;sup&amp;gt;70&amp;lt;/sup&amp;gt; ||Ten duovigintillion          ||Ten thousand undecillion&amp;lt;br&amp;gt;Ten undecilliard                 ||data-sort-value=&amp;quot;33&amp;quot;|≈33&lt;br /&gt;
|-&lt;br /&gt;
| 13|| Be ||Beryllium             ||data-sort-value=&amp;quot;1e71&amp;quot;|10&amp;lt;sup&amp;gt;71&amp;lt;/sup&amp;gt;*||One hundred duovigintillion  ||One hundred thousand undecillion&amp;lt;br/&amp;gt;One hundred undecilliard||data-sort-value=&amp;quot;61&amp;quot;|≈61&lt;br /&gt;
|-&lt;br /&gt;
|data-sort-value=&amp;quot;43&amp;quot;|43*||He||Helium||data-sort-value=&amp;quot;3e79&amp;quot;|10&amp;lt;sup&amp;gt;79&amp;lt;/sup&amp;gt;*||Ten quinvigintillion      ||Ten tridecilllion                                            ||2&lt;br /&gt;
|-&lt;br /&gt;
|data-sort-value=&amp;quot;73&amp;quot;|73*||O ||Oxygen||data-sort-value=&amp;quot;1e78&amp;quot;|10&amp;lt;sup&amp;gt;78&amp;lt;/sup&amp;gt;*||One quinvigintillion      ||One tridecilllion                                            ||3&lt;br /&gt;
|}&lt;br /&gt;
:&amp;lt;nowiki&amp;gt;*&amp;lt;/nowiki&amp;gt; - Information not provided by the comic; Source for ranked data, in particular, does not ''entirely'' agree with the quantities that are given in the comic.&lt;br /&gt;
&lt;br /&gt;
The formula as it appears in the comic is truncated. The complete formula of the universe in this style (but arranged in decreasing order of abundance after carbon, which also happens to place hydrogen immediately after) would be&amp;lt;!-- lines split for ease of (re)ordering, using current values - should be easier to re-order with any changed values (and/or sub-order same-magnitude lists either alphabetically or actual lessening proportions within that nominal magnitude--&amp;gt;&lt;br /&gt;
&amp;lt;!-- CxHy --&amp;gt;C₁₀&amp;lt;sub&amp;gt;⁷⁷&amp;lt;/sub&amp;gt; H₁₀&amp;lt;sub&amp;gt;⁸⁰&amp;lt;/sub&amp;gt; &lt;br /&gt;
&amp;lt;!-- 10^79 --&amp;gt;He₁₀&amp;lt;sub&amp;gt;⁷⁹&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^78 --&amp;gt;O₁₀&amp;lt;sub&amp;gt;⁷⁸&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^76 --&amp;gt;Ne₁₀&amp;lt;sub&amp;gt;⁷⁶&amp;lt;/sub&amp;gt; N₁₀&amp;lt;sub&amp;gt;⁷⁶&amp;lt;/sub&amp;gt; Fe₁₀&amp;lt;sub&amp;gt;⁷⁶&amp;lt;/sub&amp;gt; S₁₀&amp;lt;sub&amp;gt;⁷⁶&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^75 --&amp;gt;Mg₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt; Si₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt; Ar₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt; Ni₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt; Ca₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt; Al₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt; Na₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt; Cr₁₀&amp;lt;sub&amp;gt;⁷⁵&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^74 --&amp;gt;Ti₁₀&amp;lt;sub&amp;gt;⁷⁴&amp;lt;/sub&amp;gt; Mn₁₀&amp;lt;sub&amp;gt;⁷⁴&amp;lt;/sub&amp;gt; P₁₀&amp;lt;sub&amp;gt;⁷⁴&amp;lt;/sub&amp;gt; K₁₀&amp;lt;sub&amp;gt;⁷⁴&amp;lt;/sub&amp;gt; V₁₀&amp;lt;sub&amp;gt;⁷⁴&amp;lt;/sub&amp;gt; Cl₁₀&amp;lt;sub&amp;gt;⁷⁴&amp;lt;/sub&amp;gt; Co₁₀&amp;lt;sub&amp;gt;⁷⁴&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^73 --&amp;gt;F₁₀&amp;lt;sub&amp;gt;⁷³&amp;lt;/sub&amp;gt; Zn₁₀&amp;lt;sub&amp;gt;⁷³&amp;lt;/sub&amp;gt; Ge₁₀&amp;lt;sub&amp;gt;⁷³&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^72 --&amp;gt;As₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Br₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Li₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Sc₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Cu₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Ga₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Se₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Kr₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Rb₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Sr₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Zr₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Te₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Xe₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Ba₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Ce₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Pb₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^71 --&amp;gt;B₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Be₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Y₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Nb₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Mo₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Ru₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Pd₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Cd₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Sn₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; I₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; La₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Pr₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Nd₁₀&amp;lt;sub&amp;gt;⁷²&amp;lt;/sub&amp;gt; Sm₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Gd₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Dy₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Er₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Yb₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Os₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Ir₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Pt₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt; Hg₁₀&amp;lt;sub&amp;gt;⁷¹&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^70 --&amp;gt;Rh₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Ag₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; In₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Sb₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Cs₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Eu₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Tb₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Ho₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Tm₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Lu₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Hf₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Ta₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; W₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Re₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Au₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Tl₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Bi₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; Th₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt; U₁₀&amp;lt;sub&amp;gt;⁷⁰&amp;lt;/sub&amp;gt;&lt;br /&gt;
&amp;lt;!-- 10^0  --&amp;gt;Tc₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Pm₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Po₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; At₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Rn₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Fr₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Ra₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Ac₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Pa₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt;  Np₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Pu₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Am₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Cm₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Bk₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Cf₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Es₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Fm₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Md₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; No₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Lr₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Rf₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Db₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Sg₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Bh₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Hs₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Mt₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Ds₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Rg₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Cn₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Nh₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Fl₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Mc₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Lv₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Ts₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; Og₁₀&amp;lt;sub&amp;gt;⁰&amp;lt;/sub&amp;gt; according to some broad stroke estimates of abundance.&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
{{incomplete transcript|Don't remove this notice too soon.}}&lt;br /&gt;
:[A long panel with a chemical formula trailing off the right side halfway through the last symbol]&lt;br /&gt;
:C&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;76&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; H&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;80&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Ac&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;67&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Ag&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;69&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Al&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;75&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Am&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;26&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Ar&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;75&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; As&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;70&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; At&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;47&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Au&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;69&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; B&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;71&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Ba&amp;lt;sub&amp;gt;10&amp;lt;sup&amp;gt;70&amp;lt;/sup&amp;gt;&amp;lt;/sub&amp;gt; Be&lt;br /&gt;
:[Caption below the panel:] The approximate chemical formula for the universe&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{comic discussion}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Chemistry]]&lt;br /&gt;
[[Category:Cosmology]]&lt;/div&gt;</summary>
		<author><name>2A01:119F:2A5:8D00:1C5B:89A5:6E78:4C59</name></author>	</entry>

	</feed>